25.08.2011, 05:02
Error;
(12615) : error 047: array sizes do not match, or destination array is too small.
Line;
Rest of command;
Please help me.
(12615) : error 047: array sizes do not match, or destination array is too small.
Line;
pawn Code:
Player[playerid][Appearance] = appearance;
pawn Code:
command(appearance, playerid, params[])
{
new appearance[128];
if(sscanf(params, "s[128]", appearance)) return SendClientMessage(playerid, GREY, "Server: /appearance [description]");
else
{
new string[128];
SendClientMessage(playerid, GREY, "You have set your appearance to:");
format(string, sizeof(string), "%s", appearance);
SendClientMessage(playerid, WHITE, string);
Player[playerid][Appearance] = appearance;
}
return 1;
}