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;
this.level=#F;
with (getplayer(#t(2)) {
warpto this.x,this.y,this.level;
}
}
}
That better?
Will the this.x & this.y work?