Code for various areas

StoreKeeper

New member
I'm trying to improve my breakfast script with the following items:

Visit the Friars to get a blessing.
Visit the arena to get a buff.
Visit the clan snack machine to get snacks.

I have figured out the code for determining which snack/blessing/buff to get. I just don't know how to have the script go get them.

Any help, please?
 

Camber

Member
Here are the first 2:

ASH:

PHP:
if (contains_text(visit_url("questlog.php?which=2"),"cleansed the taint"))
	visit_url("friars.php?action=buffs&bro=2&pwd=");
/*
--- F R I A R   B L E S S I N G ---
bro=1 : Brother Flying Burrito		(+food drops)
bro=2 : Brother Corsican		(+fam. exp)
bro=3 : Brother Smothers		(+booze drops)
*/


This will get Winklered if you completed the arena as a fratboy:

PHP:
  if (get_property("sidequestArenaCompleted") == "fratboy") cli_execute("concert 2");

Other options for 'concert'

> help concert
concert m[oon'd] | d[ilated pupils] | o[ptimist primal] | e[lvish] | wi[nklered] | wh[ite-boy angst]
 

Bale

Minion
The help command is good.

Code:
[COLOR="#808000"]> help snack[/COLOR]

chips type [,type [,type]] - buy chips from your clan's snack machine
 
Last edited:
Top