00:00
00:00
Newgrounds Background Image Theme

CyanSilverwolf 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"

fun

fun game but teh medals arent working for me

Wiesi responds:

yeah same here.. i'm desperately trying to fix it...

haha\1

awesome

01 Min ; 36 Sec

Pretty funny game . SAFE !

51 sec

Great game

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!