Buying a mushroom plot?

I realize this is a small and inconsequential question, but does anyone know the command to execute or url to visit to buy a mushroom plot?
 

Bale

Minion
I've got this bit in one of my scripts:

PHP:
	string page = visit_url("knoll_mushrooms.php");
	if(page.contains_text("For the low price of 5,000 Meat")) {
		if(my_meat() < 5000 || !user_confirm("You do not have a mushroom plot!\nWould you like to buy one for 5,000 Meat?"))
			abort("No mushroom plot!");
		page = visit_url("knoll_mushrooms.php?action=buyplot");
		cli_execute("refresh status");
	}
 
Top