24.05.2016, 18:04
Comment this line
Still crashing ? The error doesn't come from here;
Anymore crashing ?
» Did you add some skin here :
----------------------
By the way, show OnPlayerSpawn
PHP код:
if(!IsInvalidSkin(i)) continue;
Anymore crashing ?
» Did you add some skin here :
PHP код:
stock IsInvalidSkin(skin)
{
#define MAX_INVALID_SKINS 15
new invalidSkins[MAX_INVALID_SKINS] =
{
// SET YOUR INVALID SKINS HEREEEEEE
2,3,6,4,5,9,8,7 // Example | Find skins id HERE : https://sampwiki.blast.hk/wiki/Skins:All...4.96353749
};
for (new i = 0; i < MAX_INVALID_SKINS; i++)
{
if (skin == invalidskinSkins[i] || skin > 0 || skin <= 300 ) return true;
}
return false;
}
By the way, show OnPlayerSpawn