|
DataMuseum.dkPresents historical artifacts from the history of: DKUUG/EUUG Conference tapes |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about DKUUG/EUUG Conference tapes Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - downloadIndex: ┃ F T ┃
Length: 1625 (0x659) Types: TextFile Names: »FIX#1«
└─⟦a0efdde77⟧ Bits:30001252 EUUGD11 Tape, 1987 Spring Conference Helsinki └─ ⟦this⟧ »EUUGD11/euug-87hel/sec6/larn/FIX#1«
In larn 12, you could drop a huge number of gold pieces, and the sanity check would let you through, allowing you to drop much more gold tahn you had, and thereby decrement your current gold, and hence get a huge amount. Repeat By: Play larn, and drop gold. When it asks how much, type any number with 12 digits or more. It will tell you that you have dropped a huge negative amount, and you current holdings will be so huge 12 digit number. The actual gold dropped will be ~1024. AT this point it is quite trivial to purchase whatever you might like, and kill off all the monsters. (watch going down the Volcano with 192,000,000,000 gold pieces. Gold is rather heavy, and that much weighs millions!). Fix by: applying this patch: *** main.c Thu Jan 29 12:15:24 1987 --- main.c~ Sun Aug 10 20:45:46 1986 *************** *** 880,891 while (i != '\n') { if (i=='\033') { scbr(); lprcat(" aborted"); return(0); } ! /* Fixed bug allowing you to drop 999999999 and ! wrap the long around, getting a huge fortune, ! but causing the program to think we dropped 0. ! esl!cydrome!mac */ ! if ((i <= '9') && (i >= '0') && (amt<99999999)) ! amt = amt*10+i-'0'; i = getchar(); } scbr(); return(amt); --- 880,887 ----- while (i != '\n') { if (i=='\033') { scbr(); lprcat(" aborted"); return(0); } ! if ((i <= '9') && (i >= '0') && (amt<999999999)) ! amt = amt*10+i-'0'; i = getchar(); } scbr(); return(amt); -- Michael Mc Namara ESL Incorporated ARPA: mac%esl@lll-lcc.ARPA