Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

Sign up now!

Question New to Script writing

Joined
Oct 31, 2015
Messages
7
Hey there

Firstly please move my thread to the correct location, if I have placed it in the wrong section.

I have taken the executive decision, that I would like to produce my own scripts the way I want my runescape accounts to bot. However, I have a few problems with this. My main issue is I have never coded, nor do I know the first thing about it. I like to think I am a quick learner. I have read through "Party's" Code for newbs, by a newb (can't remember the exact title), and it makes a little bit of sense. I seek guidance in the following

1. What program can I code a script in (which one is recommended)
2. Where can I view templates of scripts and edit them
3. Where can I learn the language necessary to code for a runescape script (RS3)

and any other things I should take into account.

Disclaimer: Yes I understand that learning how to code may take a really long time, and that before I can code a script I have to learn a lot of stuff first.

Also I was told that scripts are in Java? And was recommended by a friend to download a program called Eclipse Java. But after reading the Party's thread, I am unsure of what program to use.

thank heaps
 
cuppa.drink(java);
Joined
Mar 13, 2018
Messages
7,300
Hey there

Firstly please move my thread to the correct location, if I have placed it in the wrong section.

I have taken the executive decision, that I would like to produce my own scripts the way I want my runescape accounts to bot. However, I have a few problems with this. My main issue is I have never coded, nor do I know the first thing about it. I like to think I am a quick learner. I have read through "Party's" Code for newbs, by a newb (can't remember the exact title), and it makes a little bit of sense. I seek guidance in the following

1. What program can I code a script in (which one is recommended)
2. Where can I view templates of scripts and edit them
3. Where can I learn the language necessary to code for a runescape script (RS3)

and any other things I should take into account.

Disclaimer: Yes I understand that learning how to code may take a really long time, and that before I can code a script I have to learn a lot of stuff first.

Also I was told that scripts are in Java? And was recommended by a friend to download a program called Eclipse Java. But after reading the Party's thread, I am unsure of what program to use.

thank heaps
Short answers of your questions are basically:
  • Yes bots are all written in Java (or optionally instead kotlin, but you can pretend that doesn't exist for now, it's based on Java)
  • I learned from @Snufalufugus ' video Tutorial - Making a Basic Treebot From Scratch [Video - 1:31:33]
  • You'll want to at least have a solid java foundation first. Hello world, variables, object oriented practices, static public private etc. Writing bots is easy with basic java knowledge, and while it's possible with no prior knowledge your bots will probably be poor structure and prone to breaking
  • Once you know the basics of java you can find the runemate API here Generated Documentation (Untitled) and there's numerous tutorials on importing the jar etc
 
Top