27.07.2010, 10:00
fazes tipo:
no topo do gm
e depois metes a variavel em 1 e se tiver em 1 nao se pode usar mais o comando tipo assim:
mas altera como kiseres...
no topo do gm
pawn Код:
new podecomando[MAX_PLAYERS];
pawn Код:
if(strcmp(cmd, "/noticias", true) == 0)
{
if(podecomando[playerid] == 1) return SendClientMessage(playerid,LIGHTGREEN,"Nao pode usar o comando");
if(IsPlayerConnected(playerid))
{
if(PlayerInfo[playerid][pFaction] != 255 && DynamicFactions[PlayerInfo[playerid][pFaction]][fType] == 4)
{
if(NewOnDuty[playerid] == 0)
{
new length = strlen(cmdtext);
while ((idx < length) && (cmdtext[idx] <= ' '))
{
idx++;
}
new offset = idx;
new result[64];
while ((idx < length) && ((idx - offset) < (sizeof(result) - 1)))
{
result[idx - offset] = cmdtext[idx];
idx++;
}
result[idx - offset] = EOS;
SendClientMessageToAll(COLOR_LIGHTYELLOW2,"[INFO:] Para ouvires as noticias ou comunicados tens de ligar o radio.");
SendClientMessageToAll(COLOR_LIGHTGREEN, "______________________[TRV-News]________________________");
SendClientMessageToAll(COLOR_LIGHTGREEN, " ***Jingle da TRV-News***");
NewOnDuty[playerid] = 1;
podecomando[playerid] = 1;
}
else
{
new length = strlen(cmdtext);
while ((idx < length) && (cmdtext[idx] <= ' '))
{
idx++;
}
new offset = idx;
new result[64];
while ((idx < length) && ((idx - offset) < (sizeof(result) - 1)))
{
result[idx - offset] = cmdtext[idx];
idx++;
}
result[idx - offset] = EOS;
SendClientMessageToAll(COLOR_LIGHTGREEN, " ***Jingle da TRV-News***");
SendClientMessageToAll(COLOR_LIGHTGREEN, "_________________________________________________________");
NewOnDuty[playerid] = 0;
podecomando[playerid] = 0;
}
}
}
return 1;
}