04.04.2012, 16:46
Quote:
Are you checking all skins possible in SA world?:O,ok lol.Yes there is a faster way:
pawn Код:
|
pawn Код:
if(dialogid == DIALOG_BUYCLOTHES)
{
if(response)
{
new clothes = strval(inputtext);
if(clothes == 1)
if(clothes == 2)
if(clothes == 3)
{
SetPlayerSkin(playerid, clothes);
SaveAccountStats(playerid);
SendClientMessage(playerid, COLOR_GOLD, "Skin changed");
}
}
}
}
}