Results 1 to 5 of 5

Thread: tweaked a script, got a question:

  1. #1
    Join Date
    Nov 2011
    Posts
    335
    Mentioned
    0 Post(s)
    Quoted
    68 Post(s)

    Default tweaked a script, got a question:

    Hi all, I trimmed some fat off a few wait timers. Will it increase my risk to get banned much? The script runs fine and the game keeps up with it (no unresponded clicks due to reduced timers).

    I changed this:

    Code:
    if BankScreen then
      begin
        Wait(RandomRange(200, 300));
        DepositAll;
        Withdraw(1, 0, 14);
        Wait(RandomRange(200, 300));
        Withdraw(0, 0, 14);
        Wait(RandomRange(200, 300));
        CloseBank;
        Wait(RandomRange(500, 700));
      end;
    
    
    end;
    
    
    procedure Mix;
    begin
      InvMouse(14, 3);
      ClickMouse2(True);
      Wait(RandomRange(600, 700));
      InvMouse(15, 3);
      ClickMouse2(True);
    to this:

    Code:
    if BankScreen then
      begin
        Wait(RandomRange(50, 100));
        DepositAll;
        Withdraw(1, 0, 14);
        Wait(RandomRange(70, 130));
        Withdraw(0, 0, 14);
        Wait(RandomRange(70, 130));
        CloseBank;
        Wait(RandomRange(50, 100));
      end;
    
    
    end;
    
    
    procedure Mix;
    begin
      InvMouse(14, 3);
      ClickMouse2(True);
      Wait(RandomRange(50, 100));
      InvMouse(15, 3);
      ClickMouse2(True);

  2. #2
    Join Date
    Jan 2012
    Posts
    2,568
    Mentioned
    35 Post(s)
    Quoted
    356 Post(s)

    Default

    The main thing about antiban is not how long u wait, but the range. I guess u can increase the range to like (0,200) etc if the script can work w/o waiting. To answer ur qns, your change won't increase the risk much, if at all.

  3. #3
    Join Date
    Nov 2011
    Posts
    335
    Mentioned
    0 Post(s)
    Quoted
    68 Post(s)

    Default

    yay! thx

  4. #4
    Join Date
    Jun 2012
    Posts
    2,182
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Those longer waits may have been there to let the screen load, to let actions be done and to suffice for potential lag. Really, it should be using if..then statements to know when to procede to the next step, but for a basic script, it should work fine. If the script starts looking really buggy, and missclicking stuff, this is probably why.
    Thx Euphemism and Vinyl for the awesome siggy and avatar!

  5. #5
    Join Date
    Mar 2012
    Location
    127.0.0.1
    Posts
    1,199
    Mentioned
    0 Post(s)
    Quoted
    26 Post(s)

    Default

    Most of the time longer wait time are to accomodate for higher ping/slow internet. If you have a great connection + computer then trimming wait time can increase XP/HR

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
  •