How do I stop my mission screen [solved]
Posted: Thu Mar 10, 2011 8:53 pm
I'm doing a little mission thing (my first) and I've got stuck...or at least my mission screen has. Pressing 'Space' doesn't do anything. I think looking around the board it's stuck in a sort of loop, and pressing ' space' is just triggering it again.
How do I make 'Press Space' work, please?
Code: Select all
this.missionScreenOpportunity = function ()
{
if (player.ship.dockedStation.isMainStation)
{
if (galaxyNumber == 5 && system.ID == 202)
{
mission.runScreen({
titleKey: "spacewreck_title",
messageKey: "spacewreck_start",
model: "anaconda"
})
}
}
};