10.08.2011, 16:05
O que vocк precisa fazer й algo mais ou menos assim..
no topo do gm..
Ai no teu comando vocк faz algo assim:
no topo do gm..
pawn Код:
new Time[MAX_PLAYERS]
pawn Код:
format(string, sizeof(string), "%s estб pedindo reforзo", nome);
MSGTime(string);
pawn Код:
forward MSGTime(string[]);
public MSGTime(string[])
{
foreach(Player, i)//Aqui й um loop normal, mas eu uso foreach
{
if(GetPVarInt(i, "Logado") > 0)//Verifica se o jogador estб logado (IsPlayerConnected)
{
if(Time[i] == 1)
{
SendClientMessage(i, cor, string);
}
else if(Time[i] == 2)
{
SendClientMessage(i, cor, string);
}
else if(Time[i] == 3)
{
SendClientMessage(i, cor, string);
}
else if(Time[i] == 4)
{
SendClientMessage(i, cor, string);
}
}
}
return 1;
}