Code:visit_url("choice.php?whichchoice=1089&option=1&pwd");
Will this actually work? I've tried it about a dozen different ways when my only option left is to "Perform Service"...
I've tried 3, or 4 different uses of "visit_url", and cant find one that will do this for me.
visit_url("choice.php?whichchoice=1089&option=30&pwd");
council.php
choice.php?forceoption=0
ascend.php?alttext=communityservice
ascend.php?action=ascend&pwd&alttext=communityservice&confirm=on&confirm2=on
afterlife.php
afterlife.php?action=pearlygates
afterlife.php?place=deli
afterlife.php?action=buydeli&whichitem=5046
afterlife.php?place=armory
afterlife.php?action=buyarmory&whichitem=5037
afterlife.php?place=reincarnate
afterlife.php?action=ascend&asctype=3&whichclass=4&gender=1&whichpath=25&whichsign=2
afterlife.php?action=ascend&confirmascend=1&whichsign=2&gender=1&whichclass=4&whichpath=25&asctype=3&noskillsok=1
main.php
boolean cc_ascendIntoCS()
{
if(my_inebriety() <= inebriety_limit())
{
return false;
}
string temp = visit_url("ascend.php?pwd=&confirm=on&confirm2=on&action=ascend&submit=Ascend", true);
temp = visit_url("afterlife.php?action=pearlygates");
temp = visit_url("afterlife.php?action=buydeli&whichitem=5046", true);
temp = visit_url("afterlife.php?place=armory");
if(contains_text(temp, "astral pet sweater"))
{
temp = visit_url("afterlife.php?action=buyarmory&whichitem=5040", true);
}
else
{
temp = visit_url("afterlife.php?action=buyarmory&whichitem=5037", true);
}
temp = visit_url("afterlife.php?place=reincarnate");
int gender = 1;
if(contains_text(temp, "option selected value=2>Female"))
{
gender = 2;
}
temp = visit_url("afterlife.php?action=ascend&asctype=3&whichclass=4&gender=" + gender + "&whichpath=25&whichsign=2", true);
temp = visit_url("afterlife.php?action=ascend&confirmascend=1&asctype=3&whichclass=4&gender=" + gender + "&whichpath=25&whichsign=2&noskillsok=1", true);
return true;
}
For what it is worth, here's what I did to ascend HC CS. Sorry, no documentation. It might be missing a few steps, maybe I ascended before running it? I don't remember any more.BTW, you can turn debugging on and then do thing manually in the relay browser. The debug log will show what URLs were hit.Code:ascend.php?alttext=communityservice ascend.php?action=ascend&pwd&alttext=communityservice&confirm=on&confirm2=on
visit_url("choice.php?whichchoice=1089&option=30&pwd"); //this works to finish run
visit_url("ascend.php?action=ascend&pwd&alttext=communityservice&confirm=on&confirm2=on"); // ascend into valhalla
visit_url("afterlife.php?action=pearlygates"); //open the gates
visit_url("afterlife.php?place=deli&action=buydeli&whichitem=5046"); // buy 6 pack
visit_url("afterlife.php?place=armory&action=buyar mory&whichitem=5041"); // buy astral shirt
visit_url("afterlife.php?action=ascend&place=reincarnate&asctype=2&whichclass=4&gender=1&whichpath=25&whichsign=2&noskillsok=1&confirmascend=1"); // ascend softcore, Sauceror, Male, Customer Service, Wallaby, no skill, trip the rift!
. . . // ascend softcore, Sauceror, Male, Customer Service, Wallaby, no skill, trip the rift!
[/code]
// Ascend, Gates (no variables to change)
visit_url("ascend.php?pwd=&confirm=on&confirm2=on&action=ascend&submit=Ascend", true);
visit_url("afterlife.php?action=pearlygates");
// Deli: 6 pack 5046
visit_url("afterlife.php?action=buydeli&whichitem=5046", true);
// Armory: chapeau 5030 // belt 5042
visit_url("afterlife.php?action=buyarmory&whichitem=5042", true);
// Ascend: SC (2), You Robot (34), Vole (3), Pastamancer (3)
visit_url("afterlife.php?action=ascend&confirmascend=1&gender=1&whichsign=3&whichclass=3&whichpath=34&asctype=2", true);