10.06.2012, 15:53
pawn Код:
CMD:bloquear(playerid, params[]) // Aqui Nуs usaremos "PARAMS[]", Porque Neste Comando Vai pametros
{
SendClientMessage(playerid, VERMELHO, "<!>Vocк Bloqueou O Teleporte!");
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(IsPlayerConnected(i))
{
Trancado[i] = true;
}
}
return 1;
}
CMD:desbloquear(playerid, params[]) // Aqui Nуs usaremos "PARAMS[]", Porque Neste Comando Vai pametros
{
SendClientMessage(playerid, VERMELHO, "<!>Vocк Desbloqueou O Teleporte!");
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(IsPlayerConnected(i))
{
Trancado[i] = false;
}
}
return 1;
}