613 "Shoot the cameras to stop more troopers being alerted to your presence." //Hints only in here. state Base { Conditions { if FreePlay == 1 goto FreePlay //608 "To access some areas, you need to look like a Stormtrooper. Go to the hat machine and press [CIRCLE] to put on a Stormtrooper helmet." if CurrentHintId != 608 and if HintAvailable "608" == 1 and if EitherPlayerInTriggerArea "Hint2_3" == 1 and if DoorOpened "storm_door1" == 0 and if EitherPlayerWearingHelmet == 0 goto SetHintOn_608 if CurrentHintId == 608 and if EitherPlayerInTriggerArea "Hint2_3" == 0 goto CancelHint if CurrentHintId == 608 and if DoorOpened "storm_door1" == 1 goto CancelHint if CurrentHintId == 608 and if EitherPlayerWearingHelmet == 1 goto CancelHint if HintComplete "608" == 0 and if DoorOpened "storm_door1" == 1 goto SetHintComplete_608 } Actions { } } state FreePlay { Conditions { } Actions { } } state CancelHint { Conditions { } Actions { CancelHint SetState "Base" } } state SetHintOn_608 { Conditions { } Actions { SetHint "id=608" SetState "Base" } } state SetHintComplete_608 { Conditions { if CurrentHintId == 608 goto CancelHint if CurrentHintId != 608 goto Base } Actions { SetHintComplete "id=608" } }