View Single Post
  #2  
Old 11-14-2002, 01:36 PM
Python523 Python523 is offline
Banned
Join Date: Aug 2001
Location: Illinois
Posts: 3,498
Python523 is on a distinguished road
its doing the message #v(this.test) before you even set the this.test variable

NPC Code:

putnpc2 x,y,{
if(done){
message #v(this.test);
join class;
}
}
with(npcs[npcscount-1]){
this.test = 3;
callnpc npcscount-1,done;
}



might work or just try setting this.test on the putnpc2 part?

Last edited by Python523; 11-15-2002 at 06:29 AM..
Reply With Quote