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: AC303D66-267E-472A-A961-07880A2B9573

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 = 'AC303D66-267E-472A-A961-07880A2B9573'
     name = 'My Game'
     // etc
   ;

With TADS 2, it goes in your getGameInfo function:

   getGameInfo: function
   {
     return ['IFID', 'AC303D66-267E-472A-A961-07880A2B9573',
             '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.