SKIN QUESTION
#10

Quote:
Originally Posted by Sime30
Посмотреть сообщение
I think it will always spawn you with a skin that was in AddPlayerClass (choosing with arrows). You can let's say send a message to a player after they type a number of a skin ID : "You choose skin ID %d, would you like to use it? Use /useskin to take it!
pawn Код:
//put this for the message after typing the number
new string[128];
format(string,sizeof(string),"You choose skin ID %d, would you like to use it? Use /useskin to take it!",skinID);
SendClientMessge(playerid, -1,string);
//

cmd:useskin(playerid, params[])
{
    if(PlayerUnderRequestClass[playerid] == 1)
    {
          SetPlayerSkin(playerid, skinID);
          PlayerUnderRequestClass[playerid] = 0;
          SpawnPlayer(playerid);
    }
    return 1;
}
I have seen that in other server. Is there any idea instead of this? also, Anyone else?
Reply


Messages In This Thread
SKIN QUESTION - by STONEGOLD - 13.07.2015, 18:39
Re: SKIN QUESTION - by SpikY_ - 13.07.2015, 18:50
Re: SKIN QUESTION - by STONEGOLD - 13.07.2015, 19:00
Re: SKIN QUESTION - by Sime30 - 13.07.2015, 19:09
Re: SKIN QUESTION - by Evocator - 13.07.2015, 19:17
Re: SKIN QUESTION - by STONEGOLD - 13.07.2015, 20:56
Re: SKIN QUESTION - by Sime30 - 13.07.2015, 21:24
Re: SKIN QUESTION - by STONEGOLD - 13.07.2015, 23:45
Re: SKIN QUESTION - by Sime30 - 14.07.2015, 01:34
Re: SKIN QUESTION - by STONEGOLD - 14.07.2015, 13:48

Forum Jump:


Users browsing this thread: 1 Guest(s)