03.01.2014, 16:36
Howdy mate, do you have the code which responds to the click? If you look into the mSelection thread you'll see an example script of it, and this is the response link on that thread:
pawn Код:
public OnPlayerModelSelection(playerid, response, listid, modelid)
{
if(listid == skinlist)
{
if(response)
{
SendClientMessage(playerid, 0xFF0000FF, "Skin Changed");
SetPlayerSkin(playerid, modelid);
}
else SendClientMessage(playerid, 0xFF0000FF, "Canceled skin selection");
return 1;
}
return 1;
}