Results 1 to 4 of 4

Thread: I just dont understand );!!!!!!!!

  1. #1
    Join Date
    Dec 2008
    Posts
    160
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default I just dont understand );!!!!!!!!

    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
    My Soul Wars Scipt Proggress:[100%....]
    Probably won't release though I like it for myself

  2. #2
    Join Date
    Jan 2007
    Location
    Nomming bits in your RAM
    Posts
    385
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by poopy2177 View Post
    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.

  3. #3
    Join Date
    Dec 2008
    Posts
    160
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    WOW...... You sorta really just opened my eyes!!! I completely get it now nice example(;
    with the toothpaste.


    THANKS A BUNCH

    I am going to make an autofisher now lol
    My Soul Wars Scipt Proggress:[100%....]
    Probably won't release though I like it for myself

  4. #4
    Join Date
    Jan 2007
    Location
    Nomming bits in your RAM
    Posts
    385
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by poopy2177 View Post
    WOW...... You sorta really just opened my eyes!!! I completely get it now nice example(;
    with the toothpaste.


    THANKS A BUNCH

    I am going to make an autofisher now lol
    No problem. I'm more than happy to help!

    Good luck on your autofisher. ^^
    ~Macro_FTW
    Current Project: Catching up. XD. Potentially back for the summer, depending on how things go.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •