IFID Generator

This page randomly generates an IFID for you to use in a new Interactive Fiction project, written in TADS or any other Babel-aware authoring system. The IFID below has just been generated for your use.

Your New IFID: D6EA7A82-795C-43D3-AD05-E4E8E7C09630

Generate a new IFID
What's an IFID?

How to use this IFID in your game

If you're using TADS 3, the IFID goes in your versionInfo object:

   versionInfo: GameID
     IFID = 'D6EA7A82-795C-43D3-AD05-E4E8E7C09630'
     name = 'My Game'
     // etc
   ;

With TADS 2, it goes in your getGameInfo function:

   getGameInfo: function
   {
     return ['IFID', 'D6EA7A82-795C-43D3-AD05-E4E8E7C09630',
             'Name', 'My Game',
             ...etc... ];
   }

If you're using another authoring system, consult your system's user's manual to find out how to use an IFID in your game.