View Single Post
  #2  
Old 06-22-2011, 09:56 PM
0PiX0 0PiX0 is offline
Coder
0PiX0's Avatar
Join Date: Jan 2011
Posts: 130
0PiX0 is a jewel in the rough0PiX0 is a jewel in the rough
Seems somewhat similar to this issue:

PHP Code:
for (temp.plfindlevel("somelevel.nw").players) {
  
//does not work
  
temp.pl.findweapon("myweapon").trigger("Event");

  
//works
  
with (temp.pl) {
    
findweapon("myweapon").trigger("Event");
  }

Reply With Quote