06.07.2009, 15:55
pawn Код:
// This is at top of script
const COLOR_CYAN = 0x00F9F9FF;
// This is in a command
new Acolor[50];
Acolor = COLOR_CYAN;
SendClientMessage(playerid,Acolor,"You got cyan color.");
D:\gamemodes\gm.pwn(12215) : error 047: array sizes do not match, or destination array is too small
D:\gamemodes\gm.pwn(12216) : error 035: argument type mismatch (argument 2)
12215 -> Acolor = COLOR_CYAN;
12216 -> SendClientMessage(playerid,Acolor,"You got cyan color.");