Bug - Not A Bug Tea Party choice continually reappears in the CLI.

syrinxlui

Member
At the start of the day I have my .spt script visit the teaparty:
ash visit_url("rabbithole.php?action=teaparty");
ash visit_url("choice.php?pwd&whichchoice=441&option=1&choiceform2=Try+to+get+a+seat");

But then, throughout the day The Mad Tea Party graphics, text, and choice buttons keeps popping up in the CLI. Why is that? The script correctly gets the tea party buff I wanted.
 

lostcalpolydude

Developer
Staff member
Maybe there's something weird about the HTML from the page. If so, the solution is probably typing "clear" in the CLI and it shouldn't show up later. As a guess not really based on any real information, it might show up every time the CLI buffer is reduced in size.

Also, .spt?
 

slyz

Developer
When you execute ASH code in the CLI with the "ash" command, the result will be printed in the CLI. visit_url() returns a string containing the HTML of the page you visited.

To avoid this, replace "ash" by "ashq".
 
Top