Originally Posted by
CodeMyLife
I tried to make a way to stop toon from running in walls forever. Preventing bottish Behaviors is one of my top priority., I do not want me or anyone to get caught because the toon act like a bot.
I've tried PokeRotation before launching update and all was right on my end, I wonder what could be wrong. Could you try with the old Nav Kuukuu? Like just taking the old nav from an earlier version?
About the Non-wild swapping, was this pet in your favorites? priority should sort this way
-- Favorites Sorts
table.sort(CML_PetTable, function(x,y) return x.Favorite < y.Favorite end)
-- Level Sorts
if LevelingPriorityValue == 1 or 3 then
table.sort(CML_PetTable, function(x,y) return x.Level < y.Level end)
end
if LevelingPriorityValue == 2 or 4 then
table.sort(CML_PetTable, function(x,y) return x.Level > y.Level end)
end
-- Wild Sorts
if LevelingPriorityValue == 3 or 4 then
table.sort(CML_PetTable, function(x,y) return x.Wild < y.Wild end)
end
C_PetJournal.SetPetLoadOutInfo(1, CML_PetTable[1].ID)
After doing the sorts, the Pet atop the table is Selected. There should not be any issues with it tbh. Anyone else had problems with Pet Swapper out of combat not taking the selected pets?