04.06.2012, 11:42
Hello.
I can't do commands,for example i did /jetpack,tried to use it in game and it tolds me : "Server unknow command"
All commands i try to make and use won't work
Here is an example of a command:
I can't do commands,for example i did /jetpack,tried to use it in game and it tolds me : "Server unknow command"
All commands i try to make and use won't work
Here is an example of a command:
pawn Код:
public OnPlayerCommandText(playerid, cmdtext[])
{
if (strcmp("/stats", cmdtext, true, 10) == 0)
{
new name[MAX_PLAYER_NAME];
new string[128], Float:armour;
GetPlayerArmour(playerid,armour);
new cash = PlayerInfo[playerid][pCash];
GetPlayerName(playerid, name, sizeof(name));
format(string, sizeof(string), "[INFO] Armour: [%f] | Money: [%i] ",armour,cash);
SendClientMessage(playerid, 0xAFAFAFAA, string);
return 1;
}
return 0;
}