Don't Escape
I'm a werewolf and it's a full moon. I have to find a way to prevent myself from escaping.
3.84 / 5.00 35,210 ViewsRagnarok Online Jigsaw
Did you play Ragnarok Online? Do you like that game?
3.50 / 5.00 13,494 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.");
}