Quote:
Originally Posted by xXziroXx
All classes SHOULD be joined serverside whenever possible, period.
|
PHP Code:
//#CLIENTSIDE
function onPlayerEnters() {
if (player.ismale) this.join("stuff_for_guys");
else this.join("stuff_for_girls");
}
Here is my simple local NPC which
could join classes serverside, but would make my work much more tedious.