01.02.2014, 20:27
Quote:
poste o comando de dar chaves q vc citou no seu outro topico
https://sampforum.blast.hk/showthread.php?tid=491742 |
pawn Code:
if(strcmp(cmd, "/darchave", true) == 0)
{
new plid, id;
if(sscanf(cmdtext, "s[10]ud", cmd, plid, id))
{
SendClientMessage(playerid, Vermelho, "/darchave [id] [portгo-id]");
return 1;
}
if(pAdmin[playerid] > 1)
{
format(file, sizeof(file), PASTA_PORTOES, id);
if(dini_Exists(file))
{
if(dini_Int(file, "TDono") == 0)
{
dini_Set(file, "Dono", GetPlayerNameEx(plid));
dini_IntSet(file, "TDono", 1);
format(string, sizeof(string), "O(A) ADM %s te deu a chave do portгo: %d", GetPlayerNameEx(playerid), id);
SendClientMessage(plid, Blue, string);
SendClientMessage(playerid, Verde, "Comando efetuado com sucesso!");
}
else
{
SendClientMessage(playerid, Vermelho, "Este portгo jб tem dono!");
}
}
else
{
SendClientMessage(playerid, Vermelho, "Portгo invбlido, tente novamente!");
}
}
else
{
SendClientMessage(playerid, Vermelho, "Vocк nгo tem permissгo.");
}
return 1;