phreddrickk
Member
Here are some snippets from the CLI:
Here, neither "use" or directly visiting inv_use.php resulted in handlingChoice returning true, despite displaying the encounter name in the CLI. Maybe this is because it's an escapable choice? But with the autumn-aton, I can get handlingChoice to return true:> js use(Item.get("Leprecondo")); handlingChoice();
Using 1 Leprecondo...
Encounter: Heimdall's Footstool's Condo
Finished using 1 Leprecondo.
Returned: false
> js visitUrl(`inv_use.php?whichitem=${Item.get("Leprecondo").id}&pwd`); handlingChoice();
Encounter: Heimdall's Footstool's Condo
Returned: false
Then there's the matter of this:> js visitUrl(`inv_use.php?whichitem=${Item.get("Autumn-Aton").id}&pwd`); handlingChoice();
Returned: true
When I manually completed the choice using visit_url (or do this in my browser), mafia doesn't update upon completing and exiting the choice. It only updates when I visit the choice anew for the first time again.> js use(Item.get("Leprecondo")); visitUrl("choice.php?whichchoice=1556&pwd&option=1&r3=27&r2+13&r1=5&r0=22"); getProperty("leprecondoInstalled");
Using 1 Leprecondo...
Encounter: Heimdall's Footstool's Condo
Finished using 1 Leprecondo.
Encounter: Heimdall's Footstool's Condo
Returned: 0,0,0,0
> js use(Item.get("Leprecondo"));
Using 1 Leprecondo...
Encounter: Heimdall's Footstool's Condo
Preference leprecondoInstalled changed from 0,0,0,0 to 22,5,0,27
Finished using 1 Leprecondo.
Returned: true