17.02.2012, 13:48
2 errors:
how to fix them? thanks for the command 
PHP код:
C:\Users\ъен\Desktop\SAMPPPPPP\gamemodes\Mode.pwn(221) : error 047: array sizes do not match, or destination array is too small
C:\Users\ъен\Desktop\SAMPPPPPP\gamemodes\Mode.pwn(224) : error 047: array sizes do not match, or destination array is too small
Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase
2 Errors.

PHP код:
if (strcmp("/editmessage", cmd, true, 10) == 0)
{
new tmp1[128];
tmp1 = strtok(cmdtext, idx);//221 line---------------------------------
if(strlen(tmp) == 0) return SendClientMessage(playerid, 0xFFFFFFFF, "USAGE: /editmessage [line] [text]");
new tmp2[128];
tmp2 = strtok(cmdtext, idx);//224 line-------------------------
if(strlen(tmp2) == 0) return SendClientMessage(playerid, 0xFFFFFFFF, "USAGE: /editmessage [line] [text]");
new id2=ChatLines-strval(tmp1);
format(Chat[id2], 256, "%s", tmp2);
for(new i; i<ChatLines; i++)
{
format(string, 256, "%s: %s", PlayerName[i], Chat[i]);
SendClientMessageToAll(PlayerColor[i], string);
}
return 1;
}