Tads.org IFID Generator

An "IFID" is an Interactive Fiction IDentifier. This serves as a unique ID for a game, akin to the ISBN code for a book, so that Web sites like the IF Archive and IFDB can be certain they're talking about the same game.

The following IFID has been generated for you, to use for a new TADS game project. (It'll work just as well in most other authoring systems that use IFIDs.)

IFID: 886D5ADE-6CFD-447C-89DA-9C93BF6EA03E

To generate a new random IFID, use your browser's Refresh function, or click here.

You should use your IFID when setting up your GameInfo definition for your game. For example, in TADS 2:

   getGameInfo: function
   {
     return ['IFID', '886D5ADE-6CFD-447C-89DA-9C93BF6EA03E',
             'Name', 'My Game',
             ...etc... ];
   }

Or, in TADS 3:

   versionInfo: GameID
     IFID = '886D5ADE-6CFD-447C-89DA-9C93BF6EA03E'
     name = 'My Game'
     // etc
   ;

(The IFID number above was generated randomly, and doesn't contain any information that would identify you personally.)

The IFID system in general is described in detail in the Treaty of Babel. For more information about how TADS uses IFIDs, and about TADS game metadata in general, see Bibliographic Metadata in TADS Games.