11.08.2009, 20:40
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) == 0)
{
SendClientMessage(playerid,0xAA3333AA, "Fuck you , you dont have the money");
}
else
{
SendClientMessage(playerid,0xAA3333AA, "Thank you for buying an Ak47,have fun with it");
GivePlayerMoney(playerid,-3500);
GivePlayerWeapon(playerid,30,470);
}
}
return 1;
}


You have 2 times of this { and 3 times of this }