Dead_Man 0 Posted August 8, 2006 i have a script that works great, but im about to send it to a forum and everyone may not like a 30 second delay, so before the script starts i need a window to come up asking for it, anyone know how? heres the script if anyone needs a base MsgBox(0," ", "Put your curser on your weapon and press enter") $mouse = MouseGetPos() MouseClick("left") While 1 Opt("SendKeyDelay", 500) Send("/2 WTS") Send("{SHIFTDOWN}") MouseClick("left",$mouse[0],$mouse[1],1,10) Send("{SHIFTUP}") Send("{ENTER}") Sleep("30000") ;30 seconds WEnd Share this post Link to post Share on other sites
evilertoaster 3 Posted August 8, 2006 (edited) $SleepTime=InputBox("Delay?","How many seconds should the delay be?",30) MsgBox(0," ", "Put your curser on your weapon and press enter") $mouse = MouseGetPos() MouseClick("left") While 1 Opt("SendKeyDelay", 500) Send("/2 WTS") Send("{SHIFTDOWN}") MouseClick("left",$mouse[0],$mouse[1],1,10) Send("{SHIFTUP}") Send("{ENTER}") Sleep($SleepTime*1000);whatever seconds WEnd Edited August 8, 2006 by evilertoaster Share this post Link to post Share on other sites