Jump to content

Recommended Posts

Guest RingmasterLQ
Posted

Ok..I'm having trouble with a basic script here. Here's the script:

Sleep (10000) ; time before script starts

$buttonpress = 10 ; Number of buttonpress attempts to make While $buttonpress > 0

Send ("2") ; Hit the 2 button

Sleep (1305) ; Allow time to press button again

$buttonpress = $buttonpress - 1 ; Decrease button counter

Now, here's my problem...I can't figure out how to make the script repeat itself after it's done cycling through the motions. Can somebody help me? I run it, but it runs once, and then does not run anymore. Any help is appreciated :ph34r:.

Thanks...,

Chris.

Posted

For $buttonpress = 10 to 0 Step -1
   Sleep (10000); time before script starts 
   Send ("2"); Hit the 2 button 
   Sleep (1305); Allow time to press button again 
Next

Posted

if all you want to do is make the script repeat itself indefinatley, just type

While 1
ALL YOUR SCRIPT CODE HERE
Wend

if you want some other kind of loop, check out the examples, im not going to explain them here

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...