Results 1 to 10 of 10

Thread: soulfest GemStallThiever

  1. #1
    Join Date
    Mar 2012
    Posts
    11
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Post soulfest GemStallThiever

    Hello Im New On Scripting.

    Ive Tried To Make A Gemstal Thiever But After Compiling On Start Of The Script
    I Get This Error : [Error] (12:1): Identifier expected at line 11
    Compiling failed.


    Code
    --------------------------------------------------------------------------
    program GemStallThiever;
    procedure Klick;
    begin
    MoveMouse(356, 245);
    ClickMouse(356, 245, 1);
    end;
    begin
    Klick;
    Repeat;
    end.

  2. #2
    Join Date
    Nov 2011
    Location
    Louisiana
    Posts
    881
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    First, this will get you banned. Check out random mouse movements and clicks.

    Second, make that procedure your Mainloop, and repeat the main loop.

    Simba Code:
    program GemStallThiever;
    procedure Klick;
      begin
        MoveMouse(356, 245);
        ClickMouse(356, 245, 1);
      end;
    procedure Mainloop;
      begin
        Klick;
      end;
      begin
        Klick;
     Repeat
       Mainloop;
     Until ((not) LoggedIn)));
    end.

    Something like that, but needs more work. Just getting you started in the right direction.

  3. #3
    Join Date
    Mar 2012
    Posts
    11
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by shstiger2009 View Post
    First, this will get you banned. Check out random mouse movements and clicks.

    Second, make that procedure your Mainloop, and repeat the main loop.

    Simba Code:
    program GemStallThiever;
    procedure Klick;
      begin
        MoveMouse(356, 245);
        ClickMouse(356, 245, 1);
      end;
    procedure Mainloop;
      begin
        Klick;
      end;
      begin
        Klick;
     Repeat
       Mainloop;
     Until ((not) LoggedIn)));
    end.

    Something like that, but needs more work. Just getting you started in the right direction.
    its for a private server :}

  4. #4
    Join Date
    Jul 2008
    Location
    NSW, Australia
    Posts
    881
    Mentioned
    0 Post(s)
    Quoted
    3 Post(s)

  5. #5
    Join Date
    Mar 2012
    Posts
    11
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by leetsxc View Post
    loooooooooool
    ????

  6. #6
    Join Date
    Nov 2011
    Location
    Louisiana
    Posts
    881
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Da_Flax_picker View Post
    its for a private server :}
    Did that code work?

  7. #7
    Join Date
    Dec 2011
    Posts
    183
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    i dont think until not logged in works. also dont use coordinates, maybe use rotated dtms

  8. #8
    Join Date
    Mar 2012
    Posts
    11
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by zluo View Post
    i dont think until not logged in works. also dont use coordinates, maybe use rotated dtms

    thats why i postet here it doosnt work gives error on line IO

  9. #9
    Join Date
    Jun 2007
    Posts
    532
    Mentioned
    1 Post(s)
    Quoted
    68 Post(s)

    Default

    Quote Originally Posted by zluo View Post
    i dont think until not logged in works. also dont use coordinates, maybe use rotated dtms
    It is a private server it doesn't matter, he wont get banned.
    Finished B.S. Program in Radiology!!

    Projects: A big one! Total secret! hehe

  10. #10
    Join Date
    Dec 2011
    Posts
    183
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by 14578 View Post
    It is a private server it doesn't matter, he wont get banned.
    the coords shift every so little each minute. within 20 mins you would be clicking somwwhere else

    and yes this applies to every private server

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
  •