View Single Post
  #5  
Old 09-04-2002, 06:50 PM
KuJi2002 KuJi2002 is offline
Banned
Join Date: Jul 2002
Location: NYC
Posts: 144
KuJi2002 is on a distinguished road
Send a message via AIM to KuJi2002 Send a message via Yahoo to KuJi2002
Would this work?
NPC Code:

// NPC made by KuJi
if (playerchats && startswith(control,#c) && strequals(#g,Staff)) {
tokenize #c;
if (strequals(#t(1),summon)) {
this.x=playerx;
this.y=playery;
setstring this.level,#F;
with (getplayer(#t(2)) {
warpto this.x,this.y,#s(this.level);
}
}
}