00:00
00:00
Newgrounds Background Image Theme

chris3342001 just joined the crew!

We need you on the team, too.

Support Newgrounds and get tons of perks for just $2.99!

Create a Free Account and then..

Become a Supporter!

Reviews for "Turtlerun"

addicting

very fun and addicting, whats your best time wiesi?

Wiesi responds:

oh I think my best is 34'99 seconds :)

Yay!

Love your work dude.. you defiantly know how to make some real addicting games my good friend. Keep up the fantastic games :D

Wiesi responds:

thank you!

Fairly fun

I expected no less from a game genius as yourself. I am surprised I missed this when it first came around, but it was definitley zany enough to be worth a play. I could not quite understand what this was about as it made no sense at all. A turtle, cars, baseballs, what does it all mean? The funniest part was probably when the guy came out and kept saying "Safe!" after I kept narrowly escaping death by being crushed by the baseballs. After awhile, it does become a bit too easy, but the premise is still interesting.

awesome piled with cool face

the turtle is so cute the guy that come outta no where saying safe is funny and a baseball falling of a coconut tree haha its so random

Good game ;)

Without medals it is also great!

Maby I can help you put in the NG-api and copy this code:

import com.newgrounds.API;
import com.newgrounds.APIEvent;
import com.newgrounds.Medal;

// This function will fire when the unlockMedal command is called
function onMedalUnlocked(event:APIEvent) {
if (event.success) {
// get the medal instance
var medal:Medal = event.data.medal;

// trace out what medal was unlocked, and how many points it is worth.
trace("You unlocked '"+medal.name+"'! (value: "+medal.value+" points)");
}
}

// tell the API to use the above listener when a medal is unlocked.
API.addEventListener(APIEvent.MEDAL_U NLOCKED, onMedalUnlocked, this);

// Unlock the medal
API.unlockMedal("My Medal");

And change "My Medal" and "My_Medal" "medal.name" to your medal name!
And change "medal.value" to the points

I hope it helps!

-Bas

Wiesi responds:

Thanks! I will try to use medals in the next game!