mirror of
https://github.com/He4eT/simple-tads-game.git
synced 2026-05-04 17:07:24 +00:00
Initial commit
This commit is contained in:
commit
54fd7199fb
2 changed files with 41 additions and 0 deletions
26
index.t
Normal file
26
index.t
Normal file
|
|
@ -0,0 +1,26 @@
|
||||||
|
#include <adv3.h>
|
||||||
|
#include <en_us.h>
|
||||||
|
|
||||||
|
versionInfo: GameID
|
||||||
|
name = 'The Game'
|
||||||
|
byline = 'by Author'
|
||||||
|
authorEmail = 'Author <author@fake.org>'
|
||||||
|
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
|
||||||
|
|
||||||
|
;
|
||||||
15
theGame.t3m
Normal file
15
theGame.t3m
Normal file
|
|
@ -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
|
||||||
Loading…
Add table
Add a link
Reference in a new issue