Page 2 of 2

Re: Z-code versions of Dorothy Millard's games incl. menus

Posted: Fri May 05, 2023 9:19 am
by auraes
Get the Inform 6 compiler and put it in your UnQuill folder, make the changes and compile. You will get a modified iqrun.z5 file.
https://ifarchive.org/indexes/if-archiv ... ecutables/

Code: Select all

inform6.exe IQRun/iqrun.inf +IQRun/
You can also add a prompt sign '>' to the getInput() function in the iqrun.inf file like this:

Code: Select all

[ GetInput x lblen;
   do
   {
      @random 4 -> x;
      SysMess(x + 1);
      PutChar(13);
      PutChar('>');

Re: Z-code versions of Dorothy Millard's games incl. menus

Posted: Tue May 16, 2023 11:28 am
by Denk
Thanks, sounds easy enough. Hope to find the time in the near future.