Spark-Pro's Banner
Spark-Pro

Age/Gender: 14, Male
Location: Milton, Canada
Job: Student

Don't watch anything I've made.

Newgrounds Stats

Sign-Up Date:
10/4/06

Level: 8
Aura: Neutral

Rank: Town Watch
Blams: 23
Saves: 113
Rank #: 49,489

Whistle Status: Normal

Exp. Points: 650 / 710
Exp. Rank #: 58,341
Voting Pow.: 5.04 votes

BBS Posts: 8 (0.01 per day)
Flash Reviews: 33
Music Reviews: 2
Trophies: 0
Stickers: 0

All Flash Reviews

33 Reviews | 3 w/ Responses

Newer Older

Page: [ 1 | 2 | 3 | 4 ]


Score: 10
Dadgame

"Loved it!"

submission: Dadgame
date: September 2, 2009

I like how you added stuff from your other submissions!

Rate this review:
Helpful!
Useless.
Flag as abusive.
No users have weighed in on this review.

Score: 7
Platformer Tutorial

"Nice Tutorial"

date: July 14, 2009

But a lot of problems. I edited the script for the movement and I ended up with this and it works for me:
onClipEvent(load) {
var speed:Number = 10;
var walk:Number = 0;
var grav:Number = 0;
var falling:Number = 0;
var jumped:Boolean = false;
var jumpHeight:Number = 15;
var touchingGround:Boolean = false;
var scale:Number = _xscale;
}
onClipEvent(enterFrame) {
if (!touchingGround) {
grav++;
this._y += grav;
} else {
grav = 0;
}}
onClipEvent(enterFrame) {
if (_root.ground.hitTest(_x,_y,true)) {
touchingGround = true;
} else {
touchingGround = false;
}}
onClipEvent(enterFrame) {
if (Key.isDown(Key.LEFT)) {
_x -= speed;
this.gotoAndStop(2);
_xscale = -scale;
}}
onClipEvent(enterFrame) {
if (Key.isDown(Key.RIGHT)) {
_x += speed;
this.gotoAndStop(2);
_xscale = +scale;
}}
onClipEvent(enterFrame) {
if (jumped) {
falling += 0.5;
_y += falling;
if(touchingGround) {
jumped = false;
}
}else{
if(Key.isDown(Key.UP)){
jumped = true;
falling = -jumpHeight;
this.gotoAndStop(3);
}}
if ((Key.isDown(Key.UP)) and (Key.isDown(Key.LEFT))) {
this.gotoAndStop(3);
}}
onClipEvent(enterFrame) {
if ((Key.isDown(Key.UP)) and (Key.isDown(Key.RIGHT))) {
this.gotoAndStop(3);
}}
onClipEvent(enterFrame) {
if ((!Key.isDown(Key.UP)) and (!touchingGround)) {
this.gotoAndStop(3);
} else if ((Key.isDown(Key.UP)) and (!touchingGround)) {
this.gotoAndStop(3);
}}
onClipEvent(enterFrame) {
if ((_currentframe == 3) and (touchingGround)) {
gotoAndStop(1)
}
}
onClipEvent (keyUp) {
gotoAndStop(1);

Rate this review:
Helpful!
Useless.
Flag as abusive.
People find this review helpful!

Score: 8
ActionScript 2 Tutorial

"Very nice Tutorial!"

date: July 13, 2009

Would've liked a better Movement section though. I was looking for a tutorial that would teach something like 'when you press right, the character does a walking-right animation etc.' tutorial. Other than that, awesome tutorial! :)

Rate this review:
Helpful!
Useless.
Flag as abusive.
People find this review helpful!

Score: 10
Cooking Sama

"Nice!"

submission: Cooking Sama
date: June 17, 2009

Yay for tenticle porn!

Rate this review:
Helpful!
Useless.
Flag as abusive.
People think this is a useless review.

Score: 10
Saturday Morning Watchmen

"Rorschach's friends with the animals"

date: March 23, 2009

Favourite part.

Rate this review:
Helpful!
Useless.
Flag as abusive.
No users have weighed in on this review.

Score: 10
This Game is a Joke 2

"Well,"

date: January 12, 2009

A sequel would be nice, but a lemon wearing rollerblades would be twice as nice. Maybe combining the too would make it the bestest?

Rate this review:
Helpful!
Useless.
Flag as abusive.
People find this review helpful!

Score: 9
We Are Newgrounds

"Interesting."

submission: We Are Newgrounds
date: December 22, 2008

Never heard of any of 'em.

Rate this review:
Helpful!
Useless.
Flag as abusive.
People find this review helpful!

Score: 8
LoopyLoops Kitchen

"That's cool"

submission: LoopyLoops Kitchen
date: November 25, 2008

I didn't actually get it at first, but then I started clicking things and ended up making the Mario theme. Wish I knew I could save my song.

Rate this review:
Helpful!
Useless.
Flag as abusive.
People find this review helpful!

Score: 9
Twatlight

"Bang On"

submission: Twatlight
date: November 24, 2008

Exactly what I thought. That is why I didn't go to see it because I knew I would tear off my scrotum.

Rate this review:
Helpful!
Useless.
Flag as abusive.
People think this is a useless review.

Score: 10
Chris & Harry

"Chris, Harry, That was epic."

submission: Chris & Harry
date: November 11, 2008

Epic to the extreme.

Rate this review:
Helpful!
Useless.
Flag as abusive.
No users have weighed in on this review.

Newer Older

Page: [ 1 | 2 | 3 | 4 ]