View Single Post
  #2  
Old 11-03-2006, 04:08 PM
Joey_P2P Joey_P2P is offline
Banned
Join Date: Oct 2006
Posts: 36
Joey_P2P is on a distinguished road
Quote:
Originally Posted by Novo View Post
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);
  }

?
Reply With Quote