Skin Selection
#1

How to make skins < Women Men >. E.g. The left button has skins for women and the right button has skins for men.
I have to do it on variables? Skins_Women and Skins_Men.
Reply
#2

Edit: I mean the class of women and men.
Reply
#3

Okay. I wanted to use AddPlayerClass
Reply
#4

How can I use this for AddPlayerClass in OnGameModeInit ?
Reply
#5

He wants to make clicking the left button are women's skins and the right men skins button. HELP!
Код:
public OnGameModeInit()
{
	for(new i, j = sizeof(g_aMaleSkins); i < j; i++) 
	{
		AddPlayerClass(g_aMaleSkins[i], -1, -1, -1, -1, -1, -1, -1, -1, -1, -1);
	}
	for(new i, j = sizeof(g_aFemaleSkins); i < j; i++) 
	{
		AddPlayerClass(g_aFemaleSkins[i], -1, -1, -1, -1, -1, -1, -1, -1, -1, -1);
	}
	return 1;
}
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)