Results 1 to 3 of 3

Thread: all my scripts lag horribly, why?

  1. #1
    Join Date
    Oct 2006
    Posts
    468
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default all my scripts lag horribly, why?

    they all lag....by all i meen all recently i made a script that all it did was move the mouse twice and then repeat. as soon as it got to the repeat BAM lag. lags so bad it cant do anything.

  2. #2
    Join Date
    Feb 2006
    Location
    L.A, USA
    Posts
    1,632
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by bbri06 View Post
    they all lag....by all i meen all recently i made a script that all it did was move the mouse twice and then repeat. as soon as it got to the repeat BAM lag. lags so bad it cant do anything.
    Try adding waits.
    Wait(100);

    Very strange that it would lag just for a mousemove though. Post the actual code and maybe we can find something.

  3. #3
    Join Date
    Oct 2006
    Location
    Ohio
    Posts
    17
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    That's very true, just 1 ms of wait makes all the lag in some of my procedures %100 disapeer

    I made a paintball game Autoshooter (clicks max ROF on the game [59 balls per second])
    and it would lag everything with no wait, but with

    SCAR Code:
    program Login-Autoshooer;
     var x,y: integer;
    begin
     GetMousePos(x,y);
      repeat
     ClickMouse(x,y,true);
     Wait(100); // wait 1 for autoshooter
      until(false)
    end.

    It worked great, I actually made a program that autologs you into world 2 by refreshing and waiting untill "World 2" turns from white to green then it clicks it, and It types in your username\pass and uses this code to click the login button until you log in...

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Add ranging to chicken killing scripts, or the cow killing scripts
    By canu44 in forum RS3 Outdated / Broken Scripts
    Replies: 0
    Last Post: 12-18-2007, 07:37 AM

Posting Permissions

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