SouthVietBoiX Posted March 11, 2006 Posted March 11, 2006 Func TogglePause() $Paused = NOT $Paused While $Paused sleep(100) ToolTip('bot is "Paused"',0,0) MsgBox(4096,"message title","message.") WEnd MsgBox("") ToolTip("") EndFunc this is my script to make a message pop up wen the bt is paused and also the mini message in the left corner but wen i do it the big message continuously pops up wen bot is paused how do i make it pop up only once and after clicking ok it will disapear
Valuater Posted March 11, 2006 Posted March 11, 2006 maybe Func TogglePause() $Paused = NOT $Paused If $Paused Then MsgBox(4096,"message title","message.") While $Paused sleep(100) ToolTip('bot is "Paused"',0,0) WEnd ToolTip("") EndFunc 8)
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now