Results 1 to 10 of 10

Thread: [tip] old school running trick

  1. #1
    Join Date
    Dec 2011
    Location
    New York, USA
    Posts
    1,242
    Mentioned
    12 Post(s)
    Quoted
    193 Post(s)

    Default [tip] old school running trick

    I see a lot of people using SetRun(true) to run in old-school runescape, Ex:
    Simba Code:
    procedure move;
    begin
      SetRun(true);
      mouse(x, y, 2, 2, true); //or whatever function you're using to walk
    end;

    Holding the control key while clicking to move makes your player run, removing the need to switch to the settings tab.

    Simply add KeyDown(17) before and KeyUp(17) after your movement click. Ex:

    Simba Code:
    procedure move;
    begin
      KeyDown(17);
      mouse(x, y, 2, 2, true); //or whatever function you're using to walk
      KeyUp(17)
    end;

    Thank you for your time.
    ~nebula

  2. #2
    Join Date
    Sep 2008
    Posts
    754
    Mentioned
    8 Post(s)
    Quoted
    275 Post(s)

    Default

    Nice, never really liked the Control Key for running and never used it , but this is useful

  3. #3
    Join Date
    Sep 2006
    Location
    Australia
    Posts
    425
    Mentioned
    0 Post(s)
    Quoted
    34 Post(s)

    Default

    Pretty much a crutch for me when I pk, always assumed it was common knowledge

  4. #4
    Join Date
    Sep 2008
    Posts
    754
    Mentioned
    8 Post(s)
    Quoted
    275 Post(s)

    Default

    Quote Originally Posted by Deni_mulic View Post
    Pretty much a crutch for me when I pk, always assumed it was common knowledge

    Is it possible to walk using this? like the only reason i don't use this is because once you press control + mouse_left your suspended in running, and the only way to walk again - while your running towards the red flag on minimap is to go to the run tab and set run off.

    Anyway around this?

  5. #5
    Join Date
    Sep 2006
    Location
    Australia
    Posts
    425
    Mentioned
    0 Post(s)
    Quoted
    34 Post(s)

    Default

    I just click the square in front of my char if I want to stop running.

  6. #6
    Join Date
    Apr 2013
    Posts
    6
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    Quote Originally Posted by Deni_mulic View Post
    Pretty much a crutch for me when I pk, always assumed it was common knowledge
    never knew that and ive played since 04... im dumbfounded

  7. #7
    Join Date
    Feb 2006
    Location
    Canada
    Posts
    2,254
    Mentioned
    21 Post(s)
    Quoted
    238 Post(s)

    Default

    You should probably add some random waits in there ya? (between depressing and releasing the key that is)

  8. #8
    Join Date
    Dec 2011
    Location
    New York, USA
    Posts
    1,242
    Mentioned
    12 Post(s)
    Quoted
    193 Post(s)

    Default

    Quote Originally Posted by cause View Post
    You should probably add some random waits in there ya? (between depressing and releasing the key that is)
    probably, but what I posted was just an example of how to include the trick in your script. I didn't go crazy with anything

  9. #9
    Join Date
    Feb 2006
    Location
    Canada
    Posts
    2,254
    Mentioned
    21 Post(s)
    Quoted
    238 Post(s)

    Default

    Quote Originally Posted by Nebula View Post
    probably, but what I posted was just an example of how to include the trick in your script. I didn't go crazy with anything
    Gotta hand hold a little around here eh

  10. #10
    Join Date
    Dec 2012
    Posts
    115
    Mentioned
    0 Post(s)
    Quoted
    25 Post(s)

    Default

    Quote Originally Posted by gotilo12 View Post
    never knew that and ive played since 04... im dumbfounded
    Yepp me too haha!

Thread Information

Users Browsing this Thread

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

Tags for this Thread

Posting Permissions

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