Sedoc94 1 Posted July 22, 2011 Hi! How would I check when a value has increased with 1910 to do another action? Like I want to do a Sleep until a value of a $var has increased with 1910. How would I do that? Thank you very much! Sedoc94 Share this post Link to post Share on other sites
Exit 154 Posted July 22, 2011 Show us your script. App: Au3toCmd UDF: _SingleScript() Share this post Link to post Share on other sites
bogQ 91 Posted July 22, 2011 $Something = 1 $tempStart = $Something Do $Something += 1 Sleep(10) ToolTip($Something) Until $tempStart + 191 = $Something MsgBox(0,"","TheEnd") TCP server and client - Learning about TCP servers and clients connectionAu3 oIrrlicht - Irrlicht projectAu3impact - Another 3D DLL game engine for autoit. (3impact 3Drad related)There are those that believe that the perfect heist lies in the preparation.Some say that it’s all in the timing, seizing the right opportunity. Others even say it’s the ability to leave no trace behind, be a ghost. Share this post Link to post Share on other sites