how do you see the new Gabilani Pirate content?

Tubten

Well-Known Member
Jan 10, 2019
77
65
33
tried beating her, tried loosing to her, tried bribing her, each time i only get the same "goo fuck, facefuck, fuck, tail fuck" options, or she just leaves.

update says it's public now, what am i missing?
 

Tubten

Well-Known Member
Jan 10, 2019
77
65
33
If you meet all the prerequisites, I can only assume you're just getting unlucky.
dang, and her ship is really weak compared to mine. took me a solid few minutes of doing nothing but "recharge!" to loose to her.

I'll try again sometime then, thanks for the clarification!
 

ensembien

Member
Jul 27, 2023
15
1
If you want to lose faster, run this in JavaScript console after the fight starts:
Code:
(function(){var s=ships.SHIP; s.energyRaw=0; s.shieldsRaw=0; s.HPRaw=1;})();

And if you don't want to lose, run this before every turn:
Code:
(function(){var s=ships.SHIP; s.energyRaw=s.energyMax(); s.shieldsRaw=s.shieldsMax(); s.HPRaw=s.HPMax();})();

And this is for non-ship fights:
Code:
(function(){var p=pc; p.energyRaw=0; p.lustRaw=p.lustMax(); p.shieldsRaw=0; p.HPRaw=1;})();
Code:
(function(){var p=pc; p.energyRaw=p.energyMax(); p.lustRaw=p.lustMin(); p.shieldsRaw=p.shieldsMax(); p.HPRaw=p.HPMax();})();