Results 1 to 6 of 6

Thread: GameTab problem

  1. #1
    Join Date
    Jun 2007
    Posts
    5
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default GameTab problem

    Hello everyone,

    I'm busy making an auto alcher, but got stuck with the GameTabs.
    SCAR Code:
    program AutoAlcher;
    {.include SRL\srl.scar}
    var
    i: Integer;
    begin
    GameTab(7);
     i:= 0;

     repeat
     i:= i + 1;

     clickmouse(572,350,true);
     wait(1200);
     until(i >= 5);
    end.

    The script needs to click on tab 7 first, before he will start with clickmouse.
    How do i fix this?

    Thx anyways,
    Superwauwie

    Edit:
    The only problem is that if I run this script. he will move very slow toward tab 7.
    But only with my script. Other scripts work perfect. :S

    Hope this will the give the needed information to solve the problem.

  2. #2
    Join Date
    Oct 2006
    Location
    United States
    Posts
    672
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    this might work.

    SCAR Code:
    program AutoAlcher;
    {.include SRL\srl.scar}

    var
    i: Integer;
    begin
    GameTab(7);
     i:= 0;

     repeat
     mousespeed := 10;
     i:= i + 1;
     if GameTab(7)then
     clickmouse(572,350,true);
     wait(1200);
     until(i >= 5);
    end.

  3. #3
    Join Date
    Mar 2007
    Posts
    4,810
    Mentioned
    3 Post(s)
    Quoted
    3 Post(s)

    Default

    You need to call SetupSRL; in your mainloop

  4. #4
    Join Date
    Jun 2007
    Posts
    5
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Thx guys. The problem was because of the mouse speed.

    Now I've got this script, and it works fine:
    program AutoAlcher;
    {.include SRL\srl.scar}

    var
    i: Integer;
    begin
    i:= 0;
    mousespeed := 10;
    if not GameTab(7)then GameTab(7);
    repeat
    mousespeed := 10;
    i:= i + 1;

    clickmouse(572,340,true);
    wait(1400);
    until(i >= 5);
    end.

  5. #5
    Join Date
    Jun 2007
    Location
    La Mirada, CA
    Posts
    2,484
    Mentioned
    1 Post(s)
    Quoted
    3 Post(s)

    Default

    SetupSRL; will fix that problem . Calling SetupSRL; sets up all the random information and the mousespeed and some other stuffs. Call it, will make your life a whole lot easier.

    "Failure is the opportunity to begin again more intelligently" (Henry Ford)


  6. #6
    Join Date
    Sep 2007
    Posts
    638
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I would recommend using Mouse instead of ClickMouse because ClickMouse is supposed to be easily detectable now.

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. MaGEE AreNaAA EnChaNtR gametab problem
    By imlvl127 in forum OSR Help
    Replies: 3
    Last Post: 10-09-2008, 04:59 PM
  2. GameTab() problem
    By tank phobia in forum OSR Help
    Replies: 5
    Last Post: 09-30-2008, 11:24 PM
  3. Gametab 4?
    By Sc00by22 in forum OSR Help
    Replies: 2
    Last Post: 06-08-2008, 02:15 PM
  4. GTL: No GameTab
    By Lancelot074 in forum OSR Help
    Replies: 7
    Last Post: 04-04-2008, 01:13 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
  •