Skin Doubt
#10

Quote:
Originally Posted by Mugalito
Посмотреть сообщение
problem is active with modded GTA:SA, so add SetPlayerSkin manually when player spawns.
by the way you can save player's selected class skin and than give it to him when he spawns.
I wonder how to do that. Anyway I need you guys to assist me with assigning skins. I'll give a layout, please help me with the setplayerskin for spawn. I'm using case's, on player request, so like how do I set em? Here is the layout:

Код:
AddPlayerClass(105, 2519.1033,-1678.6353,14.6157,87.0213, 0, 0, 0, 0, 0, 0); 
	  AddPlayerClass(106, 2512.2603,-1651.3379,13.9391,132.4550, 0, 0, 0, 0, 0, 0); 
	  AddPlayerClass(107, 2459.5808,-1689.7971,13.5426,359.6238, 0, 0, 0, 0, 0, 0);
And then OnPlayerRequestClass,

Код:
switch (classid)
	{
		case 0,1,2://Grove
		{
			GameTextForPlayer(playerid, "~g~Grove Street", 2500, 6);
			SetPlayerInterior(playerid,0);
			SetPlayerPos(playerid, 2495.072753, -1666.073608, 13.343750);
                        SetPlayerFacingAngle(playerid, 143.819030);
                        SetPlayerCameraLookAt(playerid, 2495.072753, -1666.073608, 13.343750);
                        SetPlayerCameraPos(playerid, 2495.072753 + (5 * floatsin(-143.819030, degrees)), -1666.073608 + (5 * floatcos(-143.819030, degrees)), 13.343750);
			ApplyAnimation(playerid,"GHANDS","gsign4",4.1,1,1,1,1,1,1);
			SetPlayerTeam(playerid, 0);
                        GetPlayerTeam(playerid);
		}
So, at OnPlayerSpawn, I get the team to set team colors ok?

Код:
if(GetPlayerTeam(playerid) == 0) //Grove
{
    SetPlayerColor(playerid,0x33AA33FF);
}
So like, where do I place the set player skin at? As you see above, case 0,1,2 are the skins (addplayerclass). Now, how can I set it to set player's skin? What should I do? if...
Reply


Messages In This Thread
Skin Doubt - by Sting. - 28.01.2018, 18:24
Re: Skin Doubt - by iSteve - 28.01.2018, 18:26
Re: Skin Doubt - by Sting. - 28.01.2018, 19:01
Re: Skin Doubt - by Hunud - 28.01.2018, 20:16
Re: Skin Doubt - by Hypex - 29.01.2018, 00:55
Re: Skin Doubt - by RogueDrifter - 29.01.2018, 01:37
Re: Skin Doubt - by Sting. - 29.01.2018, 01:44
Re: Skin Doubt - by RogueDrifter - 29.01.2018, 02:33
Re: Skin Doubt - by Mugala - 29.01.2018, 12:05
Re: Skin Doubt - by Sting. - 29.01.2018, 17:51

Forum Jump:


Users browsing this thread: 1 Guest(s)