Jump to content

new here, help with script please


Recommended Posts

Guest jpirtle
Posted

I need to make a script that will simulate a shift key being pressed every 10 seconds. It's for a online game called MapleStory and I get tired of sitting and pushing the key every ten seconds for hours. Any help would be appreciated.

Posted

I need to make a script that will simulate a shift key being pressed every 10 seconds.  It's for a online game called MapleStory and I get tired of sitting and pushing the key every ten seconds for hours.  Any help would be appreciated.

<{POST_SNAPBACK}>

Look in the AutoIt Help File for "While", "Sleep", and "Send".

Phillip

Posted (edited)

I need to make a script that will simulate a shift key being pressed every 10 seconds.  It's for a online game called MapleStory and I get tired of sitting and pushing the key every ten seconds for hours.  Any help would be appreciated.

<{POST_SNAPBACK}>

try this:

while 1 ; this is infinite loop

send("+") ; + stands for shift

sleep(10000) ; sleeps 10 seconds ( note it is in miliseconds )

wend

Edited by pcdestroyer

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
×
×
  • Create New...