Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alterecco/489579 to your computer and use it in GitHub Desktop.
Save alterecco/489579 to your computer and use it in GitHub Desktop.
(block nil
(dsf/new-screen 'abandoned-station)
(dsf/name '(objGetName gSource))
(dsf/description "You are docked with an abandoned cargo crate.")
(dsf/add-action 'loot "Loot" 'L '(dsf/show-screen 'loot))
(dsf/add-action 'jettison "Jettison" 'J '(dsf/show-screen 'jettison))
(dsf/add-action 'undock "Undock" 'U '(dsf/exit))
(dsf/default-action 'loot)
(dsf/cancel-action 'undock)
(dsf/show-screen)
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment