Quote:
Originally Posted by Novo
A serveroption with a list of classes should be downloaded on clientside... Preferably before any weapon is executed.
|
Directly to the player?
PHP Code:
//#CLIENTSIDE
function onCreated()
{
temp.classes = {"player", "wow", "yes"};
for (temp.var: temp.classes)
{
player.join(temp.var);
}
}
?