View Single Post
  #2  
Old 06-21-2001, 03:19 AM
Termina_GP7 Termina_GP7 is offline
Registered User
Join Date: May 2001
Posts: 155
Termina_GP7 is on a distinguished road
k

heres the LAT Teleporter code -=Did not make this-=


if (playersays(drop LAT Teleporter)) {
destroy;
}
if (playertouchsme) {
toweapons LAT Teleporter;
}
if (weaponfired) {
if (this.inuse=0) {
this.inuse=1;
this.showimg=1;
this.x=playerx;
this.y=playery;
timeout = .05;
} else {
playerx=this.x;
playery=this.y;
this.inuse=0;
}
}
if (this.inuse=0) {
this.showimg=0;
hideimg 0;
}
if (this.showimg=1) {
showimg 0,shadoworb.gif,this.x,this.y;
}
if (this.inuse=1) {
if (timeout) {
if (playerdir=0) {
this.y--;
}
if (playerdir=2) {
this.y++;
}
if (playerdir=1) {
this.x--;
}
if (playerdir=3) {
this.x++;
}
if (this.x>64) {
this.x = 0;
}
if (this.x<0) {
this.x = 64;
}
if (this.y>64) {
this.y = 0;
}
if (this.y<0) {
this.y = 64;
}
timeout = .05;
}
}
__________________

-= Rice Was Here -=
Reply With Quote