Choice Adventure Info Missing

driedsponge

New member
I've tried searching for this, but I can't seem to find it, so I apologize if i missed something, but here's my issue.

I was adventuring in the barrel full of barrels today, and the barrel choices (the alternate images showing what each barrel contained) suddenly changed back to their original images. Not only that, but now none of the choice adventure information is showing up in the browser window. I get no extra info on the friars blessings, for instance.

I downloaded mafia again to a different directory, and tried it out using my alt's info, and it works perfectly, so i know it's not the computer. What would cause my choice adventure info to suddenly disappear and how do I go about getting it back? I was hoping to log this run, so i don't want to have to set another version of mafia up.

EDIT: It appears the in-combat choices show up, but it's just a problem with the blessing data and barrels at this point.
 
Last edited:

xKiv

Active member
matcher: "smash=(\\d+)&pwd=(\\w+)'>" +
"<img src='http://images.kingdomofloathing.com/otherimages/mountains/smallbarrel.gif' " +
"border=0 alt=\"An Unsmashed Barrel \\(1\\)\" title=\"An Unsmashed Barrel \\(1\\)\">" );
actual HTML: smash=1&pwd=8dace0b5ded9bcd530f3dfd3379a2769'><img src='/images/otherimages/mountains/smallbarrel.gif' border=0 height=50 width=50 alt="An Unsmashed Barrel (1)" title="An Unsmashed Barrel (1)"></a></td><td>

Differences:
- dropped http://
- added height=50 width=50

Suggested change to the matcher:

Code:
"smash=(\\d+)&pwd=(\\w+)'>" +
"<img src='(http://)?images.kingdomofloathing.com/otherimages/mountains/smallbarrel.gif' " +
"border=0( height=(\\d+) width=(\\d+))? alt=\"An Unsmashed Barrel \\(1\\)\" title=\"An Unsmashed Barrel \\(1\\)\">" );

Will test now.

ETA: works for me
 
Last edited:

jasonharper

Developer
Barrels problem fixed in r8402.

I'm not sure what to make of the other problem, though - the Friars blessings aren't actually choice adventures, and as far as I can tell, mafia has never added spoilers for them. (That seems rather pointless, as the game text pretty clearly tells you what the blessing will do.) Maybe you're thinking of some Greasemonkey script?
 
Top