Results 1 to 3 of 3

Thread: how do i loop my script?

  1. #1
    Join Date
    Feb 2012
    Location
    canada
    Posts
    36
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Exclamation how do i loop my script?

    ok so i have looked really hard at all the tutorials but i dont have time to go into the actual detail because i have to sleep. i have a very noob script. i just started learning 1 hour ago about simba scripting. so i need this script to be a constant loop and keep playing forever. basically suicide botting.

    "program chocolatedustmaker;
    begin
    MoveMouse(759, 452);
    Wait(1234)
    Clickmouse(759, 452, 0);
    Wait(1139)
    MoveMouse(762, 490);
    Clickmouse(762, 490, 1);
    Wait(1345)
    MoveMouse(943, 404);
    ClickMouse(943, 404, 0);
    Wait(1223)
    MoveMouse(948, 516);
    ClickMouse(948, 516, 1);
    Wait(1453)
    MoveMouse(390, 300);
    ClickMouse(390, 300, 0);
    Wait(1274)
    MoveMouse(390, 410);
    ClickMouse(390, 410, 1);
    Wait(1432)
    MoveMouse(824, 226);
    ClickMouse(824, 266, 1);
    Wait(1132)
    MoveMouse(900, 400);
    ClickMouse(900, 400, 1)
    Wait(1167)
    MoveMouse(944, 402);
    ClickMouse(944, 402, 1);
    Wait(1293)
    MoveMouse(535, 647);
    ClickMouse(535, 647, 1);
    Wait(27894)
    end. "

  2. #2
    Join Date
    Feb 2011
    Location
    Wisconsin
    Posts
    398
    Mentioned
    1 Post(s)
    Quoted
    10 Post(s)

    Default

    Quote Originally Posted by hobofight101 View Post
    ok so i have looked really hard at all the tutorials but i dont have time to go into the actual detail because i have to sleep. i have a very noob script. i just started learning 1 hour ago about simba scripting. so i need this script to be a constant loop and keep playing forever. basically suicide botting.

    "program chocolatedustmaker;
    begin
    MoveMouse(759, 452);
    Wait(1234)
    Clickmouse(759, 452, 0);
    Wait(1139)
    MoveMouse(762, 490);
    Clickmouse(762, 490, 1);
    Wait(1345)
    MoveMouse(943, 404);
    ClickMouse(943, 404, 0);
    Wait(1223)
    MoveMouse(948, 516);
    ClickMouse(948, 516, 1);
    Wait(1453)
    MoveMouse(390, 300);
    ClickMouse(390, 300, 0);
    Wait(1274)
    MoveMouse(390, 410);
    ClickMouse(390, 410, 1);
    Wait(1432)
    MoveMouse(824, 226);
    ClickMouse(824, 266, 1);
    Wait(1132)
    MoveMouse(900, 400);
    ClickMouse(900, 400, 1)
    Wait(1167)
    MoveMouse(944, 402);
    ClickMouse(944, 402, 1);
    Wait(1293)
    MoveMouse(535, 647);
    ClickMouse(535, 647, 1);
    Wait(27894)
    end. "
    1. Moving to the same exact spot every time is very easy to catch. Having the same wait every time is very easy to catch and you WILL get banned. add some randomness.

    2. Use simba tags.

    3. Don't make multiple threads about the same thing

    4.
    Simba Code:
    begin
    repeat
      MoveMouse(759, 452);
      Wait(1234)
      Clickmouse(759, 452, 0);
      Wait(1139)
      MoveMouse(762, 490);
      Clickmouse(762, 490, 1);
      Wait(1345)
      MoveMouse(943, 404);
      ClickMouse(943, 404, 0);
      Wait(1223)
      MoveMouse(948, 516);
      ClickMouse(948, 516, 1);
      Wait(1453)
      MoveMouse(390, 300);
      ClickMouse(390, 300, 0);
      Wait(1274)
      MoveMouse(390, 410);
      ClickMouse(390, 410, 1);
      Wait(1432)
      MoveMouse(824, 226);
      ClickMouse(824, 266, 1);
      Wait(1132)
      MoveMouse(900, 400);
      ClickMouse(900, 400, 1)
      Wait(1167)
      MoveMouse(944, 402);
      ClickMouse(944, 402, 1);
      Wait(1293)
      MoveMouse(535, 647);
      ClickMouse(535, 647, 1);
      Wait(27894)
    until(false)
    end.

  3. #3
    Join Date
    Feb 2012
    Location
    canada
    Posts
    36
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    thnx yeh i thought this spot fit better sry for other thread, but thanks for the help.

    edit (+rep)

Thread Information

Users Browsing this Thread

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

Tags for this Thread

Posting Permissions

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