
09-10-2001, 04:21 AM
|
|
Registered User
|
Join Date: Aug 2001
Location: U.S.A,California,Milpitas,In A House,In Room,On A Seat,On a Computer
Posts: 157
|
|
|
if (playerenters) {
drawunderplayer;
timeout=0;
}
if (playertouchsme) {
hide;
toweapons Rock Stream;
}
if (weaponfired) {
if (playerdir==0) {
this.oldx=playerx+0.5;
this.oldy=playery-3;
this.way=1;
this.expo=0;
putleaps 2,playerx+0.5,playery-3;
}
if (playerdir==1) {
this.oldx=playerx-3;
this.oldy=playery+0.75;
this.way=2;
this.expo=0;
putleaps 2,playerx-3,playery+0.75;
}
if (playerdir==2) {
this.oldx=playerx+0.5;
this.oldy=playery+4.5;
this.way=3;
this.expo=0;
putleaps 2,playerx+0.5,playery+4.5;
}
if (playerdir==3) {
this.oldx=playerx+4;
this.oldy=playery+0.75;
this.way=4;
this.expo=0;
putleaps 2,playerx+4,playery+0.75;
}
freezeplayer 0.65;
playersprite=33;
timeout=.05;
playermp-=10
}
if (timeout) {
if (playerx<this.oldx&& !onwall(this.oldx+2,this.oldy+1)&&
this.way==4) {
this.oldx+=1;
}
if (playery<this.oldy&& !onwall(this.oldx+1,this.oldy+2)&&
this.way==3) {
this.oldy+=1;
}
if (playerx>this.oldx&& !onwall(this.oldx,this.oldy+1)&&
this.way==2) {
this.oldx-=1;
}
if (playery>this.oldy&& !onwall(this.oldx+1,this.oldy)&&
this.way==1) {
this.oldy-=1;
}
this.expo+=1;
timeout=.05;
}
if (this.oldx>64 ||
this.oldx<0 ||
this.oldy>64 ||
this.oldy<0 ||
onwall(this.oldx,this.oldy) ||
onwall(this.oldx+2,this.oldy) ||
onwall(this.oldx,this.oldy+2) ||
onwall(this.oldx+2,this.oldy+2) ||
onwall(this.oldx+2,this.oldy+1) ||
onwall(this.oldx+1,this.oldy+2) ||
onwall(this.oldx,this.oldy+1) ||
onwall(this.oldx+1,this.oldy)) {
timeout=0;
this.expo=0;
}
if (this.expo==2) {
putleaps 2,this.oldx,this.oldy;
this.expo-=2;
} |
__________________
==========================
I Script Really Good
&
Looking For A NAT Job
==========================
Quote:
That's like a big lugee!
-Evolution The Movie
|
Quote:
Ha Ha Ha Give It Up!
-Cyrus From Bomberman
|
I'm not a Bomy anymore.
I'm a MUTATED BROCLI MONSTER!
(or SIGN MONSTER)
If you make me angry,
I'LL EAT YOU WHOLE!
ME, MUTATED BROCLI MONSTER MASTER
(or SIGN MONSTER)
WILL EAT YOU ALL UP!
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Quest Valley Owner
Looking For Staff
Pm Me
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
O.o Still Have My Braen Damaegd o.O

Thanks To Esiah, He Made This For Me!
Thanks Esiah!
|
|
|
|