Thank you for your help.

I still can not belive it was so simple.
Here is changed code:
Code:
ButtonStartMultiBox:
State:=!State
If State
GoSub OnLab
Else
GoSub OffLab
OnLab:
Hotkey, Enter, On
Hotkey, Escape, On
Hotkey, +r, On
Return
OffLab:
Hotkey, Enter, Off
Hotkey, Escape, Off
Hotkey, +r, Off
Return
~Enter::Suspend, Toggle ;toggle chat hotkey
~Escape::Suspend, Off ;suspend off hotkey
~+r::Suspend, On ;rewhisper hotkey (suspend on)
But i found problem. This whole suspend sunction is part of my multibox script. If i put function above function in script i cannot use another function of that script. Especially this one.
Code:
#IfWinActive, World of Warcraft
Is there any way how to use both of them at the same time?