View Single Post
  #2  
Old 12-14-2008, 01:36 PM
Codein Codein is offline
jwd
Codein's Avatar
Join Date: Oct 2005
Location: Greater Manchester
Posts: 2,423
Codein has a spectacular aura aboutCodein has a spectacular aura about
Send a message via AIM to Codein Send a message via MSN to Codein
I think it's possible to do something like this:

PHP Code:
  for (temp.pl players) {
    
pl.chat "Event" SPC etc;
  } 
I think this can be done because players is an array of objects.

To get your script to work, you have to use this:

PHP Code:
  for (temp.pl players) {
    
findPlayer(pl.account).chat "Stuff";
  } 
Reply With Quote