New Skin Help! rep+
#3

Quote:
Originally Posted by OscarJohnson
Посмотреть сообщение
When i add the new skin from 300 to 311 the old faction skins getting remove why?

im using this codes:
Код:
stock IsValidSkin(skinid)
{
	if(skinid < 0 || skinid > 311)
	    return 0;

	switch(skinid)
	{
	    case
	    71, 163, 164, 165, 166 265, 266, 267, 274, 275, 276,
		277, 278, 279, 280, 281, 282, 283, 284,
		285, 286, 287, 288, 300, 301, 306, 307,
		308, 309, 310, 311: return 0;
	}

	return 1;
}
You should try this instead since the 300 - 319 skin is still unavailable. Maybe in the next update this will go fine I guess

Код:
stock IsValidSkin(skinid)
{
	if(skinid < 0 || skinid > 299)
	    return 0;

	switch(skinid)
	{
	    case
	    71, 265, 266, 267, 274, 275, 276,
		277, 278, 279, 280, 281, 282, 283, 284,
		285, 286, 287, 288,
		: return 0;
	}

	return 1;
}
Reply


Messages In This Thread
New Skin Help! rep+ - by OscarJohnson - 28.05.2015, 20:39
Re: New Skin Help! rep+ - by OscarJohnson - 29.05.2015, 09:59
Re: New Skin Help! rep+ - by Konverse - 29.05.2015, 10:09
Re: New Skin Help! rep+ - by OscarJohnson - 29.05.2015, 10:21
Re: New Skin Help! rep+ - by bgedition - 29.05.2015, 10:50
Re: New Skin Help! rep+ - by OscarJohnson - 29.05.2015, 11:19
Re: New Skin Help! rep+ - by OscarJohnson - 29.05.2015, 12:55
Re: New Skin Help! rep+ - by SoFahim - 29.05.2015, 16:32
Re: New Skin Help! rep+ - by OscarJohnson - 29.05.2015, 21:37
Re: New Skin Help! rep+ - by Alex Magaсa - 29.05.2015, 21:43

Forum Jump:


Users browsing this thread: 1 Guest(s)