21.12.2012, 00:51
Neste comando sim, vai adicionar mais 85 de life no player, e ele sу usa o comando se tiver os 2000 R$ e tambйm discontara o dinheiro.
PHP код:
if(strcmp("/heal",cmdtext,true,10)==0)
{
if(GetPlayerMoney(playerid) < 2000)
{
new Float:Vida;
GetPlayerHealth(playerid, Vida);
SetPlayerHealth(playerid, Vida+85.0);
GivePlayerMoney(playerid, -2000);
}
return 1;
}