Update sorceress_leveling.go
- Updated fire leveling Sorc to use firebolt instead of icebolt, allowing sorc to use firebolt starting at level 1.
- Updated the stat selection to get a balance of stats
- Removed town of portal being a required key binding, allowing a fresh character to be started in the three leveling files (Sorc, lightning sorc, and paladin)
To not create a bunch of extra PRs, could you please amend the following in this PR to remove TP from being a required keybind? This stops the error popup on starting a fresh character. The logic is already in other scripts that auto buys the tome and auto binds it.
update:
requireKeybindings := []skill.ID{skill.TomeOfTownPortal}
to:
requireKeybindings := []skill.ID{}
To not create a bunch of extra PRs, could you please amend the following in this PR to remove TP from being a required keybind? This stops the error popup on starting a fresh character. The logic is already in other scripts that auto buys the tome and auto binds it.
update:
requireKeybindings := []skill.ID{skill.TomeOfTownPortal}to:requireKeybindings := []skill.ID{}
Completed, thanks for the feedback, went ahead and grabbed the two other leveling go files as well.