From 54fd7199fb4292aa336d31c55959b433cc033092 Mon Sep 17 00:00:00 2001 From: He4eT Date: Tue, 10 Dec 2024 02:55:47 +0100 Subject: [PATCH] Initial commit --- index.t | 26 ++++++++++++++++++++++++++ theGame.t3m | 15 +++++++++++++++ 2 files changed, 41 insertions(+) create mode 100644 index.t create mode 100644 theGame.t3m diff --git a/index.t b/index.t new file mode 100644 index 0000000..1cabf4d --- /dev/null +++ b/index.t @@ -0,0 +1,26 @@ +#include +#include + +versionInfo: GameID + name = 'The Game' + byline = 'by Author' + authorEmail = 'Author ' + desc = 'This is an example of how to start a new game project. ' + version = '0' +; + +gameMain: GameMainDef + initialPlayerChar = me + showIntro() { + cls(); + "This is the intro text.\b"; + } +; + +firstRoom: Room 'Starting Room' + "This is the boring starting room." +; + ++me: Actor + +; diff --git a/theGame.t3m b/theGame.t3m new file mode 100644 index 0000000..bf1ec5d --- /dev/null +++ b/theGame.t3m @@ -0,0 +1,15 @@ +-D LANGUAGE=en_us +-D MESSAGESTYLE=neu +-D INSTRUCTIONS_MENU + +-FC +-Fy obj -Fo obj + +-o theGame.t3 + +-lib system +-lib adv3/adv3 +-x exits +-x score +-x hintsys +-source index