BackDoor- Door 1
You find yourself in a strange house with only a man on the phone as a guide.
4.13 / 5.00 25,821 ViewsMini Commando
Action adventure game with nazi enemies in the second world war.
3.96 / 5.00 21,021 Viewsimport com.newgrounds.API;
import com.newgrounds.Medal;
var medal:Medal = API.getMedal(medal_name:String);
This call gets a Medal instance using the medal's name.import com.newgrounds.API;
import com.newgrounds.Medal;
// get the medal
var medal:Medal = API.getMedal("My Medal");
// let us know if the medal is unlocked or not
if (medal.unlocked) {
trace(medal.name+" is unlocked!");
} else {
trace(medal.name+" is not unlocked.");
}