Quote:
Originally Posted by djlobo[Awesome-games.tk
]
Quote:
Originally Posted by Criss_Angel
well, i want it so if the guy doesn't have enough money he doesn't go into -
Код:
if (strcmp("/buygun ak47", cmdtext, true) == 0)
{
if(GetPlayerMoney(playerid) < 3500) return SendClientMessage(playerid, COLOR_RED, "not have enough money");
{
SendClientMessage(playerid,0xAA3333AA, "Thank you for buying an Ak47,have fun with it");
GivePlayerMoney(playerid,-3500);
GivePlayerWeapon(playerid,30,470);
}
}
return 1;
}
|
|
Wrong
You have 2 times of this { and 3 times of this }