09.09.2010, 18:12
Have you guys even seen this code? Clicked on the pastebin link?
Sorry, but this code looks like a fail.
What the heck?
Correct would be:
Sorry, but this code looks like a fail.
pawn Код:
if (strcmp("/armour", cmdtext, true, 10) == 0)
}
SetPlayerArmour(playerid,100);
GivePlayerMoney(playerid, -1000);
{
return 1;
return SendClientMeassage(playerid, 0xffffffaa "you now have full armour");
Correct would be:
pawn Код:
if(strcmp("/armour",cmdtext,7) == 0)
{
SetPlayerArmour(playerid,100);
GivePlayerMoney(playerid, -1000);
SendClientMeassage(playerid, 0xffffffaa "you now have full armour");
return 1;
}