Quote:
Originally Posted by yuvraj201
It compiles good but ingame no message come on screen what is wrong?
pawn Код:
CMD:mycars(playerid, params[]) { new string[1000000]; format(string, sizeof(string), "Car 1: %d & Car 2 %d", pInfo[playerid][pCar], pInfo[playerid][pCarr]); SendClientMessageEx(playerid, COL_GREEN, string); return 1; }
|
Dude, do not make new strings with size like that. Make something smaller like 128 characters, in your case 64 would be also good.