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,818 ViewsMini Commando
Action adventure game with nazi enemies in the second world war.
3.96 / 5.00 21,015 Viewsimport com.newgrounds.API;
import com.newgrounds.APIEvent;
// this is our event listener
function onHostBlocked(event:APIEvent):void {
trace("This host is not allowed to use this game!");
// tell the API we no longer need this listener
API.removeEventListsner(APIEvent.HOST_BLOCKED);
}
// tell the api to run the above function when
// a HOST_BLOCKED event triggers
API.addEventListener(APIEvent.HOST_BLOCKED, onHostBlocked);import com.newgrounds.API;
import com.newgrounds.APIEvent;
// this is our event listener
function onHostBlocked(event:APIEvent) {
trace("This host is not allowed to use this game!");
// tell the API we no longer need this listener
API.removeEventListener(APIEvent.HOST_BLOCKED, this);
}
// tell the api to run the above function when
// a HOST_BLOCKED event triggers
API.addEventListener(APIEvent.HOST_BLOCKED, onHostBlocked, this);