Strike Force Heroes 2
The explosive sequel to the hit game Strike Force Heroes!
3.95 / 5.00 11,489 ViewsObsolescence
Defeat the enormous mechanical beasts--and become one of them.
4.04 / 5.00 50,242 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);