Aenimus
Member
I'm handling the fight before this.
	
	
	
		
Code in the main script
	
	
	
		
I think I solve my issues by changing the pick URL to visit_url().
But what I don't understand is why I am able to use run_choice() for my LOV stuff, although all LOV choice values are set to 0. Is this because I use visit_url() rather than adventure() or adv1()?
				
			
		Code:
	
	boolean mushgarden_fight_run() {
	int fights = mushgarden_fights();
	print("Preparing to fight Mushroom Garden free fight #" + (fights + 1) + ".", "purple");
	adv1($location[Your Mushroom Garden], -1, "");
	return mushgarden_fights() > fights;
}
	Code in the main script
		Code:
	
		// Mushroom Garden
	if (mushgarden_fight_can()) {
		mushgarden_fight_run();
		mushgarden_pick(5);
		continue;
	}
	I think I solve my issues by changing the pick URL to visit_url().
But what I don't understand is why I am able to use run_choice() for my LOV stuff, although all LOV choice values are set to 0. Is this because I use visit_url() rather than adventure() or adv1()?
			
				Last edited: