blinkwing Posted July 2, 2012 Posted July 2, 2012 (edited) Okay, maybe I'm just a little slow or something but here's what I am trying to do.. Press Start on the GUI -> Program goes into an "Endless" loop until user presses STOP on GUI. After I click "START" I can no longer press anything else on my GUI because it's stuck in a loop. Is there a way to break or pause the "endless" loop when "Donate" or "Website" button is pressed? Or completely close the script when "STOP" is pressed? Currently, before I press "BUTTON1" I am able to press "Donate" "Website" and "Stop", as soon as I press "START or BUTTON1" I am unable to do anything else. Here's my coding: <Removed> Edited July 2, 2012 by Valik
John Posted July 2, 2012 Posted July 2, 2012 (edited) You have an unconditional loop defined under $button1. Case $Button1 While 1 Sleep(100) WEnd There is no condition for this loop to ever end. Edit:en=end Edited July 2, 2012 by John
BrewManNH Posted July 2, 2012 Posted July 2, 2012 (edited) Post deleted, I was too stoopid to see this was game related thread. Edited July 2, 2012 by BrewManNH If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag GudeHow to ask questions the smart way! I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from. Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays. - ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script. - Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label. - _FileGetProperty - Retrieve the properties of a file - SciTE Toolbar - A toolbar demo for use with the SciTE editor - GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI. - Latin Square password generator
Tripredacus Posted July 2, 2012 Posted July 2, 2012 Posts about game bots are forbidden here. Twitter | MSFN | VGCollect
BrewManNH Posted July 2, 2012 Posted July 2, 2012 Posts about game bots are forbidden here. Totally missed that Smite Caster was game related. If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag GudeHow to ask questions the smart way! I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from. Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays. - ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script. - Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label. - _FileGetProperty - Retrieve the properties of a file - SciTE Toolbar - A toolbar demo for use with the SciTE editor - GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI. - Latin Square password generator
BrewManNH Posted July 2, 2012 Posted July 2, 2012 Never heard of Smite Caster.http://www.nvious.net/ Smite is the game If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag GudeHow to ask questions the smart way! I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from. Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays. - ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script. - Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label. - _FileGetProperty - Retrieve the properties of a file - SciTE Toolbar - A toolbar demo for use with the SciTE editor - GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI. - Latin Square password generator
Valik Posted July 2, 2012 Posted July 2, 2012 John, if I ever see you help with a game automation script again you will be taking a vacation from this forum.
Recommended Posts