The Yo-kai Watch and FINAL FANTASY XIV collaboration event is underway! Join Jibanyan, Whisper, and the other Yo-kai as they gather once more in Eorzea. By befriending them, you can obtain special rewards such as collaborative weapons, minions, and even mounts! But you’d better hurry—these exclusive items are only obtainable during the event! You can find more details on the event itself here: https://na.finalfantasyxiv.com/lodestone/special/2017/youkai-watch/ You can find the updated Yo-kai Watch Quest & Medals profiles on my SVN (in my signature below).
I appreciate this profile. I'm having a bit of trouble with it though. I'm using these profiles and strangely the bot seems to be visiting all of the Fates that are commented out of the XML file. I even removed the lines entirely. You've already appropriately removed (theoretically) the gathering quests. There is another kill quest in shroud that I found kept getting me killed because the bot runs into a cave agrroing way too much. The level requirement appears to be working appropriately ... Example, in the following code: Code: <If Condition="&RobonyanFtypeShroud; == 1"> <ExLog Color="&ExLog;" Name="Yo-kai Watch" Message="Farming Legendary Robonyan F-type Medal(s) in North Shroud..." /> <GetTo ZoneId="154" XYZ="-43.92079, -40.88041, 241.8634" /> <!-- Fallgourd Float --> <While Condition="not HasAtLeast(15179,&RobonyanFtypeMedals;)"> <Dismount/> <WaitTimer WaitTime="3" /> <ExLog Color="&ExLog;" Name="Yo-kai Watch" Message="Checking if Robonyan F-type is summoned..." /> <RunCode Name="SummonRobonyanFtype" /> <WaitTimer WaitTime="3" /> <Fate MinLevel="1" MaxLevel="&MaxFateLevel;"> <FateIds> <FateId>677</FateId> <!-- --> <FateId>676</FateId> <!-- --> <FateId>675</FateId> <!-- --> <FateId>674</FateId> <!-- --> <FateId>634</FateId> <!-- --> <FateId>633</FateId> <!-- --> <FateId>632</FateId> <!-- --> <FateId>631</FateId> <!-- --> <FateId>216</FateId> <!-- --> <FateId>189</FateId> <!-- --> <FateId>188</FateId> <!-- --> <FateId>187</FateId> <!-- --> <FateId>185</FateId> <!-- --> <FateId>184</FateId> <!-- --> <FateId>183</FateId> <!-- --> <!-- <FateId>180</FateId> --> <!-- Gathering --> <FateId>178</FateId> <!-- --> <FateId>174</FateId> <!-- --> </FateIds> </Fate> </While> </If> While the ability to limit levels of fates the bot participates in is effected by <Fate MinLevel=X MaxLevel=Y> The listed fates are ignored and the bot simply attempts to complete any fate that falls in that level range. So the attempt to exclude the gathering fate ID:180 fails. My bot just got stuck doing that particular one. Log file included: grep for: That Which Binds Us Id:180 Also I replaced all hard-coded max fate levels with &MaxFateLevel; so that I could use the grinding as an opportunity to level other classes however the issue was occurring before I made any changes. In vim I : %s/MaxLevel=\"[0-9]*\"/MaxLevel="\&MaxFateLevel;"/g and then I added a declaration of MaxFateLevel in the beginning. So that I only had to change the MaxDesired fate level in one place (because I'm using this as an opportunity to level alts while grinding medals and I kept dying)