09.10.2011, 20:11
Simples? Isso й mais dificil que desenvolver um programa de proteзгo, kkkkk brincadeira, vou fazer um aqui pra tu
No public OnPlayerCommandText
No public OnGameModeInit coloca
EventoAberto=0;
No public OnPlayerCommandText
pawn Код:
new EventoAberto;
if(strcmp(cmd, "/abrirevento", true) == 0) {
if (EventoAberto==0)
{
EventoAberto=1;
}
else
{
EventoAberto=0;
}
return 1;
}
if(strcmp(cmd, "/entrarevento", true) == 0)
{
if (EventoAberto==1)
{
// Funзгo proc ara ir evento
}
else
{
SendClientMessage(playerid, 0xFFFFFAA, "[ERRO] Nгo tem nenhum evento em andamento")
}
}
EventoAberto=0;