Results 1 to 7 of 7

Thread: Hover Skill Going Slow

  1. #1
    Join Date
    May 2009
    Posts
    54
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Question Hover Skill Going Slow

    For an anti-ban, I am using HoverSkill as a part of it. For some reason, it moves super slow.

    Here is the script:

    Code:
    {==================================================}
    {================= AutoTalker V1.0 ================}
    {==================================================}
    
    Program AutoTalker;
    {.include SRL/SRL.Scar}
    
    Var
      Messages : Integer;
    
    Const
    {=========================================}
      Message1 = (' ');
      Message2 = (' ');
      Message3 = (' ');
      
    {=========================================}
    
    Procedure AutoTalker;
    Begin
      TypeSend(Message1)
      Wait(2000 + Random(1000))
      inc(Messages)
      TypeSend(Message2)
      Wait(1500 + Random(1000))
      inc(Messages)
      TypeSend(Message3)
      Wait(1750 + Random(1000))
      inc(Messages)
    End;
      
    Procedure AntiBan;
    Begin
      Begin
        MakeCompass('W');
        Wait(1000 + Random(500));
        MakeCompass('E');
        Wait(1250 + Random(500));
        MakeCompass('S');
        Wait(1500 + Random(500));
      End;
      Begin
        HoverSkill('Random',False);
        Wait(750 + Random(500));
      End;
    End;
    
    Procedure ProgressReport;
    Begin
      ClearDebug;
      WriteLn('|==================================================|');
      WriteLn('|               Willow Cutter Report               |');
      WriteLn('|==================================================|');
      WriteLn(' Time Running: ' + TimeRunning );
      WriteLn(' Messages Said: ' + IntToStr(Messages));
      WriteLn('|==================================================|');
      WriteLn('|               Created By: Devoker.               |');
      WriteLn('|==================================================|');
    End;
    
    Begin
      AutoTalker;
      repeat
        Autotalker;
        AntiBan;
        ProgressReport;
      until(False)
    End.
    Here is the HoverSkill part:

    Code:
    Procedure AntiBan;
    Begin
      Begin
        MakeCompass('W');
        Wait(1000 + Random(500));
        MakeCompass('E');
        Wait(1250 + Random(500));
        MakeCompass('S');
        Wait(1500 + Random(500));
      End;
      Begin
        HoverSkill('Random',False);
        Wait(750 + Random(500));
      End;
    End;

  2. #2
    Join Date
    Oct 2006
    Location
    ithurtsithurtsithurtsithurts
    Posts
    2,930
    Mentioned
    7 Post(s)
    Quoted
    135 Post(s)

    Default

    You forgot SetupSRL :P

  3. #3
    Join Date
    May 2009
    Posts
    54
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Oh, okay. Thank you.

  4. #4
    Join Date
    Dec 2008
    Posts
    2,813
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Doesn't fix it and don't make multiple threads, please. There is something wrong with it, I'll check it out.

  5. #5
    Join Date
    Jan 2008
    Location
    California, US
    Posts
    2,765
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    99_, SetupSRL; does fix it because MouseSpeed is not set without it and when it is called it is set to like 15 or something.

  6. #6
    Join Date
    Mar 2008
    Location
    ::1
    Posts
    915
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    The only way to fix it without calling the full SetupSRL; (Don't know why you wouldn't want to ...) is to set MouseSpeed to something higher liek I think 15 works.

    Records and Types Save Code (and make you look better)
    Quote Originally Posted by Wizzup? View Post
    Is it possible to make Runescape a 2D game with this?... That would greatly simplify... Just about anything.

  7. #7
    Join Date
    Feb 2009
    Location
    Philipines
    Posts
    600
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    If you mean HoverSkill is slow try removing this line:
    SCAR Code:
    Wait(750 + Random(500));

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
  •