diff --git a/runelite-client/src/main/java/net/runelite/client/plugins/menuentryswapper/MenuEntrySwapperConfig.java b/runelite-client/src/main/java/net/runelite/client/plugins/menuentryswapper/MenuEntrySwapperConfig.java index d460e87d1a..5272f8331a 100644 --- a/runelite-client/src/main/java/net/runelite/client/plugins/menuentryswapper/MenuEntrySwapperConfig.java +++ b/runelite-client/src/main/java/net/runelite/client/plugins/menuentryswapper/MenuEntrySwapperConfig.java @@ -48,6 +48,17 @@ public interface MenuEntrySwapperConfig extends Config @ConfigItem( position = 1, + keyName = "swapBirdhouseEmpty", + name = "Birdhouse", + description = "Swap Interact with Empty for birdhouses on Fossil Island" + ) + default boolean swapBirdhouseEmpty() + { + return true; + } + + @ConfigItem( + position = 2, keyName = "swapBones", name = "Bury", description = "Swap Bury with Use on Bones" @@ -58,7 +69,7 @@ public interface MenuEntrySwapperConfig extends Config } @ConfigItem( - position = 2, + position = 3, keyName = "swapCatacombEntrance", name = "Catacomb entrance", description = "Swap Read with Investigate on Catacombs of Kourend entrance" @@ -69,7 +80,7 @@ public interface MenuEntrySwapperConfig extends Config } @ConfigItem( - position = 3, + position = 4, keyName = "swapChase", name = "Chase", description = "Allows to left click your cat to chase" @@ -80,7 +91,18 @@ public interface MenuEntrySwapperConfig extends Config } @ConfigItem( - position = 4, + position = 5, + keyName = "claimSlime", + name = "Claim Slime", + description = "Swap Talk-to with Claim Slime from Morytania diaries" + ) + default boolean claimSlime() + { + return true; + } + + @ConfigItem( + position = 6, keyName = "shiftClickCustomization", name = "Customizable shift-click", description = "Allows customization of shift-clicks on items" @@ -91,7 +113,7 @@ public interface MenuEntrySwapperConfig extends Config } @ConfigItem( - position = 5, + position = 7, keyName = "swapExchange", name = "Exchange", description = "Swap Talk-to with Exchange on NPC
Example: Grand Exchange Clerk, Tool Leprechaun, Void Knight" @@ -101,28 +123,6 @@ public interface MenuEntrySwapperConfig extends Config return true; } - @ConfigItem( - position = 6, - keyName = "swapHarpoon", - name = "Harpoon", - description = "Swap Cage, Big Net with Harpoon on Fishing spot" - ) - default boolean swapHarpoon() - { - return true; - } - - @ConfigItem( - position = 7, - keyName = "swapHome", - name = "Home", - description = "Swap Enter with Home on Portal" - ) - default boolean swapHome() - { - return true; - } - @ConfigItem( position = 8, keyName = "swapFairyRing", @@ -136,6 +136,28 @@ public interface MenuEntrySwapperConfig extends Config @ConfigItem( position = 9, + keyName = "swapHarpoon", + name = "Harpoon", + description = "Swap Cage, Big Net with Harpoon on Fishing spot" + ) + default boolean swapHarpoon() + { + return true; + } + + @ConfigItem( + position = 10, + keyName = "swapHome", + name = "Home", + description = "Swap Enter with Home on Portal" + ) + default boolean swapHome() + { + return true; + } + + @ConfigItem( + position = 11, keyName = "swapPickpocket", name = "Pickpocket on H.A.M.", description = "Swap Talk-to with Pickpocket on H.A.M members" @@ -146,7 +168,7 @@ public interface MenuEntrySwapperConfig extends Config } @ConfigItem( - position = 10, + position = 12, keyName = "swapPay", name = "Pay", description = "Swap Talk-to with Pay on NPC
Example: Elstan, Heskel, Fayeth" @@ -157,7 +179,7 @@ public interface MenuEntrySwapperConfig extends Config } @ConfigItem( - position = 11, + position = 13, keyName = "swapBoxTrap", name = "Reset", description = "Swap Check with Reset on box trap" @@ -168,7 +190,7 @@ public interface MenuEntrySwapperConfig extends Config } @ConfigItem( - position = 12, + position = 14, keyName = "swapTeleportItem", name = "Teleport item", description = "Swap Wear, Wield with Rub, Teleport on teleport item
Example: Amulet of glory, Ardougne cloak, Chronicle" @@ -179,7 +201,7 @@ public interface MenuEntrySwapperConfig extends Config } @ConfigItem( - position = 13, + position = 15, keyName = "swapAbyssTeleport", name = "Teleport to Abyss", description = "Swap Talk-to with Teleport for the Mage of Zamorak" @@ -190,7 +212,7 @@ public interface MenuEntrySwapperConfig extends Config } @ConfigItem( - position = 14, + position = 16, keyName = "swapTrade", name = "Trade", description = "Swap Talk-to with Trade on NPC
Example: Shop keeper, Shop assistant" @@ -201,7 +223,7 @@ public interface MenuEntrySwapperConfig extends Config } @ConfigItem( - position = 15, + position = 17, keyName = "swapTravel", name = "Travel", description = "Swap Talk-to with Travel, Take-boat, Pay-fare, Charter on NPC
Example: Squire, Monk of Entrana, Customs officer, Trader Crewmember" @@ -210,26 +232,4 @@ public interface MenuEntrySwapperConfig extends Config { return true; } - - @ConfigItem( - position = 16, - keyName = "claimSlime", - name = "Claim Slime", - description = "Swap Talk-to with Claim Slime from Morytania diaries" - ) - default boolean claimSlime() - { - return true; - } - - @ConfigItem( - position = 17, - keyName = "swapBirdhouseEmpty", - name = "Birdhouse", - description = "Swap Interact with Empty for birdhouses on Fossil Island" - ) - default boolean swapBirdhouseEmpty() - { - return true; - } }