29.05.2013, 21:25
On the line of SetPlayerSkin, I get an error: Argument type mismatch.
I am using a dialog to set the player's skin when they first register on the server, the skin is set via dialog.
The issue is simple to fix, but for some reason I just cant remember :S
And please no comments such as "Had you searched" because I did search and could not find anything
I am using a dialog to set the player's skin when they first register on the server, the skin is set via dialog.
The issue is simple to fix, but for some reason I just cant remember :S
pawn Код:
if(dialogid == DIALOG_SKIN)
{
if(response)
{ new skin[3];
format(skin, sizeof(skin), inputtext);
SetPlayerSkin(playerid, skin);
return 1;
}
}