14.03.2014, 21:52
Quote:
Entгo eu estou pensando em colocar tipo os certos itens pra eles comerem , exemplo sabe aqueles hotdog tipo aquele objeto ? entгo eu vou colocar ele , aquela latinha de refrigererante eu vou colocar tambem entгo da fica um pouco mas complicado nй , mas eu vou usar estes comandos de base vlw mt obrigado +REP
|
pawn Код:
CMD:hotdog(playerid, params[])
{
#pragma unused params
if(IsPlayerInRangeOfPoint(playerid, 5, /*CORDENADA QUE VOCК DESEJA.*/))
{
if(GetPVarInt(playerid,"Fome") <= 0)
{
SendClientMessage(playerid, -1,"Vocк nгo estб com fome.");
SetPVarInt(playerid,"Fome",0);
return 1;
}
SetPVarInt(playerid,"Fome",GetPVarInt(playerid,"Fome")-15);
SetProgressBarValue(FomeB, GetPVarInt(playerid,"Fome"));
UpdateProgressBar(FomeB,playerid);
GivePlayerMoney(playerid, -2);
SendClientMessage(playerid,-1,"Vocк comeu um HotDog por 2$ Reais.");
}
else
{
SendClientMessage(playerid,-1,"Vocк nгo estб na barraquinha do Biel.");
return 1;
}
return 1;
}