commit 54fd7199fb4292aa336d31c55959b433cc033092 Author: He4eT Date: Tue Dec 10 02:55:47 2024 +0100 Initial commit 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