#include #include versionInfo: GameID name = 'Uncontrolled experiment' byline = 'by He4eT' authorEmail = 'He4eT ' desc = 'A simple demo for TADS 3.' version = '0' IFID = 'F1E9FCB6-84D5-4FFA-B7E6-74458D83018B' showCredit () {" Some credits here. ";} showAbout () {" << desc >>
Set of usefull examples for developers. ";} ; gameMain: GameMainDef initialPlayerChar = me experimentNumber = nil dayNumber = nil showIntro () { cls(); experimentNumber = 10 + rand(100); dayNumber = rand(1000); "\b Experiment <>, day number <>, a cold mechanical voice suddenly interrupts your restless sleep.\b <> Enter instruction if you need a tutorial.\b"; } showGoodbye () { "\bGame over\b"; } ; /* */ #include "src/actor/pc.t" #include "src/action/repair.t" #include "src/item/_bandage.t" #include "src/item/interior.t" /* rooms */ #include "src/room/orangeRoom.t" #include "src/room/orangeBathroom.t" #include "src/item/dentalFloss.t" #include "src/room/yellowRoom.t" #include "src/item/advertisingDisplay.t" #include "src/room/cyanRoom.t" #include "src/item/tape.t" #include "src/room/pinkRoom.t" #include "src/item/labCoat.t" #include "src/item/lockers.t" #include "src/item/elevator.t" #include "src/room/redRoom.t" #include "src/item/dataCable.t" #include "src/actor/surgeryAssistant.t" #include "src/room/blackRoom.t"