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: 1772466C-022C-4562-8E8C-C55666B53556

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 = '1772466C-022C-4562-8E8C-C55666B53556'
     name = 'My Game'
     // etc
   ;

With TADS 2, it goes in your getGameInfo function:

   getGameInfo: function
   {
     return ['IFID', '1772466C-022C-4562-8E8C-C55666B53556',
             '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.