31.07.2009, 21:51
Can someone give me a script to lock a skin, so that say, leader of Grove has the sweet skin and no one else can use it
new Class[MAX_PLAYERS];
public OnPlayerRequestClass(playerid, classid)
{
Class[playerid] = classid;
return 1;
}
public OnPlayerRequestSpawn(playerid)
{
if(Class[playerid] == CLASSID) return 0;
return 1;
}