15.10.2011, 05:21
Isso ai que o Cristhian mandou!
Eu editei o comando caso vocк nгo soubesse e tambйm coloquei caso nгo estiver dado os 3 minutos vai mandar uma mensagem mandando ele aguardar 3 minutos.
Faзa isso:
Adicione no topo do seu GM:
Substitua seu comando /governo por este aqui:
No final do GM adicione:
FLW Boa sorte.
Eu editei o comando caso vocк nгo soubesse e tambйm coloquei caso nгo estiver dado os 3 minutos vai mandar uma mensagem mandando ele aguardar 3 minutos.
Faзa isso:
Adicione no topo do seu GM:
PHP код:
new bool:gov[MAX_PLAYERS];
PHP код:
if(strcmp(cmd, "/governo", true) == 0 || strcmp(cmd, "/gov", true) == 0)
{
if(IsPlayerConnected(playerid))
{
if(!IsACop(playerid))
{
SendClientMessage(playerid, COLOR_GREY, " Vocк nгo й um policial !");
return 1;
}
if(gov[playerid] == true) // creditos ian
{
SendClientMessage(playerid, COLOR_GREY, " Vocк deve aguardar 3 minutos antes de mandar outro /gov(erno).");
return 1;
}
if(PlayerInfo[playerid][pRank] < 5)
{
SendClientMessage(playerid, COLOR_GREY, " Vocк precisar ter cargo maior ou igual а 5 !");
return 1;
}
GetPlayerName(playerid, sendername, sizeof(sendername));
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;
if(!strlen(result))
{
SendClientMessage(playerid, COLOR_GRAD2, "USO: (/gov)erno [texto]");
return 1;
}
SendClientMessageToAll(COLOR_WHITE, "|___________ Notнcias governamentais ___________|");
for(new luplay=0;luplay<6;luplay++){
if(strfind(result, IP[luplay], true) != -1){result = "PКGO EM FRБGRANTE!!!Jogador tentando divulgar algum IP.";}}
if(PlayerInfo[playerid][pMember] == 7)
{
format(string, sizeof(string), "Polнtico %s: %s", sendername, result);
}
else if(PlayerInfo[playerid][pMember] == 21)
{
format(string, sizeof(string), "Oficial BOPE %s: %s", sendername, result);
}
else if(PlayerInfo[playerid][pMember] == 14)
{
format(string, sizeof(string), "Oficial PRF %s: %s", sendername, result);
}
else if(PlayerInfo[playerid][pMember] == 3)
{
format(string, sizeof(string), "Forзas Armadas %s: %s", sendername, result);
}
else if(PlayerInfo[playerid][pMember] == 24)
{
format(string, sizeof(string), "Bombeiro %s: %s", sendername, result);
}
else
{
format(string, sizeof(string), "Oficial %s: %s", sendername, result);
}
SendClientMessageToAll(COLOR_DBLUE, string);
gov[playerid] = true;//Creditos a Cristhian
SetTimerEx("ggov", 60000*3, false, "d", playerid);//Creditos a Cristhian
}
return 1;
}
PHP код:
forward ggov(playerid);
public ggov(playerid)
{
if(gov[playerid])
{
gov[playerid] = false;
}
return 1;
}