How to make when player type command one time to enable, second time to disable ?
#4

Quote:
Originally Posted by bustern
View Post
I want when player type /duty ,to go on duty and when type /duty again to go off duty..Is there a way to do that ?
You can do it like this btw don't copy my example command it's just an example.
At the top of your script:
Code:
new AdminDuty[MAX_PLAYERS];
Example Command:
Code:
CMD:duty(playerid, params[])
{
	if(AdminDuty[playerid] == 0)
	{
             //whatever you want it to do when enabled
             AdminDuty[playerid] = 1;
	}
	else if(AdminDuty[playerid] == 1)
	{
              //whatever you want it to do when disabled
              AdminDuty[playerid] = 0;
	}
	return 1;
}
Reply


Messages In This Thread
How to make when player type command one time to enable, second time to disable ? - by bustern - 04.09.2013, 08:08
Re: How to make when player type command one time to enable, second time to disable ? - by QatarKnight - 04.09.2013, 08:19
Re: How to make when player type command one time to enable, second time to disable ? - by Tamer - 04.09.2013, 08:28
Re: How to make when player type command one time to enable, second time to disable ? - by QatarKnight - 04.09.2013, 08:35

Forum Jump:


Users browsing this thread: 1 Guest(s)