Need help for one thing ..
#3

Try using this for all skins:
pawn Код:
public OnGameModeInit()
{
    for(new i = 0; i < 299; i++)
    {
        if(IsValidSkin(i))
        {
            AddPlayerClass(i,0.0,0.0,0.0,0.0,-1,-1,-1,-1,-1,-1);
        }
    }
    return 1;
}
With this stock:
pawn Код:
stock IsValidSkin(SkinID)
{
    if(0 < SkinID < 300)
    {
        switch(SkinID)
        {
            case 3..6, 8, 42, 65, 74, 86, 119, 149, 208, 273, 289: return 0;
        }
        return 1;
    }
    return 0;
}
Should have the desired effect.
Reply


Messages In This Thread
Need help for one thing .. - by dundolina - 20.10.2011, 17:39
Re: Need help for one thing .. - by Kostas' - 20.10.2011, 17:44
Re: Need help for one thing .. - by Stigg - 20.10.2011, 17:45
Re: Need help for one thing .. - by dundolina - 20.10.2011, 17:54
Re: Need help for one thing .. - by Mr_Scripter - 20.10.2011, 17:58

Forum Jump:


Users browsing this thread: 2 Guest(s)