Jump to content

Recommended Posts

Posted

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

Posted

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)

NEWHeader1.png

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...