command to break hippy stone?

QVamp

Member
Now that it is hidden, every ascension I forget to break the hippy stone. Is there a command that I can put into my login script that will break it?
 

lostcalpolydude

Developer
Staff member
visit_url( "peevpee.php?action=smashstone&confirm=on" );

You might actually want that in a postAscensionScript.
 

Bale

Minion
If it's the first time you break your hippy stone this season, you also need to pledge to a clan before you can fight. I use this in my postAscensionScript:

Code:
		string pvp = visit_url("peevpee.php?confirm=on&action=smashstone&pwd");
		if(pvp.contains_text("Pledge allegiance to"))
			visit_url("peevpee.php?action=pledge&place=fight&pwd");

oh, does post-ascension mean when you've started an new run?

Yes. My postAscensionScript is HERE.
 
Top