Bug - Fixed Can't use 2 Love Me, Vol 2 in gCLI anymore

Theraze

Active member
Conditions satisfied after 24 adventures.
Using 1 "I Love Me, Vol. I"...
Finished using 1 "I Love Me, Vol. I".
You acquire an item: "2 Love Me, Vol. 2"
You lose 65 hit points
That's weird. You don't have the Mega Gem.

> debug on

> use 2 love me

> debug off
I could include the file, but all it has is the use 2 love me and debug off lines, not a single thing else. It works if I use it through the relay browser, but any script trying to let mafia use it is currently broken. The current relay link is:
http://127.0.0.1:60081/inv_use.php?pwd&which=3&whichitem=7270

Not sure how that compares to the current use string.
 

Theraze

Active member
Maybe, but BCA is failing to use it and this is the second character to have it fail since the quest updates a few days ago. And BCA uses:
use(1, $item["2 Love Me\, Vol. 2"]);

Which really shouldn't get confused with 2 'I love me' books. And fails to use the item either.

Edit: Here is the failure from the session logs. If you don't believe that it actually failed to process.
use 1 "I Love Me, Vol. I"

place.php?whichplace=palindome&action=pal_drlabel
Took choice 872/1: unknown
choice.php?pwd&whichchoice=872&option=1&photo1=2259&photo2=7264&photo3=7263&photo4=7265
You acquire an item: "2 Love Me, Vol. 2"
You lose 65 hit points
place.php?whichplace=palindome&action=pal_mrlabel

use 1 "2 Love Me, Vol. 2"
You can see that it ran manually, after the following code failed to run it:
Code:
			palindome = visit_url("place.php?whichplace=palindome&action=pal_drlabel");
			palindome = visit_url("choice.php?pwd&whichchoice=872&option=1&photo1=2259&photo2=7264&photo3=7263&photo4=7265");
			use(1, $item["2 Love Me\, Vol. 2"]);
			palindome = visit_url("place.php?whichplace=palindome&action=pal_mrlabel");
 
Last edited:
Top