01.12.2011, 00:40
(
Последний раз редактировалось atsbs; 01.12.2011 в 04:30.
)
Galera fiz esse cmd parar roubar a mala de alguem,a o roubar ganha 50k, mais a pessoa tem que ter no minimo 50k no bolso, mais ele nao reconheзe que tem o dinheiro, segue as linhas ai:
Linhas:
Linhas:
PHP код:
if(strcmp("/roubarmala", cmdtext, true, 10) == 0)
{
new pid, string[128];
tmp = strtok(cmdtext, idx);
if(!strlen(tmp)) return SendClientMessage(playerid,-1,"Digite: /roubarmala [ID do Jogador] [Quantia de Grana]");
tmp = strtok(cmdtext, idx);
if(Info[pid][SemMala] == false) return SendClientMessage(playerid, COLOR_GRAD1, " O Jogador Nao Tem uma Mala.");
tmp = strtok(cmdtext, idx);
if(RoubarPlayerTime[playerid] == 1) return SendClientMessage(playerid, -1, " Vocк precisa esperar 5 minutos para usar esse comando denovo !");
pid = strval(tmp);
money = GetPlayerGP(pid);
if(money <= 999)
{
SendClientMessage(playerid, 0xC2A2DAAA," O jogador nao tem grana na mala");
return 1;
}
pid = strval(tmp);
GivePlayerMoneyEx(pid, -50000);
GivePlayerMoneyEx(playerid, 50000);
ApplyAnimation(playerid,"PED","gang_gunstand",4.0,1,1,1,1,1);
SetPlayerSpecialAction(pid,SPECIAL_ACTION_HANDSUP);
SetPlayerWantedLevel(playerid, 3);
RoubarPlayerTime[playerid] = 1;
format(string, sizeof(string), "%s Roubou A mala de %s.", sendername ,giveplayer);
SendClientMessageToAll(playerid,string);
return 1;
}