14.06.2016, 13:53
Sry if this is multi posting but i really need to fix this
Code works fine with one error. It give me ammount of gold i want but it says that i bough it for 0$. How is that possible??
PHP код:
YCMD:kupizlato(playerid, params[], help)
{
#pragma unused help
if(IsPlayerInRangeOfPoint(playerid, 1.0, 1696.5371,-1183.6985,23.8899))
{
new string[128], ammount, cash = ammount * 300;
if(sscanf(params, "i", ammount))
{
SCM(playerid,-1,"ES:RPG Pomoc | "SPLAVA"/kupizlato [Kolicina]");
SCM(playerid,-1,"ES:RPG Pomoc | "SPLAVA"Cijena grama je 300");
return 1;
}
else
{
PlayerInfo[playerid][pZlato] += ammount;
GivePlayerMoney(playerid, - cash);
format(string, sizeof(string), ""SPLAVA"Kupili ste "ZUTA"%d g zlata za "ZELENA"%d$", ammount, cash);
SCM(playerid, -1, string);
return 1;
}
}
else
{
SCM(playerid, -1, "[ES:RPG] "CRVENA"Niste na mjestu kupovine zlata!");
return 1;
}
}