10.08.2014, 02:47
How to fix this errors ?
This is the Code :
Lines 10287 :
Lines 10297 :
Please Help me !
Quote:
E:\Folder Dion\SA-MP\Server\0.3z\Freeroam\Y_INI Project\gamemodes\RgX.pwn(10287) : error 047: array sizes do not match, or destination array is too small E:\Folder Dion\SA-MP\Server\0.3z\Freeroam\Y_INI Project\gamemodes\RgX.pwn(10297) : error 047: array sizes do not match, or destination array is too small Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase 2 Errors. |
Код:
public StoreChatLine(playerid,text[]) { for(new i = 0; i < MAX_CHAT_MSGS_STORE-1; i++) ChatMessages[i] = ChatMessages[i+1]; format(Jstring,sizeof(Jstring),"%s(ID: %d): %s",GetName(playerid),playerid,text); ChatMessages[MAX_CHAT_MSGS_STORE-1] = Jstring; } public StoreReport(playerid,reported,reason[]) { new hour,minute,second; gettime(hour,minute,second); for(new i = 0; i < MAX_REPORTS_STORE-1; i++) Reports[i] = Reports[i+1]; format(Jstring,sizeof(Jstring),"%d:%d:%d - %s(ID: %d) Has Reported %s(ID: %d) |{FF0000} REASON: %s ",hour,minute,second,GetName(playerid),playerid,GetName(reported),reported,reason); Reports[MAX_REPORTS_STORE-1] = Jstring; }
Код:
ChatMessages[MAX_CHAT_MSGS_STORE-1] = Jstring;
Код:
Reports[MAX_REPORTS_STORE-1] = Jstring;