Results 1 to 7 of 7

Thread: Dunno how to fix!

  1. #1
    Join Date
    Mar 2007
    Posts
    132
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Dunno how to fix!

    Ill post it here!
    DONT STEAL IT

    SCAR Code:
    program login;

    {.include srl/srl.scar}

    {
    /////////////////////////////////
    ///Simple Auto Login by Fabis!///
    ///            v1.0           ///
    /////////////////////////////////


    1.Type in your Username and Password !
    2.Specify RS window (with that crossfire)!
    3.Start the script!

    }


    //////////////////////////Setup/////////////////////////////////////////
    const
    Username='Username'; //Put your username here!
    Password='Password'; //Put your password here!

    ///////////////////////////Dont touch this!/////////////////////////////

    begin
    MouseSpeed:=15  //Speed
    BenMouse:=False;  //Change to True, and see what happens. :D
    MMouse(random(600),random(400),6,6);

    procedure loggingin;
    begin
      Wait(3000)
      MoveMouseSmoothEx(454,288,1,3,45,20,10);
      ClickMouse(454,288,true);
      Wait(100);
      MoveMouseSmoothEx(329,257,1,3,45,20,10);
      ClickMouse(329,257,true);
      Wait(100);
      SendKeys(Username);
      Wait(1000);
      MoveMouseSmoothEx(317,275,1,3,45,20,10);
      ClickMouse(317,275,true);
      SendKeys(Password)
      Wait(500)
      MoveMouseSmoothEx(300,322,1,3,45,20,10);
      ClickMouse(300,322,true);
    end;

    procedure presshere;
    begin
     Wait(5000)
     MoveMouseSmoothEx(405,327,1,3,45,20,10);
     ClickMouse(405,327,true);
    end;

    begin
    loggingin;
    presshere;
     
    end.

    when i change 1 thing then another error comes up...thats why just say what to change please!


    P.S No really...dont steal it

  2. #2
    Join Date
    Mar 2007
    Posts
    132
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    between

    p and rocedure loggingin;
    it says:
    Line 30: [Error] (17691:1): Identifier expected in script C:\Documents and Settings\Fun with U\My Documents\SCAR\My scripts\FabisAutoLoginv1.0.scar

  3. #3
    Join Date
    Feb 2007
    Posts
    3,616
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    heres fixed version. oh, and I would NOT suggest using sendkeys, clickmouse, and movemousesmooth or movemouse, they will all get you BANNED! read my tutorial "things the beginner tuts don't teach you" links in sig, that should teach you how to script a LOT less detectably.
    SCAR Code:
    program login;

    {.include srl/srl.scar}

    {
    /////////////////////////////////
    ///Simple Auto Login by Fabis!///
    ///            v1.0           ///
    /////////////////////////////////


    1.Type in your Username and Password !
    2.Specify RS window (with that crossfire)!
    3.Start the script!

    }


    //////////////////////////Setup/////////////////////////////////////////
    const
    Username='Username'; //Put your username here!
    Password='Password'; //Put your password here!

    ///////////////////////////Dont touch this!/////////////////////////////
    procedure Whatever;
    begin
    MouseSpeed:=15  //Speed
    BenMouse:=False;  //Change to True, and see what happens. :D
    MMouse(random(600),random(400),6,6);
    end;
    procedure loggingin;
    begin
      Wait(3000)
      MoveMouseSmoothEx(454,288,1,3,45,20,10);
      ClickMouse(454,288,true);
      Wait(100);
      MoveMouseSmoothEx(329,257,1,3,45,20,10);
      ClickMouse(329,257,true);
      Wait(100);
      SendKeys(Username);
      Wait(1000);
      MoveMouseSmoothEx(317,275,1,3,45,20,10);
      ClickMouse(317,275,true);
      SendKeys(Password)
      Wait(500)
      MoveMouseSmoothEx(300,322,1,3,45,20,10);
      ClickMouse(300,322,true);
    end;

    procedure presshere;
    begin
     Wait(5000)
     MoveMouseSmoothEx(405,327,1,3,45,20,10);
     ClickMouse(405,327,true);
    end;

    begin
    SetupSRL;
    loggingin;
    presshere;

    end.
    if you want benmouse= whatever in the constants, then put it in the constants. you had just a begin after the constants, there was no procedure, and no end after it. and in your main loop, you need SetupSRL; when including SRL or you will get an error.

  4. #4
    Join Date
    Mar 2007
    Posts
    132
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    mouse still moves wery fast!
    then how to get it move slower?
    like human?

  5. #5
    Join Date
    Jun 2006
    Location
    The Netherlands
    Posts
    2,984
    Mentioned
    3 Post(s)
    Quoted
    1 Post(s)

    Default

    by setting your mouse speed in SetupSRL.scar

    30 is slow, 0 is ub3r l33t fast.
    Administrator's Warning:


  6. #6
    Join Date
    Mar 2007
    Posts
    132
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    tnx but i fixed it in other way...thanks for your tut JAD

  7. #7
    Join Date
    Feb 2007
    Posts
    3,616
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    NP fabis glad you liked it.

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Fixed SetRun and DoEmote[Mods move this, I dunno where to post]
    By gm112 in forum RS3 Outdated / Broken Scripts
    Replies: 1
    Last Post: 10-06-2006, 06:41 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •