26.09.2012, 16:34
Well
return 0 = it will not return any value means you will not be spawned
change it to
return 1 means it will return a value which will let you move to the next function
pawn Код:
public OnPlayerRequestClass(playerid, classid)
{
return 0;
}
change it to
pawn Код:
public OnPlayerRequestClass(playerid, classid)
{
return 1;
}