Results 1 to 4 of 4

Thread: Does Smart8 prevent spamclicking?

  1. #1
    Join Date
    Feb 2013
    Location
    Narnia
    Posts
    615
    Mentioned
    8 Post(s)
    Quoted
    252 Post(s)

    Default Does Smart8 prevent spamclicking?

    when i run my script in spam click mode it bounces around the area im clicking in very unhuman like ways but if i slow this time down it will click in that said spot over and over like it should. when using the broswer it spam clicks as it should.

    does smart8 prevent spamclicking? and if so what is the waittime in ms that it needs to succeed to not move the mouse?
    thanks.

    (i could post a video of it occuring if need be)

    View my OSR Script Repository!


    Botted to max
    Guides: How to Report Bugs to the Scripter
    ~~~~ Moved to Java. Currently Lurking ~~~~

  2. #2
    Join Date
    Feb 2012
    Location
    Wonderland
    Posts
    1,988
    Mentioned
    41 Post(s)
    Quoted
    272 Post(s)

    Default

    Simba Code:
    {$DEFINE SMART8}
      {$include_once srl/srl.simba}

    var
      t: Integer;

    begin
      {$IFDEF SMART8}
        SMART_FIXSPEED := True;
        SRL_SixHourFix := True;
      {$ENDIF}
      SetupSRL;
      ClearDebug;

      MMouse(Random(700), Random(500), 0, 0);
      MarkTime(t);
      repeat
        ClickMouse2(Mouse_Left); // Adds a random wait period between clicks automatically
        ClickMouse(Random(700), Random(500), Mouse_Left); // clicks ASAP, no wait times added
        Writeln('Clicked Mouse! - Time = ' + IntToStr(TimeFromMark(t)));
        MarkTime(t);
      until(false);

    end.

  3. #3
    Join Date
    Feb 2013
    Location
    Narnia
    Posts
    615
    Mentioned
    8 Post(s)
    Quoted
    252 Post(s)

    Default

    Quote Originally Posted by Le Jingle View Post
    Simba Code:
    {$DEFINE SMART8}
      {$include_once srl/srl.simba}

    var
      t: Integer;

    begin
      {$IFDEF SMART8}
        SMART_FIXSPEED := True;
        SRL_SixHourFix := True;
      {$ENDIF}
      SetupSRL;
      ClearDebug;

      MMouse(Random(700), Random(500), 0, 0);
      MarkTime(t);
      repeat
        ClickMouse2(Mouse_Left); // Adds a random wait period between clicks automatically
        ClickMouse(Random(700), Random(500), Mouse_Left); // clicks ASAP, no wait times added
        Writeln('Clicked Mouse! - Time = ' + IntToStr(TimeFromMark(t)));
        MarkTime(t);
      until(false);

    end.
    if i run this as its own thing it works but when i put the include in my code it doesnt like it- [Error] C:\Simba\Includes\SRL-OSR/SRL/core/simba.simba(3:10): Duplicate identifier 'VARIANTISINTEGER' at line 2
    Compiling failed.

    yes i put the ifdef as the first thing in my main/startup loop.
    can i pm you my procedure if you dont have any other ideas?
    should of said this was for osr, sorry.
    Last edited by Sk1nyNerd; 04-19-2013 at 02:41 AM.

    View my OSR Script Repository!


    Botted to max
    Guides: How to Report Bugs to the Scripter
    ~~~~ Moved to Java. Currently Lurking ~~~~

  4. #4
    Join Date
    Feb 2012
    Location
    Wonderland
    Posts
    1,988
    Mentioned
    41 Post(s)
    Quoted
    272 Post(s)

    Default

    Quote Originally Posted by ibot_dung11 View Post
    if i run this as its own thing it works but when i put the include in my code it doesnt like it- [Error] C:\Simba\Includes\SRL-OSR/SRL/core/simba.simba(3:10): Duplicate identifier 'VARIANTISINTEGER' at line 2
    Compiling failed.

    yes i put the ifdef as the first thing in my main/startup loop.
    can i pm you my procedure if you dont have any other ideas?
    You may, that is if you don't feel comfortable posting it here to the public.

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
  •