
Originally Posted by
poopy2177
Ok I just dont get It ive been following all the guides I know like everything like definitions such as var, arraw, procedure, function(ect)... BUT
HOW do I make a script for RUNESCAPE! I dont get it sorry ya i'm dumb ok any help would be apriciated ty
I know its probably

I just..... am

You make a script for runescape by combining the knowledge that you have and applying it to a problem.
For example, if you wanted to make an autofisher that drops the fish, you would say:
Autofisher needs to:
Log in
Find a fishing spot
Fish at the spot
When the inventory is full, drop the fish.
Then you break those down in to:
Log in:
-Declare the players you want to use
-Pick the one to log in
-Log him/her in
Find a fishing spot:
-Look for fishing spot colors
-Hover your mouse over a color
-If the uptext is 'Fish', then you've found it.
-If not, go to the next color.
-If there are no more colors, stop looking and say 'I can't find a spot.'
Fish at a spot:
-Wait until the spot disappears.
[which can be accomplished with]
--Colors disappearing?
--Chatbox messages?
Drop fish:
-Set x to 2.
-[loop]
--Drop inventory slot x.
--Increment x.
-[goto the loop until x > 28]
As for the main part of the program (the part between begin ... end.)
begin
-Log in
-[loop]
--Find a fishing spot
--Fish at a spot
--Drop fish
-[goto the loop start until a condition you want is true]
end.
Programming is all about taking a huge task and breaking it down in to smaller and smaller and smaller tasks, until you're at the point where you can write a series of commands to accomplish it.
One more example, not for RuneScape:
Brush my teeth.
What do you have to do?
You must:
Locate toothbrush
Locate toothpaste
Open toothpaste
Place toothpaste on toothbrush
Put toothbrush down
Put cap on toothpaste
Pick toothbrush up
Rinse bristles of brush with toothpaste on it in water
repeat
-Brush teeth
until 2 minutes is up
Rinse mouth
Throughly rinse toothbrush
Put toothpaste away
Put toothbrush away.
Random examples, but all revolve around one principal (or was it -le?): Breaking things down.
It's difficult at first, but as you get better at coding, you'll get better at breaking things down. 
Best of luck!
~Macro
Current Project: Catching up. XD. Potentially back for the summer, depending on how things go.