View Single Post
  #6  
Old 01-31-2007, 10:12 PM
Riot Riot is offline
Delteria Management
Join Date: Nov 2003
Location: Seminole County, Florida
Posts: 280
Riot is on a distinguished road
You mean..

HTML Code:
with (putnpc2(x, y, "join someclass;"))
{
  this.something = somevar;
  this.somefunc();
}
or
HTML Code:
temp.npc putnpc2(x, y, "join someclass;");
  temp.npc.something = somevar;
  temp.npc.somefunc();
Reply With Quote