02.05.2011, 20:28
Hello, I got a problem in my /pm command.
This is a half bit of it.
This is the errors i get:
Line 27:
Line 32:
This is line 27:
And this is line 32:
Anyone know how to fix this?
Thanks, Alex
This is a half bit of it.
pawn Код:
cmd = strtok(cmdtext, idx);
if(strcmp(cmd, "/pm", true) == 0)
{
if(IsPlayerConnected(playerid))
{
tmp = strtok(cmdtext, idx);
if(!strlen(tmp))
{
SendClientMessage(playerid, COLOR_GREEN, "/pm [id] [text]");
return 1;
}
Line 27:
Код:
error 047: array sizes do not match, or destination array is too small
Код:
error 047: array sizes do not match, or destination array is too small
Код:
cmd = strtok(cmdtext, idx);
Код:
tmp = strtok(cmdtext, idx);
Thanks, Alex