Results 1 to 3 of 3

Thread: Pvp stander

  1. #1
    Join Date
    Mar 2007
    Posts
    1,223
    Mentioned
    0 Post(s)
    Quoted
    5 Post(s)

    Default Pvp stander

    Hey,
    I'm on my laptop (no scar)
    I was wandering if someone can make a really quick simple script that just does a random emote/action before 5 mins, this is just to keep my logged in PvP, I do not need it to actually look for other people killing me, all I need is something that does an action to keep it logged and check randoms.

    Thanks


    P.S. I'm just looking for a 2 minute piece of work, then I'll edit it, if I need to

  2. #2
    Join Date
    Feb 2007
    Location
    Alberta,Canada
    Posts
    2,358
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    SCAR Code:
    program New;
    {.include SRL/SRL.scar}

    Procedure AntiBan; //Make this better I'm lazy
    begin
      case Random(155) of
        1..100: SleepAndMoveMouse(5000);
        101..110:
        begin
          HoverSkill('Strength', False);
          Wait(1000+random(1000));
        end;
        111..120: RandomRClick;
        126..155:
        begin
          RandomMovement;
          wait(500+random(2000));
        end;
      end;
    end;

    var Timer, TotalTime: Integer;

    {------------------------------------}
    const SetTime = 15; // In Minutes!   }
    {------------------------------------}

    begin
      SetupSRL;
      MarkTime(Timer);
      MarkTime(TotalTime);
      repeat
        if (TimeFromMark(Timer) > 60000*(RandomRange(3,4))) then
        begin
          AntiBan;
          MarkTime(Timer);
        end;
      until (TimeFromMark(TotalTime) >= (SetTime div 60000));
    end.

    haha i dunno if it'll work i did it in about 30 seconds. The antiban is retardedly bad I was just too lazy to do anything worthwhile haha so edit it as you please.
    “Ignorance, the root and the stem of every evil.”

  3. #3
    Join Date
    Mar 2007
    Posts
    1,223
    Mentioned
    0 Post(s)
    Quoted
    5 Post(s)

    Default

    Quote Originally Posted by Blumblebee View Post
    SCAR Code:
    program New;
    {.include SRL/SRL.scar}

    Procedure AntiBan; //Make this better I'm lazy
    begin
      case Random(155) of
        1..100: SleepAndMoveMouse(5000);
        101..110:
        begin
          HoverSkill('Strength', False);
          Wait(1000+random(1000));
        end;
        111..120: RandomRClick;
        126..155:
        begin
          RandomMovement;
          wait(500+random(2000));
        end;
      end;
    end;

    var Timer, TotalTime: Integer;

    {------------------------------------}
    const SetTime = 15; // In Minutes!   }
    {------------------------------------}

    begin
      SetupSRL;
      MarkTime(Timer);
      MarkTime(TotalTime);
      repeat
        if (TimeFromMark(Timer) > 60000*(RandomRange(3,4))) then
        begin
          AntiBan;
          MarkTime(Timer);
        end;
      until (TimeFromMark(TotalTime) >= (SetTime div 60000));
    end.

    haha i dunno if it'll work i did it in about 30 seconds. The antiban is retardedly bad I was just too lazy to do anything worthwhile haha so edit it as you please.
    lol thanks
    ill start editing..

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
  •