When i type a command any command from the gamemode for example /stats this happens:
PHP Code:
CMD:stats(playerid, params[])
{
new stats[248];
format(stats, sizeof(stats), "STATS",playername);
SendClientMessage(playerid,0xFFFFFFC8,stats);
format(stats, sizeof(stats), "{80FFFF}%s {FFFFFF}stats",playername);
SendClientMessage(playerid,0xFFFFFFC8,stats);
format(stats, sizeof(stats), "{80FFFF}General: {FFFFFF}Money %d$, Bankmoney %d$",PlayerInfo[playerid][pCash],PlayerInfo[playerid][pBankmoney]);
SendClientMessage(playerid,0xFFFFFFC8,stats);
SendClientMessage(playerid,0xFFFFFFC8,stats);
return 1;
}