Heh, I forgot to mention my level warper in there

And just because i'm feeling like doing so I'll now post the script of my personal version of the admin boots:
NPC Code:
// Antagos Sky Dwellers (Edited by Grim Squeaker)
//
// ================================================
//
// Changes: The NPC now uses keydown instead of playersprite and playerdir.
// You can also if you press and hold 'A' you'll walk at
// normal speed. (Only works when NPCW is active)
if (playerenters&&!isweapon) {
if (hasweapon(Sky Dwellers)) {
hidelocal;
dontblocklocal;
}
else {
showlocal;
}
}
if (playertouchsme&&visible) {
toweapons Sky Dwellers;
hidelocal;
dontblocklocal;
}
if (weaponfired||firedonhorse) {
if (this.active=0) {
this.active=1;
timeout = 0.05;
setgif flyboots.gif;
}
else {
this.active=0;
setgif flyboots2.gif;
}
}
if (timeout&&this.active=1) {
if (this.mode=0) {
if (keydown(0)) {
playery--;
playerdir = 0;
}
if (keydown(1)) {
playerx--;
playerdir = 1;
}
if (keydown(2)) {
playery++;
playerdir = 2;
}
if (keydown(3)) {
playerx++;
playerdir = 3;
}
}
if (keydown(6)) {
if (this.mode=0) this.mode=1;
}
else {
this.mode=0;
}
timeout = 0.05;
}