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.74 / 5.00 29,647 ViewsRagnarok Online Jigsaw
Did you play Ragnarok Online? Do you like that game?
3.53 / 5.00 12,794 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.");
}