Age/Gender: 17, Male
Job: none
hi to all of you!!
Newgrounds Stats
Whistle Status: Normal
Exp. Points: 130 / 180
Exp. Rank #: 202,459
Voting Pow.: 3.75 votes
BBS Posts: 15 (0.01 per day)
Flash Reviews: 21
Music Reviews: 4
Trophies: 0
Stickers: 0
Latest Flash Reviews
the car script was kind of weird, so i tweaked it a bit
//These are the cars variables.
onClipEvent (load) {
speed=0;
}
//This makes the car move forward.
onClipEvent (enterFrame) {
if (Key.isDown(Key.SPACE)&& _root.person._visible==false) {
speed += 1;
}
//This makes the car move backwards.
if (Key.isDown(Key.UP)&& _root.person._visible==false) {
speed -= 1;
}
if (Key.isDown(Key.DOWN)&& _root.person._visible==false) {
speed += 1;
}
//The car will start to slow down after the speed of 25
if (Math.abs(speed)>25) {
speed *= .6;
}
// This will change the angle of the car
if (Key.isDown(Key.LEFT)&& _root.person._visible==false&& speed!=0) {
_rotation -= 15;
}
if (Key.isDown(Key.RIGHT)&& _root.person._visible==false&& speed!=0) {
_rotation += 15;
}
// This will make the car move
speed *= .98;
x = Math.sin(_rotation*(Math.PI/180))*spe ed;
y = Math.cos(_rotation*(Math.PI/180))*spe ed*-1;
if (!_root.move.hitTest(_x+x, _y+y, true)) {
_x += x;
_y += y;
} else {
speed *= -.6;
}
}
//Thats it! Dont forget to give it the instance name of car!
- Rate this review:
- Helpful!
- Useless.
- Flag as abusive.
a couple of pointers for people-
don't try to stack up huge amounts of barrels when the devils are near by, it's paractically suicide
the pistol is a powerful weopon when you get the fast fire and double damage upgrades
use the walls do create a small fortress from which you can manage zombie attacks.
for the creator-
add a save feature
make new types of enemies with special powers (vampires,werewolves, etc.)
add vehicles
add bigger levels.
- Rate this review:
- Helpful!
- Useless.
- Flag as abusive.
it's obvious when you first start moving that allot of efort when into it. good job with the physics!
- Rate this review:
- Helpful!
- Useless.
- Flag as abusive.
Latest Audio Reviews
in grammachnophobia you play as a spider and a brown recluse is a type of spider. any connections?
Author's Response:
uh yeah, although the spider in grammacnophobia is not a brown recluse. i just like the name. :) plus, they're deadly as hell.
- Rate this review:
- Helpful!
- Useless.
- Flag as abusive.
second only to kurt cobain/nirvana
Author's Response:
wow, now that's a heavy-ass compliment!
thanx, man
- Rate this review:
- Helpful!
- Useless.
- Flag as abusive.
wow! this is good!
Author's Response:
Wow! Thanks!
- Rate this review:
- Helpful!
- Useless.
- Flag as abusive.