Quote:
|
Originally Posted by Kraugh
|
Yes, I know of the unpause option, but according to the wiki, if you use pause("ac", "myplugin.amxx") <---This will no longer be unpauseable. Unless I mistinterpreted it. I basically want to pause a plugin when a certain mode is on in my server, when the mode is off, the plugin will be unpaused. Im not sure if its this way
Code:
if(mymode == 0)
pause("ac", "myplugin.amxx")
else
unpause("ac", "myplugin.amxx")
I could be wrong, but in 1.60 this is the way I used to pause other plugins from within other plugins. The wiki said that in that way(above) the plugin will no longer be unpauseable. Any thoughts anyone? Thanks