<?xml version="1.0" encoding="utf-8"?><waypoints>
<onLoad>

	--==========   		This waypoint will simply buy Blessing of the Flower God from   					===========--
	--==========   		Adam in Varanas Central. It will buy as many as it can until your bags are full.   	===========--
	--==========   																						   	===========--
	--==========   		Note, however that there is no check to ensure you have enough of whatever			===========--
	--==========   			Currency you use to buy it. (Hearts I think?) 								   	===========--
	--==========   			If you don't have enough it'll	get stuck in a loop.							===========--						
	
	function FG()
		blankslots = inventory:itemTotalCount(0)
		FlowersToGet = (blankslots*10)
		repeat
			inventory:update();
			player:target_NPC("Adam");
			yrest(500);
			RoMScript("ChoiceOption(2);");
			yrest(500);
			RoMScript("ChoiceOption(1);");
		until inventory:itemTotalCount(203024) >= FlowersToGet
		printf("\nCollected "..FlowersToGet.." Blessing of the Flower God\n")
	end

	FG()
	error("Script Completed.")
</onLoad>
</waypoints>