View Single Post
  #1  
Old 04-09-2006, 02:34 AM
Yen Yen is offline
Banned
Yen's Avatar
Join Date: Oct 2005
Location: Nova Scotia, Canada
Posts: 1,085
Yen is an unknown quantity at this point
Send a message via AIM to Yen Send a message via MSN to Yen
npcs object unreadable?

This is REALLY strange..

I've got an NPC with this code:
PHP Code:
function onPlayerEnters() {
  
this.targets "";
  for (
pplayers) {
    
this.targets.add(p);
  }
  if (!
player.level.starts("zodiacworld")) {
    for (
nnpcs) {
      
this.targets.add(n);
    }
  }
  
player.chat this.targets.size();

It's acting like 'npcs' is blank.
npcs.size() returns 0, no matter where I am.

Any ideas?
Reply With Quote