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: 1666E118-53B2-43C6-BA05-A89243CD9DEA

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 = '1666E118-53B2-43C6-BA05-A89243CD9DEA'
     name = 'My Game'
     // etc
   ;

With TADS 2, it goes in your getGameInfo function:

   getGameInfo: function
   {
     return ['IFID', '1666E118-53B2-43C6-BA05-A89243CD9DEA',
             '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.