View Single Post
  #9  
Old 01-08-2011, 08:41 PM
DustyPorViva DustyPorViva is offline
Will work for food. Maybe
DustyPorViva's Avatar
Join Date: Sep 2003
Location: Maryland, USA
Posts: 9,589
DustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond repute
Send a message via AIM to DustyPorViva Send a message via MSN to DustyPorViva
Quote:
Originally Posted by xXziroXx View Post
Serveroptions are a list of strings, so of course you have to tokenize it to produce an array.
O.o this is what I use for parsing a list of Testbed contacts on testbed:
PHP Code:
function onCreated() {
  
this.attr[10] = serveroptions.contacts;
}
//#CLIENTSIDE
function onCreated() {
  
this.contacts = (this.attr[10]);
}

function 
onPlayerTouchsMe() {
  for (
temp.i:this.contacts) {
    
temp.post @= " " "" NL "";
  }

and it works fine.
Reply With Quote