Results 1 to 5 of 5

Thread: Anyway to make this easier?

  1. #1
    Join Date
    Mar 2013
    Posts
    26
    Mentioned
    0 Post(s)
    Quoted
    4 Post(s)

    Default Anyway to make this easier?

    I'm scripting on a private server, and it sends you to a random place as their random event so people wont use ghost mouses.

    What i need the bot to do while its in the random is basically this

    Code:
    program new;
    begin
    MoveMouse (743, 186);
      Wait(500);
    ClickMouse (743, 186, 1);
      Wait (500);
    MoveMouse (714, 308);
      Wait(500);
    ClickMouse (714, 308, 1);
      Wait(500);
    MoveMouse (263, 430);
      Wait(500);
    ClickMouse (263, 430, 1);
    end.
    Which is just going to the magic tab and clicking a teleport and clicking a option. which solves that random, is there any way to make the bot tell its in the random or easier way to make this happen?

  2. #2
    Join Date
    Mar 2006
    Location
    Belgium
    Posts
    3,564
    Mentioned
    111 Post(s)
    Quoted
    1475 Post(s)

    Default

    screenshot of random event?

    Creds to DannyRS for this wonderful sig!

  3. #3
    Join Date
    Mar 2013
    Posts
    26
    Mentioned
    0 Post(s)
    Quoted
    4 Post(s)

    Default

    654353454.png

    It just sends you here, just have to teleport out.

  4. #4
    Join Date
    Mar 2006
    Location
    Belgium
    Posts
    3,564
    Mentioned
    111 Post(s)
    Quoted
    1475 Post(s)

    Default

    Simba Code:
    Function GreenRandom: Boolean;
    begin
      Result := (CountcolorTolerance(1209420, MMx1, MMy1, MMx2, MMy2, 7) > 700);    
    end;

    So if we get more than 700 pixels of green on the minimap, then GreenRandom will return true.
    (those coords probably won't work on your private server, replace them with your default ones)

    U can use this to call throughout your script or something

    if GreenRandom then MyGetOutOfRandomStuff;

    Edit: u just want it to steal silk right? if u want I'll make the script for u. Got no script projects going on
    PM me for skype.
    Last edited by Sjoe; 04-04-2013 at 10:43 PM.

    Creds to DannyRS for this wonderful sig!

  5. #5
    Join Date
    Mar 2013
    Posts
    26
    Mentioned
    0 Post(s)
    Quoted
    4 Post(s)

    Default

    Message sent :P and no the gem stall but sorta same thing lol

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
  •