06.04.2011, 14:11
(
Последний раз редактировалось The Woody; 06.04.2011 в 14:52.
)
When i compile i get these errors:
Here is the code:
Код:
(4088) : error 035: argument type mismatch (argument 1) (4095) : error 035: argument type mismatch (argument 2)
pawn Код:
if(response)
{
if( Player[playerid][Rank] >= 1)
{
if(strlen(inputtext) > 0 || strlen(inputtext) <= 3)
{
if(IsInvalidSkin(inputtext) ) // line 4088
{
SendClientMessage( playerid, WHITE, "Invalid skin!" );
}
else
{
SendClientMessage( playerid, WHITE, "You have changed your clothes." );
SetPlayerSkin(playerid, inputtext); // line 4095
}
}
else
{
SendClientMessage( playerid, WHITE, "You can only choose between 0 - 300!" );
}
}
}