hey having issues using the mod i hold shift and then the number of the boss battle i want to go to and it says its loading but never takes me there what can i do to fix it?
Odd keybinds. I would love to be running, swap my pal with shift + 3 since I run around and swap at the same time and end up in a boss fight.. Also odd sorting of the bosses to join.. Personally I would have done them in the order of appearance. Neat concept though.
The keys aren't chosen for a specific boss. It's just indexes 1-5 from the line Towers = FindAllOf("PalBossTower") in my code. I didn't think about that, sorry for the inconvenience. You can change the keys by opening Scripts/main.lua and changing Key.ONE, {ModifierKey.SHIFT} on lines 2, 5, 8, 10, and 14.
The reason I separated the kits is because some are more cheatsy than others. Personally, I don't like using the OP kit, the builder's kit, or the sphere kit in my gameplay, I think it makes it too easy. So, I wanted to make it optional for people.
Shift + 1 is taking me to Zoe & Grizzbolt but shift+ 5 also does still too. Shift + 2 and Shift + 4 also both seem to take me to Axel & Orserk. Edit: Looks like it's more complicated than just how they match up. After going to fight lilly and lyleen without the mod, shift + 5 now starts the lilly and lyleen fight instead.
It's calling indexes of 1 - 5 as they are loaded by the game. So I find all towers using Towers = FindAllOf("PalBossTower"), then start it with Towers[Index]:RequestBossBattleEntry(LocalPlayer) and Towers[Index]:RequestBossBattleStart(LocalPlayer). The index is which key you press. Every time I use it, I get sent to the same bosses, which is why I thought others would too. Guess it's not the case.
9 comments
Shift + 2 and Shift + 4 also both seem to take me to Axel & Orserk.
Edit:
Looks like it's more complicated than just how they match up.
After going to fight lilly and lyleen without the mod, shift + 5 now starts the lilly and lyleen fight instead.