09.10.2011, 20:34
pawn Код:
new bool:Evento = false; // COLOCA NO TOPO DO FS/GM
// no ONPlayerCommandtext
if(!strcmp(cmdtext,"/AbrirEvento", true))
{
if(Evento == true)
return SendClientMessage(playerid, -1,"O Eveneto jб estб aberto!");
Evento = true;
return 1;
}
if(!strcmp(cmdtext,"/FecharEvento", true))
{
if(Evento == false)
return SendClientMessage(playerid, -1,"Nгo tem nenhum evento aberto!");
Evento = false;
return 1;
}