- Inventory Show All Tabs By Default: So am I the only one who loads up a game, opens an inventory window and for just a moment thinks, "Gah! Where's all my- oh, right, it starts with just the weapons tab selected, gotta switch it to everything..."?
Hence this addon, which tweaks the inventory dialog to have everything selected by default the first time. If you change the selection, it's remembered for the next inventory dialog, as is done currently.
- Tier-1 Short Circuit Option: Just recently encountered the new b43 behavior of skipping you straight to the bottom of a tier-1 dungeon if you've already completed some of them, and decided, "...nah, don't like it." Hence this addon, which adds a new game option "Short-circuit some early dungeons" to enable or disable said behavior.
Code: Select all
Inventory Show All Tabs By Default:
Superload:
mod.dialogs.ShowInventory:
firstDisplay() [to select the 'all-items' tab]
mod.dialogs.ShowEquipInven:
firstDisplay() [as above]
mod.dialogs.ShowStore:
firstDisplay() [as above]
Tier-1 Short Circuit Option:
Hooks:
GameOptions:tabs [to add our game option]
Superload:
mod.class.GameState:
tier1Killed() [to apply our game option]