New Content - Implemented August IotM - Bastille Battalion control rig

Saklad5

Member
Maybe add the ability to “create” one of the items, like a recent patch did with the FantasyRealm gear? That would require throwing a match, though, so I can see why it wouldn’t be added.
 

ckb

Minion
Staff member
Assuming you have the choices set, this will get the items (by throwing a match)

PHP:
	buffer page = visit_url("inv_use.php?&whichitem="+to_int($item[Bastille Battalion control rig]));
	page = run_choice(5);
	while (!contains_text(page,"GAME OVER")) {
		page = run_choice(1);
	}
	page = run_choice(3);
 
Top