jpw1991 / chebs-necromancy

Cheb's Necromancy adds Necromancy to Valheim via craftable wands and structures. Minions will follow you, guard your base, and perform menial tasks.
The Unlicense
10 stars 4 forks source link

nekro gatherer problem #212

Closed retrouncle closed 1 year ago

retrouncle commented 1 year ago

LogOutput.log https://sendeyo.com/updownload/file/script/0c0149ca0cbc2208791194a8dcdc9c93.txt

nekro gatherer will not deposit full inventory into nearby chest. unknown if it is a locally hosted server problem or something else.

jpw1991 commented 1 year ago

Hello @retrouncle , thanks for opening the issue. Can you please also attach the config file? You can find it in the Valheim install folder under BepInEx/configs. It should be called com.chebgonaz.ChebsNecromancy or something like that.

Edit: if you play on a server, the server's config is the one I need. Thanks

Investigation

The short version: The Neckro is finding a container, but the container is missing an inventory or other vital component.

Why? I don't know. Other mods may be changing the way containers are structured.

Technical Explanation

The reason for your problem: The Neckro Gatherer has found a container but certain critical things (perhaps the m_piece or the inventory) are missing. I don't know why the container's m_piece would be missing, or why the inventory would be missing on the container, but that's the only reason I can think of for this error.

How I can fix it

I can add guards to prevent the error, but if these things are missing then the Neckro cannot function. The best I can do is stop the error from spamming the log and the Neckro will just stand around ignoring containers which are missing these vital components.


Edit 2 & Note to self

Edit2: This is probably happening due to the following lines of code, which can be reinforced to stop the error, but it will not permit the Neckro to deposit the items because if m_piece is null or GetInventory is null then no deposit is possible:

            var closestContainer = FindClosest<Container>(transform, DropoffPointRadius.Value, pieceMask,
                c => c.m_piece.IsPlacedByPlayer() 
                     && allowedContainers.Contains(c.m_piece.m_nview.GetPrefabName())
                     && c.GetInventory().GetEmptySlots() > 0, true);
jpw1991 commented 1 year ago

This should be alleviated in version 3.2.3 - just publicly released on Nexus and Thunderstore. If it does not help, please let me know and I'll check again.

retrouncle commented 1 year ago

i tried to attach it but couldnt due to the site not accepting cfg files, i did convert it to txt which is the second link there

also as i said on nexus, it seemed to work on my single player world but im not 100% sure if thats due to the fact that it was single player of if it was due to there bing extra drops on the ground

and i will update you when i get the chance to @jpw1991

jpw1991 commented 1 year ago

Ohh, ok I see. I can't seem to get at the file via the link. It seems to just bring me to the website's homepage. Would you mind opening the config file in a text editor like notepad and copying and pasting the text here? I can read it that way

retrouncle commented 1 year ago

Edited for readability:

retrouncle's config file ```ini ## Settings file was created by plugin ChebsNecromancy v3.2.0 ## Plugin GUID: com.chebgonaz.ChebsNecromancy [BatBeacon] ## Whether making a Spirit Pylon is allowed or not. [Synced with Server] # Setting type: Boolean # Default value: true # Acceptable values: True, False BatBeaconAllowed = true ## Materials needed to build the bat beacon. None or Blank will use Default settings. Format: :[[,:], ...] [Synced with Server] # Setting type: String # Default value: FineWood:10,Silver:5,Guck:15 BatBeaconBuildCosts = FineWood:10,Silver:5,Guck:15 ## How far a bat beacon can see enemies. [Synced with Server] # Setting type: Single # Default value: 30 # Acceptable value range: From 1 to 1000 BatBeaconSightRadius = 30 ## How long a bat persists. [Synced with Server] # Setting type: Single # Default value: 30 # Acceptable value range: From 1 to 1000 BatBeaconGhostDuration = 30 ## How long a bat beacon wait before being able to spawn another bat. [Synced with Server] # Setting type: Single # Default value: 0.5 # Acceptable value range: From 1 to 1000 BatBeaconDelayBetweenBats = 1 ## The maximum number of bats that a bat beacon can spawn. [Synced with Server] # Setting type: Int32 # Default value: 15 # Acceptable value range: From 1 to 1000 BatBeaconMaxBats = 15 [BatLantern] ## Whether making a bat lantern is allowed or not. [Synced with Server] # Setting type: Boolean # Default value: true # Acceptable values: True, False BatLanternAllowed = true ## Materials needed to build the bat lantern. None or Blank will use Default settings. Format: :[[,:], ...] [Synced with Server] # Setting type: String # Default value: FineWood:10,Silver:5,Guck:15 BatLanternBuildCosts = FineWood:10,Silver:5,Guck:15 [BattleNeckroMinion (Server Synced)] ## Whether this minion can be made or not. # Setting type: Boolean # Default value: true Allowed = true ## Whether a minion refunds anything when it dies. # Setting type: DropType # Default value: JustResources # Acceptable values: Nothing, JustResources, Everything DropOnDeath = JustResources ## If set to true, dropped items will be packed into a cargo crate. This means they won't sink in water, which is useful for more valuable drops like Surtling Cores and metal ingots. # Setting type: Boolean # Default value: true PackDroppedItemsIntoCargoCrate = true ## The maximum Battle Neckro allowed to be created (0 = unlimited). # Setting type: Int32 # Default value: 0 MaximumBattleNeckros = 0 ## Attention: has no effect if minion limits are off. Increases player's maximum minion count by 1 every X levels. For example, if the limit is 3 draugr and this is set to 10, then at level 10 Necromancy the player can have 4 minions. Then 5 at level 20, and so on. # Setting type: Int32 # Default value: 10 MinionLimitIncrementsEveryXLevels = 10 ## How much HP a Battle Neckro has before level scaling. # Setting type: Single # Default value: 800 BaseHP = 800 ## How much extra HP a Battle Neckro gets per Necromancy level. # Setting type: Single # Default value: 2.5 BonusHPPerNecromancyLevel = 2.5 ## How much meat is required to make a Battle Neckro. # Setting type: Int32 # Default value: 50 MeatRequired = 50 ## Star Quality of tier 1 minions # Setting type: Int32 # Default value: 1 TierOneQuality = 1 ## Star Quality of tier 2 minions # Setting type: Int32 # Default value: 2 TierTwoQuality = 2 ## Necromancy skill level required to summon Tier 2 # Setting type: Int32 # Default value: 50 TierTwoLevelReq = 50 ## Star Quality of tier 3 minions # Setting type: Int32 # Default value: 3 TierThreeQuality = 3 ## Necromancy skill level required to summon Tier 3 # Setting type: Int32 # Default value: 75 TierThreeLevelReq = 75 [DraugrMinion (Server Synced)] ## Whether a minion refunds anything when it dies. # Setting type: DropType # Default value: JustResources # Acceptable values: Nothing, JustResources, Everything DropOnDeath = JustResources ## If set to true, dropped items will be packed into a cargo crate. This means they won't sink in water, which is useful for more valuable drops like Surtling Cores and metal ingots. # Setting type: Boolean # Default value: true PackDroppedItemsIntoCargoCrate = true ## The maximum Draugr allowed to be created (0 = unlimited). # Setting type: Int32 # Default value: 0 MaximumDraugr = 0 ## Attention: has no effect if minion limits are off. Increases player's maximum minion count by 1 every X levels. For example, if the limit is 3 draugr and this is set to 10, then at level 10 Necromancy the player can have 4 minions. Then 5 at level 20, and so on. # Setting type: Int32 # Default value: 10 MinionLimitIncrementsEveryXLevels = 10 [DraugrWand (Client)] ## The range from which nearby Draugr will hear your command. # Setting type: Single # Default value: 20 DraugrCommandRange = 20 [DraugrWand (Server Synced)] ## Whether crafting a Draugr Wand is allowed or not. # Setting type: Boolean # Default value: true DraugrWandAllowed = true ## Crafting station where Draugr Wand is available # Setting type: CraftingTable # Default value: Forge # Acceptable values: None, Workbench, Cauldron, Forge, ArtisanTable, StoneCutter DraugrWandCraftingStation = Forge ## Crafting station level required to craft Draugr Wand # Setting type: Int32 # Default value: 1 DraugrWandCraftingStationLevel = 1 ## Materials needed to craft Draugr Wand. None or Blank will use Default settings. # Setting type: String # Default value: ElderBark:5,FineWood:5,Bronze:5,TrophyDraugr:1 DraugrWandCraftingCosts = ElderBark:5,FineWood:5,Bronze:5,TrophyDraugr:1 ## If false, draugr aren't loaded at all and can't be summoned. # Setting type: Boolean # Default value: true DraugrAllowed = true ## HP = BaseHealth + NecromancyLevel * HealthMultiplier # Setting type: Single # Default value: 80 DraugrBaseHealth = 80 ## HP = BaseHealth + NecromancyLevel * HealthMultiplier # Setting type: Single # Default value: 2.5 DraugrHealthMultiplier = 2.5 ## Star Quality of tier 1 Draugr minions # Setting type: Int32 # Default value: 1 DraugrTierOneQuality = 1 ## Star Quality of tier 2 Draugr minions # Setting type: Int32 # Default value: 2 DraugrTierTwoQuality = 2 ## Necromancy skill level required to summon Tier 2 Draugr # Setting type: Int32 # Default value: 35 DraugrTierTwoLevelReq = 35 ## Star Quality of tier 3 Draugr minions # Setting type: Int32 # Default value: 3 DraugrTierThreeQuality = 3 ## Necromancy skill level required to summon Tier 3 Draugr # Setting type: Int32 # Default value: 70 DraugrTierThreeLevelReq = 70 ## How many pieces of meat it costs to make a Draugr. # Setting type: Int32 # Default value: 2 DraugrMeatRequired = 2 ## How many bone fragments it costs to make a Draugr. # Setting type: Int32 # Default value: 6 DraugrBoneFragmentsRequired = 6 ## How much creating a Draugr contributes to your Necromancy level increasing. # Setting type: Single # Default value: 1.5 DraugrNecromancyLevelIncrease = 1.5 [FarmingPylon] ## Whether making a Farming Pylon is allowed or not. [Synced with Server] # Setting type: Boolean # Default value: true # Acceptable values: True, False FarmingPylonAllowed = true ## Materials needed to build a Farming Pylon. None or Blank will use Default settings. Format: :[[,:], ...] [Synced with Server] # Setting type: String # Default value: FineWood:15,IronNails:15,SurtlingCore:1 FarmingPylonBuildCosts = FineWood:15,IronNails:15,SurtlingCore:1 ## How far a Farming Pylon can reach and crops. [Synced with Server] # Setting type: Single # Default value: 30 # Acceptable value range: From 1 to 1000 FarmingPylonSightRadius = 30 ## How long a Farming Pylon waits between checking containers and crops (lower values may negatively impact performance). [Synced with Server] # Setting type: Single # Default value: 5 # Acceptable value range: From 1 to 1000 FarmingPylonUpdateInterval = 5 ## A list of pickable IDs. [Synced with Server] # Setting type: String # Default value: Pickable_Barley,Pickable_Barley_Wild,Pickable_Carrot,Pickable_Dandelion,Pickable_Flax,Pickable_Flax_Wild,Pickable_Mushroom,Pickable_Mushroom_blue,Pickable_Mushroom_JotunPuffs,Pickable_Mushroom_Magecap,Pickable_Mushroom_yellow,Pickable_Onion,Pickable_SeedCarrot,Pickable_SeedOnion,Pickable_SeedTurnip,Pickable_Thistle,Pickable_Turnip FarmingPylonPickableList = Pickable_Barley,Pickable_Barley_Wild,Pickable_Carrot,Pickable_Dandelion,Pickable_Flax,Pickable_Flax_Wild,Pickable_Mushroom,Pickable_Mushroom_blue,Pickable_Mushroom_JotunPuffs,Pickable_Mushroom_Magecap,Pickable_Mushroom_yellow,Pickable_Onion,Pickable_SeedCarrot,Pickable_SeedOnion,Pickable_SeedTurnip,Pickable_Thistle,Pickable_Turnip [General (Client)] ## ONLY set this to true if you have graphical issues with the mod. It will disable all particle effects for the mod's prefabs which seem to give users with Radeon cards trouble for unknown reasons. If you have problems with lag it might also help to switchthis setting on. # Setting type: Boolean # Default value: false RadeonFriendly = false [General (Server Synced)] ## The minimum amount of bones dropped by creatures. # Setting type: Int32 # Default value: 1 BoneFragmentsDroppedAmountMin = 1 ## The maximum amount of bones dropped by creatures. # Setting type: Int32 # Default value: 3 BoneFragmentsDroppedAmountMax = 3 ## The chance of bones dropped by creatures (0 = 0%, 1 = 100%). # Setting type: Single # Default value: 0.25 BoneFragmentsDroppedChance = 0.25 ## The amount of LeatherScraps required to craft a minion in leather armor. # Setting type: Int32 # Default value: 2 ArmorLeatherScrapsRequired = 2 ## The amount of Bronze required to craft a minion in bronze armor. # Setting type: Int32 # Default value: 1 ArmorBronzeRequired = 1 ## The amount of Iron required to craft a minion in iron armor. # Setting type: Int32 # Default value: 1 ArmoredIronRequired = 1 ## The amount of surtling cores required to craft a mage. # Setting type: Int32 # Default value: 1 MageSurtlingCoresRequired = 1 ## The amount of Black Metal required to craft a minion in black iron armor. # Setting type: Int32 # Default value: 1 ArmorBlackIronRequired = 1 ## The amount of wood arrows required to craft a tier 1 archer. # Setting type: Int32 # Default value: 10 ArcherTier1ArrowsRequired = 10 ## The amount of bronze arrows required to craft a tier 2 archer. # Setting type: Int32 # Default value: 10 ArcherTier2ArrowsRequired = 10 ## The amount of iron arrows required to craft a tier 3 archer. # Setting type: Int32 # Default value: 10 ArcherTier3ArrowsRequired = 10 ## The amount of frost arrows required to craft a frost archer. # Setting type: Int32 # Default value: 10 ArcherFrostArrowsRequired = 10 ## The amount of fire arrows required to craft a fire archer. # Setting type: Int32 # Default value: 10 ArcherFireArrowsRequired = 10 ## The amount of poison arrows required to craft a poison archer. # Setting type: Int32 # Default value: 10 ArcherPoisonArrowsRequired = 10 ## The amount of silver arrows required to craft a silver archer. # Setting type: Int32 # Default value: 10 ArcherSilverArrowsRequired = 10 ## The amount of needles required to craft a needle warrior. # Setting type: Int32 # Default value: 5 NeedlesRequired = 5 ## Whether using a wand damages its durability. # Setting type: Boolean # Default value: true DurabilityDamage = true ## How much creating a warrior damages a wand. # Setting type: Single # Default value: 1 DurabilityDamageWarrior = 1 ## How much creating an archer damages a wand. # Setting type: Single # Default value: 3 DurabilityDamageArcher = 3 ## How much creating a mage damages a wand. # Setting type: Single # Default value: 5 DurabilityDamageMage = 5 ## How much creating a poison skeleton damages a wand. # Setting type: Single # Default value: 5 DurabilityDamagePoison = 5 ## How much armoring the minion in leather damages the wand (value is added on top of damage from minion type). # Setting type: Single # Default value: 1 DurabilityDamageLeather = 1 ## How much armoring the minion in bronze damages the wand (value is added on top of damage from minion type) # Setting type: Single # Default value: 1 DurabilityDamageBronze = 1 ## How much armoring the minion in iron damages the wand (value is added on top of damage from minion type) # Setting type: Single # Default value: 1 DurabilityDamageIron = 1 ## How much armoring the minion in black iron damages the wand (value is added on top of damage from minion type) # Setting type: Single # Default value: 1 DurabilityDamageBlackIron = 1 [Keybinds (Client)] ## The key to create a warrior minion with. # Setting type: KeyCode # Default value: B # Acceptable values: None, Backspace, Tab, Clear, Return, Pause, Escape, Space, Exclaim, DoubleQuote, Hash, Dollar, Percent, Ampersand, Quote, LeftParen, RightParen, Asterisk, Plus, Comma, Minus, Period, Slash, Alpha0, Alpha1, Alpha2, Alpha3, Alpha4, Alpha5, Alpha6, Alpha7, Alpha8, Alpha9, Colon, Semicolon, Less, Equals, Greater, Question, At, LeftBracket, Backslash, RightBracket, Caret, Underscore, BackQuote, A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U, V, W, X, Y, Z, LeftCurlyBracket, Pipe, RightCurlyBracket, Tilde, Delete, Keypad0, Keypad1, Keypad2, Keypad3, Keypad4, Keypad5, Keypad6, Keypad7, Keypad8, Keypad9, KeypadPeriod, KeypadDivide, KeypadMultiply, KeypadMinus, KeypadPlus, KeypadEnter, KeypadEquals, UpArrow, DownArrow, RightArrow, LeftArrow, Insert, Home, End, PageUp, PageDown, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12, F13, F14, F15, Numlock, CapsLock, ScrollLock, RightShift, LeftShift, RightControl, LeftControl, RightAlt, LeftAlt, RightCommand, RightApple, LeftCommand, LeftApple, LeftWindows, RightWindows, AltGr, Help, Print, SysReq, Break, Menu, Mouse0, Mouse1, Mouse2, Mouse3, Mouse4, Mouse5, Mouse6, JoystickButton0, JoystickButton1, JoystickButton2, JoystickButton3, JoystickButton4, JoystickButton5, JoystickButton6, JoystickButton7, JoystickButton8, JoystickButton9, JoystickButton10, JoystickButton11, JoystickButton12, JoystickButton13, JoystickButton14, JoystickButton15, JoystickButton16, JoystickButton17, JoystickButton18, JoystickButton19, Joystick1Button0, Joystick1Button1, Joystick1Button2, Joystick1Button3, Joystick1Button4, Joystick1Button5, Joystick1Button6, Joystick1Button7, Joystick1Button8, Joystick1Button9, Joystick1Button10, Joystick1Button11, Joystick1Button12, Joystick1Button13, Joystick1Button14, Joystick1Button15, Joystick1Button16, Joystick1Button17, Joystick1Button18, Joystick1Button19, Joystick2Button0, Joystick2Button1, Joystick2Button2, Joystick2Button3, Joystick2Button4, Joystick2Button5, Joystick2Button6, Joystick2Button7, Joystick2Button8, Joystick2Button9, Joystick2Button10, Joystick2Button11, Joystick2Button12, Joystick2Button13, Joystick2Button14, Joystick2Button15, Joystick2Button16, Joystick2Button17, Joystick2Button18, Joystick2Button19, Joystick3Button0, Joystick3Button1, Joystick3Button2, Joystick3Button3, Joystick3Button4, Joystick3Button5, Joystick3Button6, Joystick3Button7, Joystick3Button8, Joystick3Button9, Joystick3Button10, Joystick3Button11, Joystick3Button12, Joystick3Button13, Joystick3Button14, Joystick3Button15, Joystick3Button16, Joystick3Button17, Joystick3Button18, Joystick3Button19, Joystick4Button0, Joystick4Button1, Joystick4Button2, Joystick4Button3, Joystick4Button4, Joystick4Button5, Joystick4Button6, Joystick4Button7, Joystick4Button8, Joystick4Button9, Joystick4Button10, Joystick4Button11, Joystick4Button12, Joystick4Button13, Joystick4Button14, Joystick4Button15, Joystick4Button16, Joystick4Button17, Joystick4Button18, Joystick4Button19, Joystick5Button0, Joystick5Button1, Joystick5Button2, Joystick5Button3, Joystick5Button4, Joystick5Button5, Joystick5Button6, Joystick5Button7, Joystick5Button8, Joystick5Button9, Joystick5Button10, Joystick5Button11, Joystick5Button12, Joystick5Button13, Joystick5Button14, Joystick5Button15, Joystick5Button16, Joystick5Button17, Joystick5Button18, Joystick5Button19, Joystick6Button0, Joystick6Button1, Joystick6Button2, Joystick6Button3, Joystick6Button4, Joystick6Button5, Joystick6Button6, Joystick6Button7, Joystick6Button8, Joystick6Button9, Joystick6Button10, Joystick6Button11, Joystick6Button12, Joystick6Button13, Joystick6Button14, Joystick6Button15, Joystick6Button16, Joystick6Button17, Joystick6Button18, Joystick6Button19, Joystick7Button0, Joystick7Button1, Joystick7Button2, Joystick7Button3, Joystick7Button4, Joystick7Button5, Joystick7Button6, Joystick7Button7, Joystick7Button8, Joystick7Button9, Joystick7Button10, Joystick7Button11, Joystick7Button12, Joystick7Button13, Joystick7Button14, Joystick7Button15, Joystick7Button16, Joystick7Button17, Joystick7Button18, Joystick7Button19, Joystick8Button0, Joystick8Button1, Joystick8Button2, Joystick8Button3, Joystick8Button4, Joystick8Button5, Joystick8Button6, Joystick8Button7, Joystick8Button8, Joystick8Button9, Joystick8Button10, Joystick8Button11, Joystick8Button12, Joystick8Button13, Joystick8Button14, Joystick8Button15, Joystick8Button16, Joystick8Button17, Joystick8Button18, Joystick8Button19 ChebGonaz_SkeletonWandCreateMinion = B ## The key to gamepad button to create a warrior minion with. # Setting type: GamepadButton # Default value: ButtonSouth # Acceptable values: None, DPadUp, DPadDown, DPadLeft, DPadRight, ButtonSouth, ButtonEast, ButtonWest, ButtonNorth, LeftShoulder, RightShoulder, LeftTrigger, RightTrigger, SelectButton, StartButton, LeftStickButton, RightStickButton ChebGonaz_SkeletonWandCreateMinionGamepad = ButtonSouth ## The key to cycle minion types. # Setting type: KeyCode # Default value: H # Acceptable values: None, Backspace, Tab, Clear, Return, Pause, Escape, Space, Exclaim, DoubleQuote, Hash, Dollar, Percent, Ampersand, Quote, LeftParen, RightParen, Asterisk, Plus, Comma, Minus, Period, Slash, Alpha0, Alpha1, Alpha2, Alpha3, Alpha4, Alpha5, Alpha6, Alpha7, Alpha8, Alpha9, Colon, Semicolon, Less, Equals, Greater, Question, At, LeftBracket, Backslash, RightBracket, Caret, Underscore, BackQuote, A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U, V, W, X, Y, Z, LeftCurlyBracket, Pipe, RightCurlyBracket, Tilde, Delete, Keypad0, Keypad1, Keypad2, Keypad3, Keypad4, Keypad5, Keypad6, Keypad7, Keypad8, Keypad9, KeypadPeriod, KeypadDivide, KeypadMultiply, KeypadMinus, KeypadPlus, KeypadEnter, KeypadEquals, UpArrow, DownArrow, RightArrow, LeftArrow, Insert, Home, End, PageUp, PageDown, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12, F13, F14, F15, Numlock, CapsLock, ScrollLock, RightShift, LeftShift, RightControl, LeftControl, RightAlt, LeftAlt, RightCommand, RightApple, LeftCommand, LeftApple, LeftWindows, RightWindows, AltGr, Help, Print, SysReq, Break, Menu, Mouse0, Mouse1, Mouse2, Mouse3, Mouse4, Mouse5, Mouse6, JoystickButton0, JoystickButton1, JoystickButton2, JoystickButton3, JoystickButton4, JoystickButton5, JoystickButton6, JoystickButton7, JoystickButton8, JoystickButton9, JoystickButton10, JoystickButton11, JoystickButton12, JoystickButton13, JoystickButton14, JoystickButton15, JoystickButton16, JoystickButton17, JoystickButton18, JoystickButton19, Joystick1Button0, Joystick1Button1, Joystick1Button2, Joystick1Button3, Joystick1Button4, Joystick1Button5, Joystick1Button6, Joystick1Button7, Joystick1Button8, Joystick1Button9, Joystick1Button10, Joystick1Button11, Joystick1Button12, Joystick1Button13, Joystick1Button14, Joystick1Button15, Joystick1Button16, Joystick1Button17, Joystick1Button18, Joystick1Button19, Joystick2Button0, Joystick2Button1, Joystick2Button2, Joystick2Button3, Joystick2Button4, Joystick2Button5, Joystick2Button6, Joystick2Button7, Joystick2Button8, Joystick2Button9, Joystick2Button10, Joystick2Button11, Joystick2Button12, Joystick2Button13, Joystick2Button14, Joystick2Button15, Joystick2Button16, Joystick2Button17, Joystick2Button18, Joystick2Button19, Joystick3Button0, Joystick3Button1, Joystick3Button2, Joystick3Button3, Joystick3Button4, Joystick3Button5, Joystick3Button6, Joystick3Button7, Joystick3Button8, Joystick3Button9, Joystick3Button10, Joystick3Button11, Joystick3Button12, Joystick3Button13, Joystick3Button14, Joystick3Button15, Joystick3Button16, Joystick3Button17, Joystick3Button18, Joystick3Button19, Joystick4Button0, Joystick4Button1, Joystick4Button2, Joystick4Button3, Joystick4Button4, Joystick4Button5, Joystick4Button6, Joystick4Button7, Joystick4Button8, Joystick4Button9, Joystick4Button10, Joystick4Button11, Joystick4Button12, Joystick4Button13, Joystick4Button14, Joystick4Button15, Joystick4Button16, Joystick4Button17, Joystick4Button18, Joystick4Button19, Joystick5Button0, Joystick5Button1, Joystick5Button2, Joystick5Button3, Joystick5Button4, Joystick5Button5, Joystick5Button6, Joystick5Button7, Joystick5Button8, Joystick5Button9, Joystick5Button10, Joystick5Button11, Joystick5Button12, Joystick5Button13, Joystick5Button14, Joystick5Button15, Joystick5Button16, Joystick5Button17, Joystick5Button18, Joystick5Button19, Joystick6Button0, Joystick6Button1, Joystick6Button2, Joystick6Button3, Joystick6Button4, Joystick6Button5, Joystick6Button6, Joystick6Button7, Joystick6Button8, Joystick6Button9, Joystick6Button10, Joystick6Button11, Joystick6Button12, Joystick6Button13, Joystick6Button14, Joystick6Button15, Joystick6Button16, Joystick6Button17, Joystick6Button18, Joystick6Button19, Joystick7Button0, Joystick7Button1, Joystick7Button2, Joystick7Button3, Joystick7Button4, Joystick7Button5, Joystick7Button6, Joystick7Button7, Joystick7Button8, Joystick7Button9, Joystick7Button10, Joystick7Button11, Joystick7Button12, Joystick7Button13, Joystick7Button14, Joystick7Button15, Joystick7Button16, Joystick7Button17, Joystick7Button18, Joystick7Button19, Joystick8Button0, Joystick8Button1, Joystick8Button2, Joystick8Button3, Joystick8Button4, Joystick8Button5, Joystick8Button6, Joystick8Button7, Joystick8Button8, Joystick8Button9, Joystick8Button10, Joystick8Button11, Joystick8Button12, Joystick8Button13, Joystick8Button14, Joystick8Button15, Joystick8Button16, Joystick8Button17, Joystick8Button18, Joystick8Button19 ChebGonaz_SkeletonWandNextMinion = H ## The key to gamepad button to cycle minion types. # Setting type: GamepadButton # Default value: ButtonSouth # Acceptable values: None, DPadUp, DPadDown, DPadLeft, DPadRight, ButtonSouth, ButtonEast, ButtonWest, ButtonNorth, LeftShoulder, RightShoulder, LeftTrigger, RightTrigger, SelectButton, StartButton, LeftStickButton, RightStickButton ChebGonaz_SkeletonWandNextMinionGamepad = ButtonSouth ## The key to tell minions to follow. # Setting type: KeyCode # Default value: F # Acceptable values: None, Backspace, Tab, Clear, Return, Pause, Escape, Space, Exclaim, DoubleQuote, Hash, Dollar, Percent, Ampersand, Quote, LeftParen, RightParen, Asterisk, Plus, Comma, Minus, Period, Slash, Alpha0, Alpha1, Alpha2, Alpha3, Alpha4, Alpha5, Alpha6, Alpha7, Alpha8, Alpha9, Colon, Semicolon, Less, Equals, Greater, Question, At, LeftBracket, Backslash, RightBracket, Caret, Underscore, BackQuote, A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U, V, W, X, Y, Z, LeftCurlyBracket, Pipe, RightCurlyBracket, Tilde, Delete, Keypad0, Keypad1, Keypad2, Keypad3, Keypad4, Keypad5, Keypad6, Keypad7, Keypad8, Keypad9, KeypadPeriod, KeypadDivide, KeypadMultiply, KeypadMinus, KeypadPlus, KeypadEnter, KeypadEquals, UpArrow, DownArrow, RightArrow, LeftArrow, Insert, Home, End, PageUp, PageDown, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12, F13, F14, F15, Numlock, CapsLock, ScrollLock, RightShift, LeftShift, RightControl, LeftControl, RightAlt, LeftAlt, RightCommand, RightApple, LeftCommand, LeftApple, LeftWindows, RightWindows, AltGr, Help, Print, SysReq, Break, Menu, Mouse0, Mouse1, Mouse2, Mouse3, Mouse4, Mouse5, Mouse6, JoystickButton0, JoystickButton1, JoystickButton2, JoystickButton3, JoystickButton4, JoystickButton5, JoystickButton6, JoystickButton7, JoystickButton8, JoystickButton9, JoystickButton10, JoystickButton11, JoystickButton12, JoystickButton13, JoystickButton14, JoystickButton15, JoystickButton16, JoystickButton17, JoystickButton18, JoystickButton19, Joystick1Button0, Joystick1Button1, Joystick1Button2, Joystick1Button3, Joystick1Button4, Joystick1Button5, Joystick1Button6, Joystick1Button7, Joystick1Button8, Joystick1Button9, Joystick1Button10, Joystick1Button11, Joystick1Button12, Joystick1Button13, Joystick1Button14, Joystick1Button15, Joystick1Button16, Joystick1Button17, Joystick1Button18, Joystick1Button19, Joystick2Button0, Joystick2Button1, Joystick2Button2, Joystick2Button3, Joystick2Button4, Joystick2Button5, Joystick2Button6, Joystick2Button7, Joystick2Button8, Joystick2Button9, Joystick2Button10, Joystick2Button11, Joystick2Button12, Joystick2Button13, Joystick2Button14, Joystick2Button15, Joystick2Button16, Joystick2Button17, Joystick2Button18, Joystick2Button19, Joystick3Button0, Joystick3Button1, Joystick3Button2, Joystick3Button3, Joystick3Button4, Joystick3Button5, Joystick3Button6, Joystick3Button7, Joystick3Button8, Joystick3Button9, Joystick3Button10, Joystick3Button11, Joystick3Button12, Joystick3Button13, Joystick3Button14, Joystick3Button15, Joystick3Button16, Joystick3Button17, Joystick3Button18, Joystick3Button19, Joystick4Button0, Joystick4Button1, Joystick4Button2, Joystick4Button3, Joystick4Button4, Joystick4Button5, Joystick4Button6, Joystick4Button7, Joystick4Button8, Joystick4Button9, Joystick4Button10, Joystick4Button11, Joystick4Button12, Joystick4Button13, Joystick4Button14, Joystick4Button15, Joystick4Button16, Joystick4Button17, Joystick4Button18, Joystick4Button19, Joystick5Button0, Joystick5Button1, Joystick5Button2, Joystick5Button3, Joystick5Button4, Joystick5Button5, Joystick5Button6, Joystick5Button7, Joystick5Button8, Joystick5Button9, Joystick5Button10, Joystick5Button11, Joystick5Button12, Joystick5Button13, Joystick5Button14, Joystick5Button15, Joystick5Button16, Joystick5Button17, Joystick5Button18, Joystick5Button19, Joystick6Button0, Joystick6Button1, Joystick6Button2, Joystick6Button3, Joystick6Button4, Joystick6Button5, Joystick6Button6, Joystick6Button7, Joystick6Button8, Joystick6Button9, Joystick6Button10, Joystick6Button11, Joystick6Button12, Joystick6Button13, Joystick6Button14, Joystick6Button15, Joystick6Button16, Joystick6Button17, Joystick6Button18, Joystick6Button19, Joystick7Button0, Joystick7Button1, Joystick7Button2, Joystick7Button3, Joystick7Button4, Joystick7Button5, Joystick7Button6, Joystick7Button7, Joystick7Button8, Joystick7Button9, Joystick7Button10, Joystick7Button11, Joystick7Button12, Joystick7Button13, Joystick7Button14, Joystick7Button15, Joystick7Button16, Joystick7Button17, Joystick7Button18, Joystick7Button19, Joystick8Button0, Joystick8Button1, Joystick8Button2, Joystick8Button3, Joystick8Button4, Joystick8Button5, Joystick8Button6, Joystick8Button7, Joystick8Button8, Joystick8Button9, Joystick8Button10, Joystick8Button11, Joystick8Button12, Joystick8Button13, Joystick8Button14, Joystick8Button15, Joystick8Button16, Joystick8Button17, Joystick8Button18, Joystick8Button19 ChebGonaz_SkeletonWandFollow = F ## The gamepad button to tell minions to follow. # Setting type: GamepadButton # Default value: ButtonWest # Acceptable values: None, DPadUp, DPadDown, DPadLeft, DPadRight, ButtonSouth, ButtonEast, ButtonWest, ButtonNorth, LeftShoulder, RightShoulder, LeftTrigger, RightTrigger, SelectButton, StartButton, LeftStickButton, RightStickButton ChebGonaz_SkeletonWandFollowGamepad = ButtonWest ## The key to tell minions to wait. # Setting type: KeyCode # Default value: T # Acceptable values: None, Backspace, Tab, Clear, Return, Pause, Escape, Space, Exclaim, DoubleQuote, Hash, Dollar, Percent, Ampersand, Quote, LeftParen, RightParen, Asterisk, Plus, Comma, Minus, Period, Slash, Alpha0, Alpha1, Alpha2, Alpha3, Alpha4, Alpha5, Alpha6, Alpha7, Alpha8, Alpha9, Colon, Semicolon, Less, Equals, Greater, Question, At, LeftBracket, Backslash, RightBracket, Caret, Underscore, BackQuote, A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U, V, W, X, Y, Z, LeftCurlyBracket, Pipe, RightCurlyBracket, Tilde, Delete, Keypad0, Keypad1, Keypad2, Keypad3, Keypad4, Keypad5, Keypad6, Keypad7, Keypad8, Keypad9, KeypadPeriod, KeypadDivide, KeypadMultiply, KeypadMinus, KeypadPlus, KeypadEnter, KeypadEquals, UpArrow, DownArrow, RightArrow, LeftArrow, Insert, Home, End, PageUp, PageDown, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12, F13, F14, F15, Numlock, CapsLock, ScrollLock, RightShift, LeftShift, RightControl, LeftControl, RightAlt, LeftAlt, RightCommand, RightApple, LeftCommand, LeftApple, LeftWindows, RightWindows, AltGr, Help, Print, SysReq, Break, Menu, Mouse0, Mouse1, Mouse2, Mouse3, Mouse4, Mouse5, Mouse6, JoystickButton0, JoystickButton1, JoystickButton2, JoystickButton3, JoystickButton4, JoystickButton5, JoystickButton6, JoystickButton7, JoystickButton8, JoystickButton9, JoystickButton10, JoystickButton11, JoystickButton12, JoystickButton13, JoystickButton14, JoystickButton15, JoystickButton16, JoystickButton17, JoystickButton18, JoystickButton19, Joystick1Button0, Joystick1Button1, Joystick1Button2, Joystick1Button3, Joystick1Button4, Joystick1Button5, Joystick1Button6, Joystick1Button7, Joystick1Button8, Joystick1Button9, Joystick1Button10, Joystick1Button11, Joystick1Button12, Joystick1Button13, Joystick1Button14, Joystick1Button15, Joystick1Button16, Joystick1Button17, Joystick1Button18, Joystick1Button19, Joystick2Button0, Joystick2Button1, Joystick2Button2, Joystick2Button3, Joystick2Button4, Joystick2Button5, Joystick2Button6, Joystick2Button7, Joystick2Button8, Joystick2Button9, Joystick2Button10, Joystick2Button11, Joystick2Button12, Joystick2Button13, Joystick2Button14, Joystick2Button15, Joystick2Button16, Joystick2Button17, Joystick2Button18, Joystick2Button19, Joystick3Button0, Joystick3Button1, Joystick3Button2, Joystick3Button3, Joystick3Button4, Joystick3Button5, Joystick3Button6, Joystick3Button7, Joystick3Button8, Joystick3Button9, Joystick3Button10, Joystick3Button11, Joystick3Button12, Joystick3Button13, Joystick3Button14, Joystick3Button15, Joystick3Button16, Joystick3Button17, Joystick3Button18, Joystick3Button19, Joystick4Button0, Joystick4Button1, Joystick4Button2, Joystick4Button3, Joystick4Button4, Joystick4Button5, Joystick4Button6, Joystick4Button7, Joystick4Button8, Joystick4Button9, Joystick4Button10, Joystick4Button11, Joystick4Button12, Joystick4Button13, Joystick4Button14, Joystick4Button15, Joystick4Button16, Joystick4Button17, Joystick4Button18, Joystick4Button19, Joystick5Button0, Joystick5Button1, Joystick5Button2, Joystick5Button3, Joystick5Button4, Joystick5Button5, Joystick5Button6, Joystick5Button7, Joystick5Button8, Joystick5Button9, Joystick5Button10, Joystick5Button11, Joystick5Button12, Joystick5Button13, Joystick5Button14, Joystick5Button15, Joystick5Button16, Joystick5Button17, Joystick5Button18, Joystick5Button19, Joystick6Button0, Joystick6Button1, Joystick6Button2, Joystick6Button3, Joystick6Button4, Joystick6Button5, Joystick6Button6, Joystick6Button7, Joystick6Button8, Joystick6Button9, Joystick6Button10, Joystick6Button11, Joystick6Button12, Joystick6Button13, Joystick6Button14, Joystick6Button15, Joystick6Button16, Joystick6Button17, Joystick6Button18, Joystick6Button19, Joystick7Button0, Joystick7Button1, Joystick7Button2, Joystick7Button3, Joystick7Button4, Joystick7Button5, Joystick7Button6, Joystick7Button7, Joystick7Button8, Joystick7Button9, Joystick7Button10, Joystick7Button11, Joystick7Button12, Joystick7Button13, Joystick7Button14, Joystick7Button15, Joystick7Button16, Joystick7Button17, Joystick7Button18, Joystick7Button19, Joystick8Button0, Joystick8Button1, Joystick8Button2, Joystick8Button3, Joystick8Button4, Joystick8Button5, Joystick8Button6, Joystick8Button7, Joystick8Button8, Joystick8Button9, Joystick8Button10, Joystick8Button11, Joystick8Button12, Joystick8Button13, Joystick8Button14, Joystick8Button15, Joystick8Button16, Joystick8Button17, Joystick8Button18, Joystick8Button19 ChebGonaz_SkeletonWandWait = T ## The gamepad button to tell minions to wait. # Setting type: GamepadButton # Default value: ButtonEast # Acceptable values: None, DPadUp, DPadDown, DPadLeft, DPadRight, ButtonSouth, ButtonEast, ButtonWest, ButtonNorth, LeftShoulder, RightShoulder, LeftTrigger, RightTrigger, SelectButton, StartButton, LeftStickButton, RightStickButton ChebGonaz_SkeletonWandWaitGamepad = ButtonEast ## The key to teleport following minions to you. # Setting type: KeyCode # Default value: G # Acceptable values: None, Backspace, Tab, Clear, Return, Pause, Escape, Space, Exclaim, DoubleQuote, Hash, Dollar, Percent, Ampersand, Quote, LeftParen, RightParen, Asterisk, Plus, Comma, Minus, Period, Slash, Alpha0, Alpha1, Alpha2, Alpha3, Alpha4, Alpha5, Alpha6, Alpha7, Alpha8, Alpha9, Colon, Semicolon, Less, Equals, Greater, Question, At, LeftBracket, Backslash, RightBracket, Caret, Underscore, BackQuote, A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U, V, W, X, Y, Z, LeftCurlyBracket, Pipe, RightCurlyBracket, Tilde, Delete, Keypad0, Keypad1, Keypad2, Keypad3, Keypad4, Keypad5, Keypad6, Keypad7, Keypad8, Keypad9, KeypadPeriod, KeypadDivide, KeypadMultiply, KeypadMinus, KeypadPlus, KeypadEnter, KeypadEquals, UpArrow, DownArrow, RightArrow, LeftArrow, Insert, Home, End, PageUp, PageDown, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12, F13, F14, F15, Numlock, CapsLock, ScrollLock, RightShift, LeftShift, RightControl, LeftControl, RightAlt, LeftAlt, RightCommand, RightApple, LeftCommand, LeftApple, LeftWindows, RightWindows, AltGr, Help, Print, SysReq, Break, Menu, Mouse0, Mouse1, Mouse2, Mouse3, Mouse4, Mouse5, Mouse6, JoystickButton0, JoystickButton1, JoystickButton2, JoystickButton3, JoystickButton4, JoystickButton5, JoystickButton6, JoystickButton7, JoystickButton8, JoystickButton9, JoystickButton10, JoystickButton11, JoystickButton12, JoystickButton13, JoystickButton14, JoystickButton15, JoystickButton16, JoystickButton17, JoystickButton18, JoystickButton19, Joystick1Button0, Joystick1Button1, Joystick1Button2, Joystick1Button3, Joystick1Button4, Joystick1Button5, Joystick1Button6, Joystick1Button7, Joystick1Button8, Joystick1Button9, Joystick1Button10, Joystick1Button11, Joystick1Button12, Joystick1Button13, Joystick1Button14, Joystick1Button15, Joystick1Button16, Joystick1Button17, Joystick1Button18, Joystick1Button19, Joystick2Button0, Joystick2Button1, Joystick2Button2, Joystick2Button3, Joystick2Button4, Joystick2Button5, Joystick2Button6, Joystick2Button7, Joystick2Button8, Joystick2Button9, Joystick2Button10, Joystick2Button11, Joystick2Button12, Joystick2Button13, Joystick2Button14, Joystick2Button15, Joystick2Button16, Joystick2Button17, Joystick2Button18, Joystick2Button19, Joystick3Button0, Joystick3Button1, Joystick3Button2, Joystick3Button3, Joystick3Button4, Joystick3Button5, Joystick3Button6, Joystick3Button7, Joystick3Button8, Joystick3Button9, Joystick3Button10, Joystick3Button11, Joystick3Button12, Joystick3Button13, Joystick3Button14, Joystick3Button15, Joystick3Button16, Joystick3Button17, Joystick3Button18, Joystick3Button19, Joystick4Button0, Joystick4Button1, Joystick4Button2, Joystick4Button3, Joystick4Button4, Joystick4Button5, Joystick4Button6, Joystick4Button7, Joystick4Button8, Joystick4Button9, Joystick4Button10, Joystick4Button11, Joystick4Button12, Joystick4Button13, Joystick4Button14, Joystick4Button15, Joystick4Button16, Joystick4Button17, Joystick4Button18, Joystick4Button19, Joystick5Button0, Joystick5Button1, Joystick5Button2, Joystick5Button3, Joystick5Button4, Joystick5Button5, Joystick5Button6, Joystick5Button7, Joystick5Button8, Joystick5Button9, Joystick5Button10, Joystick5Button11, Joystick5Button12, Joystick5Button13, Joystick5Button14, Joystick5Button15, Joystick5Button16, Joystick5Button17, Joystick5Button18, Joystick5Button19, Joystick6Button0, Joystick6Button1, Joystick6Button2, Joystick6Button3, Joystick6Button4, Joystick6Button5, Joystick6Button6, Joystick6Button7, Joystick6Button8, Joystick6Button9, Joystick6Button10, Joystick6Button11, Joystick6Button12, Joystick6Button13, Joystick6Button14, Joystick6Button15, Joystick6Button16, Joystick6Button17, Joystick6Button18, Joystick6Button19, Joystick7Button0, Joystick7Button1, Joystick7Button2, Joystick7Button3, Joystick7Button4, Joystick7Button5, Joystick7Button6, Joystick7Button7, Joystick7Button8, Joystick7Button9, Joystick7Button10, Joystick7Button11, Joystick7Button12, Joystick7Button13, Joystick7Button14, Joystick7Button15, Joystick7Button16, Joystick7Button17, Joystick7Button18, Joystick7Button19, Joystick8Button0, Joystick8Button1, Joystick8Button2, Joystick8Button3, Joystick8Button4, Joystick8Button5, Joystick8Button6, Joystick8Button7, Joystick8Button8, Joystick8Button9, Joystick8Button10, Joystick8Button11, Joystick8Button12, Joystick8Button13, Joystick8Button14, Joystick8Button15, Joystick8Button16, Joystick8Button17, Joystick8Button18, Joystick8Button19 ChebGonaz_SkeletonWandTeleport = G ## The gamepad button to teleport following minions to you. # Setting type: GamepadButton # Default value: SelectButton # Acceptable values: None, DPadUp, DPadDown, DPadLeft, DPadRight, ButtonSouth, ButtonEast, ButtonWest, ButtonNorth, LeftShoulder, RightShoulder, LeftTrigger, RightTrigger, SelectButton, StartButton, LeftStickButton, RightStickButton ChebGonaz_SkeletonWandTeleportGamepad = SelectButton ## The key to permit consumption of additional resources when creating the minion eg. iron to make an armored skeleton. # Setting type: KeyCode # Default value: LeftShift # Acceptable values: None, Backspace, Tab, Clear, Return, Pause, Escape, Space, Exclaim, DoubleQuote, Hash, Dollar, Percent, Ampersand, Quote, LeftParen, RightParen, Asterisk, Plus, Comma, Minus, Period, Slash, Alpha0, Alpha1, Alpha2, Alpha3, Alpha4, Alpha5, Alpha6, Alpha7, Alpha8, Alpha9, Colon, Semicolon, Less, Equals, Greater, Question, At, LeftBracket, Backslash, RightBracket, Caret, Underscore, BackQuote, A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U, V, W, X, Y, Z, LeftCurlyBracket, Pipe, RightCurlyBracket, Tilde, Delete, Keypad0, Keypad1, Keypad2, Keypad3, Keypad4, Keypad5, Keypad6, Keypad7, Keypad8, Keypad9, KeypadPeriod, KeypadDivide, KeypadMultiply, KeypadMinus, KeypadPlus, KeypadEnter, KeypadEquals, UpArrow, DownArrow, RightArrow, LeftArrow, Insert, Home, End, PageUp, PageDown, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12, F13, F14, F15, Numlock, CapsLock, ScrollLock, RightShift, LeftShift, RightControl, LeftControl, RightAlt, LeftAlt, RightCommand, RightApple, LeftCommand, LeftApple, LeftWindows, RightWindows, AltGr, Help, Print, SysReq, Break, Menu, Mouse0, Mouse1, Mouse2, Mouse3, Mouse4, Mouse5, Mouse6, JoystickButton0, JoystickButton1, JoystickButton2, JoystickButton3, JoystickButton4, JoystickButton5, JoystickButton6, JoystickButton7, JoystickButton8, JoystickButton9, JoystickButton10, JoystickButton11, JoystickButton12, JoystickButton13, JoystickButton14, JoystickButton15, JoystickButton16, JoystickButton17, JoystickButton18, JoystickButton19, Joystick1Button0, Joystick1Button1, Joystick1Button2, Joystick1Button3, Joystick1Button4, Joystick1Button5, Joystick1Button6, Joystick1Button7, Joystick1Button8, Joystick1Button9, Joystick1Button10, Joystick1Button11, Joystick1Button12, Joystick1Button13, Joystick1Button14, Joystick1Button15, Joystick1Button16, Joystick1Button17, Joystick1Button18, Joystick1Button19, Joystick2Button0, Joystick2Button1, Joystick2Button2, Joystick2Button3, Joystick2Button4, Joystick2Button5, Joystick2Button6, Joystick2Button7, Joystick2Button8, Joystick2Button9, Joystick2Button10, Joystick2Button11, Joystick2Button12, Joystick2Button13, Joystick2Button14, Joystick2Button15, Joystick2Button16, Joystick2Button17, Joystick2Button18, Joystick2Button19, Joystick3Button0, Joystick3Button1, Joystick3Button2, Joystick3Button3, Joystick3Button4, Joystick3Button5, Joystick3Button6, Joystick3Button7, Joystick3Button8, Joystick3Button9, Joystick3Button10, Joystick3Button11, Joystick3Button12, Joystick3Button13, Joystick3Button14, Joystick3Button15, Joystick3Button16, Joystick3Button17, Joystick3Button18, Joystick3Button19, Joystick4Button0, Joystick4Button1, Joystick4Button2, Joystick4Button3, Joystick4Button4, Joystick4Button5, Joystick4Button6, Joystick4Button7, Joystick4Button8, Joystick4Button9, Joystick4Button10, Joystick4Button11, Joystick4Button12, Joystick4Button13, Joystick4Button14, Joystick4Button15, Joystick4Button16, Joystick4Button17, Joystick4Button18, Joystick4Button19, Joystick5Button0, Joystick5Button1, Joystick5Button2, Joystick5Button3, Joystick5Button4, Joystick5Button5, Joystick5Button6, Joystick5Button7, Joystick5Button8, Joystick5Button9, Joystick5Button10, Joystick5Button11, Joystick5Button12, Joystick5Button13, Joystick5Button14, Joystick5Button15, Joystick5Button16, Joystick5Button17, Joystick5Button18, Joystick5Button19, Joystick6Button0, Joystick6Button1, Joystick6Button2, Joystick6Button3, Joystick6Button4, Joystick6Button5, Joystick6Button6, Joystick6Button7, Joystick6Button8, Joystick6Button9, Joystick6Button10, Joystick6Button11, Joystick6Button12, Joystick6Button13, Joystick6Button14, Joystick6Button15, Joystick6Button16, Joystick6Button17, Joystick6Button18, Joystick6Button19, Joystick7Button0, Joystick7Button1, Joystick7Button2, Joystick7Button3, Joystick7Button4, Joystick7Button5, Joystick7Button6, Joystick7Button7, Joystick7Button8, Joystick7Button9, Joystick7Button10, Joystick7Button11, Joystick7Button12, Joystick7Button13, Joystick7Button14, Joystick7Button15, Joystick7Button16, Joystick7Button17, Joystick7Button18, Joystick7Button19, Joystick8Button0, Joystick8Button1, Joystick8Button2, Joystick8Button3, Joystick8Button4, Joystick8Button5, Joystick8Button6, Joystick8Button7, Joystick8Button8, Joystick8Button9, Joystick8Button10, Joystick8Button11, Joystick8Button12, Joystick8Button13, Joystick8Button14, Joystick8Button15, Joystick8Button16, Joystick8Button17, Joystick8Button18, Joystick8Button19 ChebGonaz_SkeletonWandUnlockExtraResourceConsumption = LeftShift ## The key to create a warrior minion with. # Setting type: KeyCode # Default value: B # Acceptable values: None, Backspace, Tab, Clear, Return, Pause, Escape, Space, Exclaim, DoubleQuote, Hash, Dollar, Percent, Ampersand, Quote, LeftParen, RightParen, Asterisk, Plus, Comma, Minus, Period, Slash, Alpha0, Alpha1, Alpha2, Alpha3, Alpha4, Alpha5, Alpha6, Alpha7, Alpha8, Alpha9, Colon, Semicolon, Less, Equals, Greater, Question, At, LeftBracket, Backslash, RightBracket, Caret, Underscore, BackQuote, A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U, V, W, X, Y, Z, LeftCurlyBracket, Pipe, RightCurlyBracket, Tilde, Delete, Keypad0, Keypad1, Keypad2, Keypad3, Keypad4, Keypad5, Keypad6, Keypad7, Keypad8, Keypad9, KeypadPeriod, KeypadDivide, KeypadMultiply, KeypadMinus, KeypadPlus, KeypadEnter, KeypadEquals, UpArrow, DownArrow, RightArrow, LeftArrow, Insert, Home, End, PageUp, PageDown, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12, F13, F14, F15, Numlock, CapsLock, ScrollLock, RightShift, LeftShift, RightControl, LeftControl, RightAlt, LeftAlt, RightCommand, RightApple, LeftCommand, LeftApple, LeftWindows, RightWindows, AltGr, Help, Print, SysReq, Break, Menu, Mouse0, Mouse1, Mouse2, Mouse3, Mouse4, Mouse5, Mouse6, JoystickButton0, JoystickButton1, JoystickButton2, JoystickButton3, JoystickButton4, JoystickButton5, JoystickButton6, JoystickButton7, JoystickButton8, JoystickButton9, JoystickButton10, JoystickButton11, JoystickButton12, JoystickButton13, JoystickButton14, JoystickButton15, JoystickButton16, JoystickButton17, JoystickButton18, JoystickButton19, Joystick1Button0, Joystick1Button1, Joystick1Button2, Joystick1Button3, Joystick1Button4, Joystick1Button5, Joystick1Button6, Joystick1Button7, Joystick1Button8, Joystick1Button9, Joystick1Button10, Joystick1Button11, Joystick1Button12, Joystick1Button13, Joystick1Button14, Joystick1Button15, Joystick1Button16, Joystick1Button17, Joystick1Button18, Joystick1Button19, Joystick2Button0, Joystick2Button1, Joystick2Button2, Joystick2Button3, Joystick2Button4, Joystick2Button5, Joystick2Button6, Joystick2Button7, Joystick2Button8, Joystick2Button9, Joystick2Button10, Joystick2Button11, Joystick2Button12, Joystick2Button13, Joystick2Button14, Joystick2Button15, Joystick2Button16, Joystick2Button17, Joystick2Button18, Joystick2Button19, Joystick3Button0, Joystick3Button1, Joystick3Button2, Joystick3Button3, Joystick3Button4, Joystick3Button5, Joystick3Button6, Joystick3Button7, Joystick3Button8, Joystick3Button9, Joystick3Button10, Joystick3Button11, Joystick3Button12, Joystick3Button13, Joystick3Button14, Joystick3Button15, Joystick3Button16, Joystick3Button17, Joystick3Button18, Joystick3Button19, Joystick4Button0, Joystick4Button1, Joystick4Button2, Joystick4Button3, Joystick4Button4, Joystick4Button5, Joystick4Button6, Joystick4Button7, Joystick4Button8, Joystick4Button9, Joystick4Button10, Joystick4Button11, Joystick4Button12, Joystick4Button13, Joystick4Button14, Joystick4Button15, Joystick4Button16, Joystick4Button17, Joystick4Button18, Joystick4Button19, Joystick5Button0, Joystick5Button1, Joystick5Button2, Joystick5Button3, Joystick5Button4, Joystick5Button5, Joystick5Button6, Joystick5Button7, Joystick5Button8, Joystick5Button9, Joystick5Button10, Joystick5Button11, Joystick5Button12, Joystick5Button13, Joystick5Button14, Joystick5Button15, Joystick5Button16, Joystick5Button17, Joystick5Button18, Joystick5Button19, Joystick6Button0, Joystick6Button1, Joystick6Button2, Joystick6Button3, Joystick6Button4, Joystick6Button5, Joystick6Button6, Joystick6Button7, Joystick6Button8, Joystick6Button9, Joystick6Button10, Joystick6Button11, Joystick6Button12, Joystick6Button13, Joystick6Button14, Joystick6Button15, Joystick6Button16, Joystick6Button17, Joystick6Button18, Joystick6Button19, Joystick7Button0, Joystick7Button1, Joystick7Button2, Joystick7Button3, Joystick7Button4, Joystick7Button5, Joystick7Button6, Joystick7Button7, Joystick7Button8, Joystick7Button9, Joystick7Button10, Joystick7Button11, Joystick7Button12, Joystick7Button13, Joystick7Button14, Joystick7Button15, Joystick7Button16, Joystick7Button17, Joystick7Button18, Joystick7Button19, Joystick8Button0, Joystick8Button1, Joystick8Button2, Joystick8Button3, Joystick8Button4, Joystick8Button5, Joystick8Button6, Joystick8Button7, Joystick8Button8, Joystick8Button9, Joystick8Button10, Joystick8Button11, Joystick8Button12, Joystick8Button13, Joystick8Button14, Joystick8Button15, Joystick8Button16, Joystick8Button17, Joystick8Button18, Joystick8Button19 ChebGonaz_DraugrWandCreateMinion = B ## The key to gamepad button to create a warrior minion with. # Setting type: GamepadButton # Default value: ButtonSouth # Acceptable values: None, DPadUp, DPadDown, DPadLeft, DPadRight, ButtonSouth, ButtonEast, ButtonWest, ButtonNorth, LeftShoulder, RightShoulder, LeftTrigger, RightTrigger, SelectButton, StartButton, LeftStickButton, RightStickButton ChebGonaz_DraugrWandCreateMinionGamepad = ButtonSouth ## The key to cycle minion types. # Setting type: KeyCode # Default value: H # Acceptable values: None, Backspace, Tab, Clear, Return, Pause, Escape, Space, Exclaim, DoubleQuote, Hash, Dollar, Percent, Ampersand, Quote, LeftParen, RightParen, Asterisk, Plus, Comma, Minus, Period, Slash, Alpha0, Alpha1, Alpha2, Alpha3, Alpha4, Alpha5, Alpha6, Alpha7, Alpha8, Alpha9, Colon, Semicolon, Less, Equals, Greater, Question, At, LeftBracket, Backslash, RightBracket, Caret, Underscore, BackQuote, A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U, V, W, X, Y, Z, LeftCurlyBracket, Pipe, RightCurlyBracket, Tilde, Delete, Keypad0, Keypad1, Keypad2, Keypad3, Keypad4, Keypad5, Keypad6, Keypad7, Keypad8, Keypad9, KeypadPeriod, KeypadDivide, KeypadMultiply, KeypadMinus, KeypadPlus, KeypadEnter, KeypadEquals, UpArrow, DownArrow, RightArrow, LeftArrow, Insert, Home, End, PageUp, PageDown, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12, F13, F14, F15, Numlock, CapsLock, ScrollLock, RightShift, LeftShift, RightControl, LeftControl, RightAlt, LeftAlt, RightCommand, RightApple, LeftCommand, LeftApple, LeftWindows, RightWindows, AltGr, Help, Print, SysReq, Break, Menu, Mouse0, Mouse1, Mouse2, Mouse3, Mouse4, Mouse5, Mouse6, JoystickButton0, JoystickButton1, JoystickButton2, JoystickButton3, JoystickButton4, JoystickButton5, JoystickButton6, JoystickButton7, JoystickButton8, JoystickButton9, JoystickButton10, JoystickButton11, JoystickButton12, JoystickButton13, JoystickButton14, JoystickButton15, JoystickButton16, JoystickButton17, JoystickButton18, JoystickButton19, Joystick1Button0, Joystick1Button1, Joystick1Button2, Joystick1Button3, Joystick1Button4, Joystick1Button5, Joystick1Button6, Joystick1Button7, Joystick1Button8, Joystick1Button9, Joystick1Button10, Joystick1Button11, Joystick1Button12, Joystick1Button13, Joystick1Button14, Joystick1Button15, Joystick1Button16, Joystick1Button17, Joystick1Button18, Joystick1Button19, Joystick2Button0, Joystick2Button1, Joystick2Button2, Joystick2Button3, Joystick2Button4, Joystick2Button5, Joystick2Button6, Joystick2Button7, Joystick2Button8, Joystick2Button9, Joystick2Button10, Joystick2Button11, Joystick2Button12, Joystick2Button13, Joystick2Button14, Joystick2Button15, Joystick2Button16, Joystick2Button17, Joystick2Button18, Joystick2Button19, Joystick3Button0, Joystick3Button1, Joystick3Button2, Joystick3Button3, Joystick3Button4, Joystick3Button5, Joystick3Button6, Joystick3Button7, Joystick3Button8, Joystick3Button9, Joystick3Button10, Joystick3Button11, Joystick3Button12, Joystick3Button13, Joystick3Button14, Joystick3Button15, Joystick3Button16, Joystick3Button17, Joystick3Button18, Joystick3Button19, Joystick4Button0, Joystick4Button1, Joystick4Button2, Joystick4Button3, Joystick4Button4, Joystick4Button5, Joystick4Button6, Joystick4Button7, Joystick4Button8, Joystick4Button9, Joystick4Button10, Joystick4Button11, Joystick4Button12, Joystick4Button13, Joystick4Button14, Joystick4Button15, Joystick4Button16, Joystick4Button17, Joystick4Button18, Joystick4Button19, Joystick5Button0, Joystick5Button1, Joystick5Button2, Joystick5Button3, Joystick5Button4, Joystick5Button5, Joystick5Button6, Joystick5Button7, Joystick5Button8, Joystick5Button9, Joystick5Button10, Joystick5Button11, Joystick5Button12, Joystick5Button13, Joystick5Button14, Joystick5Button15, Joystick5Button16, Joystick5Button17, Joystick5Button18, Joystick5Button19, Joystick6Button0, Joystick6Button1, Joystick6Button2, Joystick6Button3, Joystick6Button4, Joystick6Button5, Joystick6Button6, Joystick6Button7, Joystick6Button8, Joystick6Button9, Joystick6Button10, Joystick6Button11, Joystick6Button12, Joystick6Button13, Joystick6Button14, Joystick6Button15, Joystick6Button16, Joystick6Button17, Joystick6Button18, Joystick6Button19, Joystick7Button0, Joystick7Button1, Joystick7Button2, Joystick7Button3, Joystick7Button4, Joystick7Button5, Joystick7Button6, Joystick7Button7, Joystick7Button8, Joystick7Button9, Joystick7Button10, Joystick7Button11, Joystick7Button12, Joystick7Button13, Joystick7Button14, Joystick7Button15, Joystick7Button16, Joystick7Button17, Joystick7Button18, Joystick7Button19, Joystick8Button0, Joystick8Button1, Joystick8Button2, Joystick8Button3, Joystick8Button4, Joystick8Button5, Joystick8Button6, Joystick8Button7, Joystick8Button8, Joystick8Button9, Joystick8Button10, Joystick8Button11, Joystick8Button12, Joystick8Button13, Joystick8Button14, Joystick8Button15, Joystick8Button16, Joystick8Button17, Joystick8Button18, Joystick8Button19 ChebGonaz_DraugrWandNextMinion = H ## The key to gamepad button to cycle minion types. # Setting type: GamepadButton # Default value: ButtonSouth # Acceptable values: None, DPadUp, DPadDown, DPadLeft, DPadRight, ButtonSouth, ButtonEast, ButtonWest, ButtonNorth, LeftShoulder, RightShoulder, LeftTrigger, RightTrigger, SelectButton, StartButton, LeftStickButton, RightStickButton ChebGonaz_DraugrWandNextMinionGamepad = ButtonSouth ## The key to tell minions to follow. # Setting type: KeyCode # Default value: F # Acceptable values: None, Backspace, Tab, Clear, Return, Pause, Escape, Space, Exclaim, DoubleQuote, Hash, Dollar, Percent, Ampersand, Quote, LeftParen, RightParen, Asterisk, Plus, Comma, Minus, Period, Slash, Alpha0, Alpha1, Alpha2, Alpha3, Alpha4, Alpha5, Alpha6, Alpha7, Alpha8, Alpha9, Colon, Semicolon, Less, Equals, Greater, Question, At, LeftBracket, Backslash, RightBracket, Caret, Underscore, BackQuote, A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U, V, W, X, Y, Z, LeftCurlyBracket, Pipe, RightCurlyBracket, Tilde, Delete, Keypad0, Keypad1, Keypad2, Keypad3, Keypad4, Keypad5, Keypad6, Keypad7, Keypad8, Keypad9, KeypadPeriod, KeypadDivide, KeypadMultiply, KeypadMinus, KeypadPlus, KeypadEnter, KeypadEquals, UpArrow, DownArrow, RightArrow, LeftArrow, Insert, Home, End, PageUp, PageDown, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12, F13, F14, F15, Numlock, CapsLock, ScrollLock, RightShift, LeftShift, RightControl, LeftControl, RightAlt, LeftAlt, RightCommand, RightApple, LeftCommand, LeftApple, LeftWindows, RightWindows, AltGr, Help, Print, SysReq, Break, Menu, Mouse0, Mouse1, Mouse2, Mouse3, Mouse4, Mouse5, Mouse6, JoystickButton0, JoystickButton1, JoystickButton2, JoystickButton3, JoystickButton4, JoystickButton5, JoystickButton6, JoystickButton7, JoystickButton8, JoystickButton9, JoystickButton10, JoystickButton11, JoystickButton12, JoystickButton13, JoystickButton14, JoystickButton15, JoystickButton16, JoystickButton17, JoystickButton18, JoystickButton19, Joystick1Button0, Joystick1Button1, Joystick1Button2, Joystick1Button3, Joystick1Button4, Joystick1Button5, Joystick1Button6, Joystick1Button7, Joystick1Button8, Joystick1Button9, Joystick1Button10, Joystick1Button11, Joystick1Button12, Joystick1Button13, Joystick1Button14, Joystick1Button15, Joystick1Button16, Joystick1Button17, Joystick1Button18, Joystick1Button19, Joystick2Button0, Joystick2Button1, Joystick2Button2, Joystick2Button3, Joystick2Button4, Joystick2Button5, Joystick2Button6, Joystick2Button7, Joystick2Button8, Joystick2Button9, Joystick2Button10, Joystick2Button11, Joystick2Button12, Joystick2Button13, Joystick2Button14, Joystick2Button15, Joystick2Button16, Joystick2Button17, Joystick2Button18, Joystick2Button19, Joystick3Button0, Joystick3Button1, Joystick3Button2, Joystick3Button3, Joystick3Button4, Joystick3Button5, Joystick3Button6, Joystick3Button7, Joystick3Button8, Joystick3Button9, Joystick3Button10, Joystick3Button11, Joystick3Button12, Joystick3Button13, Joystick3Button14, Joystick3Button15, Joystick3Button16, Joystick3Button17, Joystick3Button18, Joystick3Button19, Joystick4Button0, Joystick4Button1, Joystick4Button2, Joystick4Button3, Joystick4Button4, Joystick4Button5, Joystick4Button6, Joystick4Button7, Joystick4Button8, Joystick4Button9, Joystick4Button10, Joystick4Button11, Joystick4Button12, Joystick4Button13, Joystick4Button14, Joystick4Button15, Joystick4Button16, Joystick4Button17, Joystick4Button18, Joystick4Button19, Joystick5Button0, Joystick5Button1, Joystick5Button2, Joystick5Button3, Joystick5Button4, Joystick5Button5, Joystick5Button6, Joystick5Button7, Joystick5Button8, Joystick5Button9, Joystick5Button10, Joystick5Button11, Joystick5Button12, Joystick5Button13, Joystick5Button14, Joystick5Button15, Joystick5Button16, Joystick5Button17, Joystick5Button18, Joystick5Button19, Joystick6Button0, Joystick6Button1, Joystick6Button2, Joystick6Button3, Joystick6Button4, Joystick6Button5, Joystick6Button6, Joystick6Button7, Joystick6Button8, Joystick6Button9, Joystick6Button10, Joystick6Button11, Joystick6Button12, Joystick6Button13, Joystick6Button14, Joystick6Button15, Joystick6Button16, Joystick6Button17, Joystick6Button18, Joystick6Button19, Joystick7Button0, Joystick7Button1, Joystick7Button2, Joystick7Button3, Joystick7Button4, Joystick7Button5, Joystick7Button6, Joystick7Button7, Joystick7Button8, Joystick7Button9, Joystick7Button10, Joystick7Button11, Joystick7Button12, Joystick7Button13, Joystick7Button14, Joystick7Button15, Joystick7Button16, Joystick7Button17, Joystick7Button18, Joystick7Button19, Joystick8Button0, Joystick8Button1, Joystick8Button2, Joystick8Button3, Joystick8Button4, Joystick8Button5, Joystick8Button6, Joystick8Button7, Joystick8Button8, Joystick8Button9, Joystick8Button10, Joystick8Button11, Joystick8Button12, Joystick8Button13, Joystick8Button14, Joystick8Button15, Joystick8Button16, Joystick8Button17, Joystick8Button18, Joystick8Button19 ChebGonaz_DraugrWandFollow = F ## The gamepad button to tell minions to follow. # Setting type: GamepadButton # Default value: ButtonWest # Acceptable values: None, DPadUp, DPadDown, DPadLeft, DPadRight, ButtonSouth, ButtonEast, ButtonWest, ButtonNorth, LeftShoulder, RightShoulder, LeftTrigger, RightTrigger, SelectButton, StartButton, LeftStickButton, RightStickButton ChebGonaz_DraugrWandFollowGamepad = ButtonWest ## The key to tell minions to wait. # Setting type: KeyCode # Default value: T # Acceptable values: None, Backspace, Tab, Clear, Return, Pause, Escape, Space, Exclaim, DoubleQuote, Hash, Dollar, Percent, Ampersand, Quote, LeftParen, RightParen, Asterisk, Plus, Comma, Minus, Period, Slash, Alpha0, Alpha1, Alpha2, Alpha3, Alpha4, Alpha5, Alpha6, Alpha7, Alpha8, Alpha9, Colon, Semicolon, Less, Equals, Greater, Question, At, LeftBracket, Backslash, RightBracket, Caret, Underscore, BackQuote, A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U, V, W, X, Y, Z, LeftCurlyBracket, Pipe, RightCurlyBracket, Tilde, Delete, Keypad0, Keypad1, Keypad2, Keypad3, Keypad4, Keypad5, Keypad6, Keypad7, Keypad8, Keypad9, KeypadPeriod, KeypadDivide, KeypadMultiply, KeypadMinus, KeypadPlus, KeypadEnter, KeypadEquals, UpArrow, DownArrow, RightArrow, LeftArrow, Insert, Home, End, PageUp, PageDown, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12, F13, F14, F15, Numlock, CapsLock, ScrollLock, RightShift, LeftShift, RightControl, LeftControl, RightAlt, LeftAlt, RightCommand, RightApple, LeftCommand, LeftApple, LeftWindows, RightWindows, AltGr, Help, Print, SysReq, Break, Menu, Mouse0, Mouse1, Mouse2, Mouse3, Mouse4, Mouse5, Mouse6, JoystickButton0, JoystickButton1, JoystickButton2, JoystickButton3, JoystickButton4, JoystickButton5, JoystickButton6, JoystickButton7, JoystickButton8, JoystickButton9, JoystickButton10, JoystickButton11, JoystickButton12, JoystickButton13, JoystickButton14, JoystickButton15, JoystickButton16, JoystickButton17, JoystickButton18, JoystickButton19, Joystick1Button0, Joystick1Button1, Joystick1Button2, Joystick1Button3, Joystick1Button4, Joystick1Button5, Joystick1Button6, Joystick1Button7, Joystick1Button8, Joystick1Button9, Joystick1Button10, Joystick1Button11, Joystick1Button12, Joystick1Button13, Joystick1Button14, Joystick1Button15, Joystick1Button16, Joystick1Button17, Joystick1Button18, Joystick1Button19, Joystick2Button0, Joystick2Button1, Joystick2Button2, Joystick2Button3, Joystick2Button4, Joystick2Button5, Joystick2Button6, Joystick2Button7, Joystick2Button8, Joystick2Button9, Joystick2Button10, Joystick2Button11, Joystick2Button12, Joystick2Button13, Joystick2Button14, Joystick2Button15, Joystick2Button16, Joystick2Button17, Joystick2Button18, Joystick2Button19, Joystick3Button0, Joystick3Button1, Joystick3Button2, Joystick3Button3, Joystick3Button4, Joystick3Button5, Joystick3Button6, Joystick3Button7, Joystick3Button8, Joystick3Button9, Joystick3Button10, Joystick3Button11, Joystick3Button12, Joystick3Button13, Joystick3Button14, Joystick3Button15, Joystick3Button16, Joystick3Button17, Joystick3Button18, Joystick3Button19, Joystick4Button0, Joystick4Button1, Joystick4Button2, Joystick4Button3, Joystick4Button4, Joystick4Button5, Joystick4Button6, Joystick4Button7, Joystick4Button8, Joystick4Button9, Joystick4Button10, Joystick4Button11, Joystick4Button12, Joystick4Button13, Joystick4Button14, Joystick4Button15, Joystick4Button16, Joystick4Button17, Joystick4Button18, Joystick4Button19, Joystick5Button0, Joystick5Button1, Joystick5Button2, Joystick5Button3, Joystick5Button4, Joystick5Button5, Joystick5Button6, Joystick5Button7, Joystick5Button8, Joystick5Button9, Joystick5Button10, Joystick5Button11, Joystick5Button12, Joystick5Button13, Joystick5Button14, Joystick5Button15, Joystick5Button16, Joystick5Button17, Joystick5Button18, Joystick5Button19, Joystick6Button0, Joystick6Button1, Joystick6Button2, Joystick6Button3, Joystick6Button4, Joystick6Button5, Joystick6Button6, Joystick6Button7, Joystick6Button8, Joystick6Button9, Joystick6Button10, Joystick6Button11, Joystick6Button12, Joystick6Button13, Joystick6Button14, Joystick6Button15, Joystick6Button16, Joystick6Button17, Joystick6Button18, Joystick6Button19, Joystick7Button0, Joystick7Button1, Joystick7Button2, Joystick7Button3, Joystick7Button4, Joystick7Button5, Joystick7Button6, Joystick7Button7, Joystick7Button8, Joystick7Button9, Joystick7Button10, Joystick7Button11, Joystick7Button12, Joystick7Button13, Joystick7Button14, Joystick7Button15, Joystick7Button16, Joystick7Button17, Joystick7Button18, Joystick7Button19, Joystick8Button0, Joystick8Button1, Joystick8Button2, Joystick8Button3, Joystick8Button4, Joystick8Button5, Joystick8Button6, Joystick8Button7, Joystick8Button8, Joystick8Button9, Joystick8Button10, Joystick8Button11, Joystick8Button12, Joystick8Button13, Joystick8Button14, Joystick8Button15, Joystick8Button16, Joystick8Button17, Joystick8Button18, Joystick8Button19 ChebGonaz_DraugrWandWait = T ## The gamepad button to tell minions to wait. # Setting type: GamepadButton # Default value: ButtonEast # Acceptable values: None, DPadUp, DPadDown, DPadLeft, DPadRight, ButtonSouth, ButtonEast, ButtonWest, ButtonNorth, LeftShoulder, RightShoulder, LeftTrigger, RightTrigger, SelectButton, StartButton, LeftStickButton, RightStickButton ChebGonaz_DraugrWandWaitGamepad = ButtonEast ## The key to teleport following minions to you. # Setting type: KeyCode # Default value: G # Acceptable values: None, Backspace, Tab, Clear, Return, Pause, Escape, Space, Exclaim, DoubleQuote, Hash, Dollar, Percent, Ampersand, Quote, LeftParen, RightParen, Asterisk, Plus, Comma, Minus, Period, Slash, Alpha0, Alpha1, Alpha2, Alpha3, Alpha4, Alpha5, Alpha6, Alpha7, Alpha8, Alpha9, Colon, Semicolon, Less, Equals, Greater, Question, At, LeftBracket, Backslash, RightBracket, Caret, Underscore, BackQuote, A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U, V, W, X, Y, Z, LeftCurlyBracket, Pipe, RightCurlyBracket, Tilde, Delete, Keypad0, Keypad1, Keypad2, Keypad3, Keypad4, Keypad5, Keypad6, Keypad7, Keypad8, Keypad9, KeypadPeriod, KeypadDivide, KeypadMultiply, KeypadMinus, KeypadPlus, KeypadEnter, KeypadEquals, UpArrow, DownArrow, RightArrow, LeftArrow, Insert, Home, End, PageUp, PageDown, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12, F13, F14, F15, Numlock, CapsLock, ScrollLock, RightShift, LeftShift, RightControl, LeftControl, RightAlt, LeftAlt, RightCommand, RightApple, LeftCommand, LeftApple, LeftWindows, RightWindows, AltGr, Help, Print, SysReq, Break, Menu, Mouse0, Mouse1, Mouse2, Mouse3, Mouse4, Mouse5, Mouse6, JoystickButton0, JoystickButton1, JoystickButton2, JoystickButton3, JoystickButton4, JoystickButton5, JoystickButton6, JoystickButton7, JoystickButton8, JoystickButton9, JoystickButton10, JoystickButton11, JoystickButton12, JoystickButton13, JoystickButton14, JoystickButton15, JoystickButton16, JoystickButton17, JoystickButton18, JoystickButton19, Joystick1Button0, Joystick1Button1, Joystick1Button2, Joystick1Button3, Joystick1Button4, Joystick1Button5, Joystick1Button6, Joystick1Button7, Joystick1Button8, Joystick1Button9, Joystick1Button10, Joystick1Button11, Joystick1Button12, Joystick1Button13, Joystick1Button14, Joystick1Button15, Joystick1Button16, Joystick1Button17, Joystick1Button18, Joystick1Button19, Joystick2Button0, Joystick2Button1, Joystick2Button2, Joystick2Button3, Joystick2Button4, Joystick2Button5, Joystick2Button6, Joystick2Button7, Joystick2Button8, Joystick2Button9, Joystick2Button10, Joystick2Button11, Joystick2Button12, Joystick2Button13, Joystick2Button14, Joystick2Button15, Joystick2Button16, Joystick2Button17, Joystick2Button18, Joystick2Button19, Joystick3Button0, Joystick3Button1, Joystick3Button2, Joystick3Button3, Joystick3Button4, Joystick3Button5, Joystick3Button6, Joystick3Button7, Joystick3Button8, Joystick3Button9, Joystick3Button10, Joystick3Button11, Joystick3Button12, Joystick3Button13, Joystick3Button14, Joystick3Button15, Joystick3Button16, Joystick3Button17, Joystick3Button18, Joystick3Button19, Joystick4Button0, Joystick4Button1, Joystick4Button2, Joystick4Button3, Joystick4Button4, Joystick4Button5, Joystick4Button6, Joystick4Button7, Joystick4Button8, Joystick4Button9, Joystick4Button10, Joystick4Button11, Joystick4Button12, Joystick4Button13, Joystick4Button14, Joystick4Button15, Joystick4Button16, Joystick4Button17, Joystick4Button18, Joystick4Button19, Joystick5Button0, Joystick5Button1, Joystick5Button2, Joystick5Button3, Joystick5Button4, Joystick5Button5, Joystick5Button6, Joystick5Button7, Joystick5Button8, Joystick5Button9, Joystick5Button10, Joystick5Button11, Joystick5Button12, Joystick5Button13, Joystick5Button14, Joystick5Button15, Joystick5Button16, Joystick5Button17, Joystick5Button18, Joystick5Button19, Joystick6Button0, Joystick6Button1, Joystick6Button2, Joystick6Button3, Joystick6Button4, Joystick6Button5, Joystick6Button6, Joystick6Button7, Joystick6Button8, Joystick6Button9, Joystick6Button10, Joystick6Button11, Joystick6Button12, Joystick6Button13, Joystick6Button14, Joystick6Button15, Joystick6Button16, Joystick6Button17, Joystick6Button18, Joystick6Button19, Joystick7Button0, Joystick7Button1, Joystick7Button2, Joystick7Button3, Joystick7Button4, Joystick7Button5, Joystick7Button6, Joystick7Button7, Joystick7Button8, Joystick7Button9, Joystick7Button10, Joystick7Button11, Joystick7Button12, Joystick7Button13, Joystick7Button14, Joystick7Button15, Joystick7Button16, Joystick7Button17, Joystick7Button18, Joystick7Button19, Joystick8Button0, Joystick8Button1, Joystick8Button2, Joystick8Button3, Joystick8Button4, Joystick8Button5, Joystick8Button6, Joystick8Button7, Joystick8Button8, Joystick8Button9, Joystick8Button10, Joystick8Button11, Joystick8Button12, Joystick8Button13, Joystick8Button14, Joystick8Button15, Joystick8Button16, Joystick8Button17, Joystick8Button18, Joystick8Button19 ChebGonaz_DraugrWandTeleport = G ## The gamepad button to teleport following minions to you. # Setting type: GamepadButton # Default value: SelectButton # Acceptable values: None, DPadUp, DPadDown, DPadLeft, DPadRight, ButtonSouth, ButtonEast, ButtonWest, ButtonNorth, LeftShoulder, RightShoulder, LeftTrigger, RightTrigger, SelectButton, StartButton, LeftStickButton, RightStickButton ChebGonaz_DraugrWandTeleportGamepad = SelectButton ## The key to permit consumption of additional resources when creating the minion eg. iron to make an armored skeleton. # Setting type: KeyCode # Default value: LeftShift # Acceptable values: None, Backspace, Tab, Clear, Return, Pause, Escape, Space, Exclaim, DoubleQuote, Hash, Dollar, Percent, Ampersand, Quote, LeftParen, RightParen, Asterisk, Plus, Comma, Minus, Period, Slash, Alpha0, Alpha1, Alpha2, Alpha3, Alpha4, Alpha5, Alpha6, Alpha7, Alpha8, Alpha9, Colon, Semicolon, Less, Equals, Greater, Question, At, LeftBracket, Backslash, RightBracket, Caret, Underscore, BackQuote, A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U, V, W, X, Y, Z, LeftCurlyBracket, Pipe, RightCurlyBracket, Tilde, Delete, Keypad0, Keypad1, Keypad2, Keypad3, Keypad4, Keypad5, Keypad6, Keypad7, Keypad8, Keypad9, KeypadPeriod, KeypadDivide, KeypadMultiply, KeypadMinus, KeypadPlus, KeypadEnter, KeypadEquals, UpArrow, DownArrow, RightArrow, LeftArrow, Insert, Home, End, PageUp, PageDown, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12, F13, F14, F15, Numlock, CapsLock, ScrollLock, RightShift, LeftShift, RightControl, LeftControl, RightAlt, LeftAlt, RightCommand, RightApple, LeftCommand, LeftApple, LeftWindows, RightWindows, AltGr, Help, Print, SysReq, Break, Menu, Mouse0, Mouse1, Mouse2, Mouse3, Mouse4, Mouse5, Mouse6, JoystickButton0, JoystickButton1, JoystickButton2, JoystickButton3, JoystickButton4, JoystickButton5, JoystickButton6, JoystickButton7, JoystickButton8, JoystickButton9, JoystickButton10, JoystickButton11, JoystickButton12, JoystickButton13, JoystickButton14, JoystickButton15, JoystickButton16, JoystickButton17, JoystickButton18, JoystickButton19, Joystick1Button0, Joystick1Button1, Joystick1Button2, Joystick1Button3, Joystick1Button4, Joystick1Button5, Joystick1Button6, Joystick1Button7, Joystick1Button8, Joystick1Button9, Joystick1Button10, Joystick1Button11, Joystick1Button12, Joystick1Button13, Joystick1Button14, Joystick1Button15, Joystick1Button16, Joystick1Button17, Joystick1Button18, Joystick1Button19, Joystick2Button0, Joystick2Button1, Joystick2Button2, Joystick2Button3, Joystick2Button4, Joystick2Button5, Joystick2Button6, Joystick2Button7, Joystick2Button8, Joystick2Button9, Joystick2Button10, Joystick2Button11, Joystick2Button12, Joystick2Button13, Joystick2Button14, Joystick2Button15, Joystick2Button16, Joystick2Button17, Joystick2Button18, Joystick2Button19, Joystick3Button0, Joystick3Button1, Joystick3Button2, Joystick3Button3, Joystick3Button4, Joystick3Button5, Joystick3Button6, Joystick3Button7, Joystick3Button8, Joystick3Button9, Joystick3Button10, Joystick3Button11, Joystick3Button12, Joystick3Button13, Joystick3Button14, Joystick3Button15, Joystick3Button16, Joystick3Button17, Joystick3Button18, Joystick3Button19, Joystick4Button0, Joystick4Button1, Joystick4Button2, Joystick4Button3, Joystick4Button4, Joystick4Button5, Joystick4Button6, Joystick4Button7, Joystick4Button8, Joystick4Button9, Joystick4Button10, Joystick4Button11, Joystick4Button12, Joystick4Button13, Joystick4Button14, Joystick4Button15, Joystick4Button16, Joystick4Button17, Joystick4Button18, Joystick4Button19, Joystick5Button0, Joystick5Button1, Joystick5Button2, Joystick5Button3, Joystick5Button4, Joystick5Button5, Joystick5Button6, Joystick5Button7, Joystick5Button8, Joystick5Button9, Joystick5Button10, Joystick5Button11, Joystick5Button12, Joystick5Button13, Joystick5Button14, Joystick5Button15, Joystick5Button16, Joystick5Button17, Joystick5Button18, Joystick5Button19, Joystick6Button0, Joystick6Button1, Joystick6Button2, Joystick6Button3, Joystick6Button4, Joystick6Button5, Joystick6Button6, Joystick6Button7, Joystick6Button8, Joystick6Button9, Joystick6Button10, Joystick6Button11, Joystick6Button12, Joystick6Button13, Joystick6Button14, Joystick6Button15, Joystick6Button16, Joystick6Button17, Joystick6Button18, Joystick6Button19, Joystick7Button0, Joystick7Button1, Joystick7Button2, Joystick7Button3, Joystick7Button4, Joystick7Button5, Joystick7Button6, Joystick7Button7, Joystick7Button8, Joystick7Button9, Joystick7Button10, Joystick7Button11, Joystick7Button12, Joystick7Button13, Joystick7Button14, Joystick7Button15, Joystick7Button16, Joystick7Button17, Joystick7Button18, Joystick7Button19, Joystick8Button0, Joystick8Button1, Joystick8Button2, Joystick8Button3, Joystick8Button4, Joystick8Button5, Joystick8Button6, Joystick8Button7, Joystick8Button8, Joystick8Button9, Joystick8Button10, Joystick8Button11, Joystick8Button12, Joystick8Button13, Joystick8Button14, Joystick8Button15, Joystick8Button16, Joystick8Button17, Joystick8Button18, Joystick8Button19 ChebGonaz_DraugrWandUnlockExtraResourceConsumption = LeftShift ## The key to create a mage minion with. # Setting type: KeyCode # Default value: B # Acceptable values: None, Backspace, Tab, Clear, Return, Pause, Escape, Space, Exclaim, DoubleQuote, Hash, Dollar, Percent, Ampersand, Quote, LeftParen, RightParen, Asterisk, Plus, Comma, Minus, Period, Slash, Alpha0, Alpha1, Alpha2, Alpha3, Alpha4, Alpha5, Alpha6, Alpha7, Alpha8, Alpha9, Colon, Semicolon, Less, Equals, Greater, Question, At, LeftBracket, Backslash, RightBracket, Caret, Underscore, BackQuote, A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U, V, W, X, Y, Z, LeftCurlyBracket, Pipe, RightCurlyBracket, Tilde, Delete, Keypad0, Keypad1, Keypad2, Keypad3, Keypad4, Keypad5, Keypad6, Keypad7, Keypad8, Keypad9, KeypadPeriod, KeypadDivide, KeypadMultiply, KeypadMinus, KeypadPlus, KeypadEnter, KeypadEquals, UpArrow, DownArrow, RightArrow, LeftArrow, Insert, Home, End, PageUp, PageDown, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12, F13, F14, F15, Numlock, CapsLock, ScrollLock, RightShift, LeftShift, RightControl, LeftControl, RightAlt, LeftAlt, RightCommand, RightApple, LeftCommand, LeftApple, LeftWindows, RightWindows, AltGr, Help, Print, SysReq, Break, Menu, Mouse0, Mouse1, Mouse2, Mouse3, Mouse4, Mouse5, Mouse6, JoystickButton0, JoystickButton1, JoystickButton2, JoystickButton3, JoystickButton4, JoystickButton5, JoystickButton6, JoystickButton7, JoystickButton8, JoystickButton9, JoystickButton10, JoystickButton11, JoystickButton12, JoystickButton13, JoystickButton14, JoystickButton15, JoystickButton16, JoystickButton17, JoystickButton18, JoystickButton19, Joystick1Button0, Joystick1Button1, Joystick1Button2, Joystick1Button3, Joystick1Button4, Joystick1Button5, Joystick1Button6, Joystick1Button7, Joystick1Button8, Joystick1Button9, Joystick1Button10, Joystick1Button11, Joystick1Button12, Joystick1Button13, Joystick1Button14, Joystick1Button15, Joystick1Button16, Joystick1Button17, Joystick1Button18, Joystick1Button19, Joystick2Button0, Joystick2Button1, Joystick2Button2, Joystick2Button3, Joystick2Button4, Joystick2Button5, Joystick2Button6, Joystick2Button7, Joystick2Button8, Joystick2Button9, Joystick2Button10, Joystick2Button11, Joystick2Button12, Joystick2Button13, Joystick2Button14, Joystick2Button15, Joystick2Button16, Joystick2Button17, Joystick2Button18, Joystick2Button19, Joystick3Button0, Joystick3Button1, Joystick3Button2, Joystick3Button3, Joystick3Button4, Joystick3Button5, Joystick3Button6, Joystick3Button7, Joystick3Button8, Joystick3Button9, Joystick3Button10, Joystick3Button11, Joystick3Button12, Joystick3Button13, Joystick3Button14, Joystick3Button15, Joystick3Button16, Joystick3Button17, Joystick3Button18, Joystick3Button19, Joystick4Button0, Joystick4Button1, Joystick4Button2, Joystick4Button3, Joystick4Button4, Joystick4Button5, Joystick4Button6, Joystick4Button7, Joystick4Button8, Joystick4Button9, Joystick4Button10, Joystick4Button11, Joystick4Button12, Joystick4Button13, Joystick4Button14, Joystick4Button15, Joystick4Button16, Joystick4Button17, Joystick4Button18, Joystick4Button19, Joystick5Button0, Joystick5Button1, Joystick5Button2, Joystick5Button3, Joystick5Button4, Joystick5Button5, Joystick5Button6, Joystick5Button7, Joystick5Button8, Joystick5Button9, Joystick5Button10, Joystick5Button11, Joystick5Button12, Joystick5Button13, Joystick5Button14, Joystick5Button15, Joystick5Button16, Joystick5Button17, Joystick5Button18, Joystick5Button19, Joystick6Button0, Joystick6Button1, Joystick6Button2, Joystick6Button3, Joystick6Button4, Joystick6Button5, Joystick6Button6, Joystick6Button7, Joystick6Button8, Joystick6Button9, Joystick6Button10, Joystick6Button11, Joystick6Button12, Joystick6Button13, Joystick6Button14, Joystick6Button15, Joystick6Button16, Joystick6Button17, Joystick6Button18, Joystick6Button19, Joystick7Button0, Joystick7Button1, Joystick7Button2, Joystick7Button3, Joystick7Button4, Joystick7Button5, Joystick7Button6, Joystick7Button7, Joystick7Button8, Joystick7Button9, Joystick7Button10, Joystick7Button11, Joystick7Button12, Joystick7Button13, Joystick7Button14, Joystick7Button15, Joystick7Button16, Joystick7Button17, Joystick7Button18, Joystick7Button19, Joystick8Button0, Joystick8Button1, Joystick8Button2, Joystick8Button3, Joystick8Button4, Joystick8Button5, Joystick8Button6, Joystick8Button7, Joystick8Button8, Joystick8Button9, Joystick8Button10, Joystick8Button11, Joystick8Button12, Joystick8Button13, Joystick8Button14, Joystick8Button15, Joystick8Button16, Joystick8Button17, Joystick8Button18, Joystick8Button19 ChebGonaz_OrbOfBeckoningCreateMageMinion = B ## The key to gamepad button to create a mage minion with. # Setting type: GamepadButton # Default value: ButtonSouth # Acceptable values: None, DPadUp, DPadDown, DPadLeft, DPadRight, ButtonSouth, ButtonEast, ButtonWest, ButtonNorth, LeftShoulder, RightShoulder, LeftTrigger, RightTrigger, SelectButton, StartButton, LeftStickButton, RightStickButton ChebGonaz_OrbOfBeckoningCreateMageMinionGamepad = ButtonSouth ## The key to tell minions to follow. # Setting type: KeyCode # Default value: F # Acceptable values: None, Backspace, Tab, Clear, Return, Pause, Escape, Space, Exclaim, DoubleQuote, Hash, Dollar, Percent, Ampersand, Quote, LeftParen, RightParen, Asterisk, Plus, Comma, Minus, Period, Slash, Alpha0, Alpha1, Alpha2, Alpha3, Alpha4, Alpha5, Alpha6, Alpha7, Alpha8, Alpha9, Colon, Semicolon, Less, Equals, Greater, Question, At, LeftBracket, Backslash, RightBracket, Caret, Underscore, BackQuote, A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U, V, W, X, Y, Z, LeftCurlyBracket, Pipe, RightCurlyBracket, Tilde, Delete, Keypad0, Keypad1, Keypad2, Keypad3, Keypad4, Keypad5, Keypad6, Keypad7, Keypad8, Keypad9, KeypadPeriod, KeypadDivide, KeypadMultiply, KeypadMinus, KeypadPlus, KeypadEnter, KeypadEquals, UpArrow, DownArrow, RightArrow, LeftArrow, Insert, Home, End, PageUp, PageDown, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12, F13, F14, F15, Numlock, CapsLock, ScrollLock, RightShift, LeftShift, RightControl, LeftControl, RightAlt, LeftAlt, RightCommand, RightApple, LeftCommand, LeftApple, LeftWindows, RightWindows, AltGr, Help, Print, SysReq, Break, Menu, Mouse0, Mouse1, Mouse2, Mouse3, Mouse4, Mouse5, Mouse6, JoystickButton0, JoystickButton1, JoystickButton2, JoystickButton3, JoystickButton4, JoystickButton5, JoystickButton6, JoystickButton7, JoystickButton8, JoystickButton9, JoystickButton10, JoystickButton11, JoystickButton12, JoystickButton13, JoystickButton14, JoystickButton15, JoystickButton16, JoystickButton17, JoystickButton18, JoystickButton19, Joystick1Button0, Joystick1Button1, Joystick1Button2, Joystick1Button3, Joystick1Button4, Joystick1Button5, Joystick1Button6, Joystick1Button7, Joystick1Button8, Joystick1Button9, Joystick1Button10, Joystick1Button11, Joystick1Button12, Joystick1Button13, Joystick1Button14, Joystick1Button15, Joystick1Button16, Joystick1Button17, Joystick1Button18, Joystick1Button19, Joystick2Button0, Joystick2Button1, Joystick2Button2, Joystick2Button3, Joystick2Button4, Joystick2Button5, Joystick2Button6, Joystick2Button7, Joystick2Button8, Joystick2Button9, Joystick2Button10, Joystick2Button11, Joystick2Button12, Joystick2Button13, Joystick2Button14, Joystick2Button15, Joystick2Button16, Joystick2Button17, Joystick2Button18, Joystick2Button19, Joystick3Button0, Joystick3Button1, Joystick3Button2, Joystick3Button3, Joystick3Button4, Joystick3Button5, Joystick3Button6, Joystick3Button7, Joystick3Button8, Joystick3Button9, Joystick3Button10, Joystick3Button11, Joystick3Button12, Joystick3Button13, Joystick3Button14, Joystick3Button15, Joystick3Button16, Joystick3Button17, Joystick3Button18, Joystick3Button19, Joystick4Button0, Joystick4Button1, Joystick4Button2, Joystick4Button3, Joystick4Button4, Joystick4Button5, Joystick4Button6, Joystick4Button7, Joystick4Button8, Joystick4Button9, Joystick4Button10, Joystick4Button11, Joystick4Button12, Joystick4Button13, Joystick4Button14, Joystick4Button15, Joystick4Button16, Joystick4Button17, Joystick4Button18, Joystick4Button19, Joystick5Button0, Joystick5Button1, Joystick5Button2, Joystick5Button3, Joystick5Button4, Joystick5Button5, Joystick5Button6, Joystick5Button7, Joystick5Button8, Joystick5Button9, Joystick5Button10, Joystick5Button11, Joystick5Button12, Joystick5Button13, Joystick5Button14, Joystick5Button15, Joystick5Button16, Joystick5Button17, Joystick5Button18, Joystick5Button19, Joystick6Button0, Joystick6Button1, Joystick6Button2, Joystick6Button3, Joystick6Button4, Joystick6Button5, Joystick6Button6, Joystick6Button7, Joystick6Button8, Joystick6Button9, Joystick6Button10, Joystick6Button11, Joystick6Button12, Joystick6Button13, Joystick6Button14, Joystick6Button15, Joystick6Button16, Joystick6Button17, Joystick6Button18, Joystick6Button19, Joystick7Button0, Joystick7Button1, Joystick7Button2, Joystick7Button3, Joystick7Button4, Joystick7Button5, Joystick7Button6, Joystick7Button7, Joystick7Button8, Joystick7Button9, Joystick7Button10, Joystick7Button11, Joystick7Button12, Joystick7Button13, Joystick7Button14, Joystick7Button15, Joystick7Button16, Joystick7Button17, Joystick7Button18, Joystick7Button19, Joystick8Button0, Joystick8Button1, Joystick8Button2, Joystick8Button3, Joystick8Button4, Joystick8Button5, Joystick8Button6, Joystick8Button7, Joystick8Button8, Joystick8Button9, Joystick8Button10, Joystick8Button11, Joystick8Button12, Joystick8Button13, Joystick8Button14, Joystick8Button15, Joystick8Button16, Joystick8Button17, Joystick8Button18, Joystick8Button19 ChebGonaz_OrbOfBeckoningFollow = F ## The gamepad button to tell minions to follow. # Setting type: GamepadButton # Default value: ButtonWest # Acceptable values: None, DPadUp, DPadDown, DPadLeft, DPadRight, ButtonSouth, ButtonEast, ButtonWest, ButtonNorth, LeftShoulder, RightShoulder, LeftTrigger, RightTrigger, SelectButton, StartButton, LeftStickButton, RightStickButton ChebGonaz_OrbOfBeckoningFollowGamepad = ButtonWest ## The key to tell minions to wait. # Setting type: KeyCode # Default value: T # Acceptable values: None, Backspace, Tab, Clear, Return, Pause, Escape, Space, Exclaim, DoubleQuote, Hash, Dollar, Percent, Ampersand, Quote, LeftParen, RightParen, Asterisk, Plus, Comma, Minus, Period, Slash, Alpha0, Alpha1, Alpha2, Alpha3, Alpha4, Alpha5, Alpha6, Alpha7, Alpha8, Alpha9, Colon, Semicolon, Less, Equals, Greater, Question, At, LeftBracket, Backslash, RightBracket, Caret, Underscore, BackQuote, A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U, V, W, X, Y, Z, LeftCurlyBracket, Pipe, RightCurlyBracket, Tilde, Delete, Keypad0, Keypad1, Keypad2, Keypad3, Keypad4, Keypad5, Keypad6, Keypad7, Keypad8, Keypad9, KeypadPeriod, KeypadDivide, KeypadMultiply, KeypadMinus, KeypadPlus, KeypadEnter, KeypadEquals, UpArrow, DownArrow, RightArrow, LeftArrow, Insert, Home, End, PageUp, PageDown, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12, F13, F14, F15, Numlock, CapsLock, ScrollLock, RightShift, LeftShift, RightControl, LeftControl, RightAlt, LeftAlt, RightCommand, RightApple, LeftCommand, LeftApple, LeftWindows, RightWindows, AltGr, Help, Print, SysReq, Break, Menu, Mouse0, Mouse1, Mouse2, Mouse3, Mouse4, Mouse5, Mouse6, JoystickButton0, JoystickButton1, JoystickButton2, JoystickButton3, JoystickButton4, JoystickButton5, JoystickButton6, JoystickButton7, JoystickButton8, JoystickButton9, JoystickButton10, JoystickButton11, JoystickButton12, JoystickButton13, JoystickButton14, JoystickButton15, JoystickButton16, JoystickButton17, JoystickButton18, JoystickButton19, Joystick1Button0, Joystick1Button1, Joystick1Button2, Joystick1Button3, Joystick1Button4, Joystick1Button5, Joystick1Button6, Joystick1Button7, Joystick1Button8, Joystick1Button9, Joystick1Button10, Joystick1Button11, Joystick1Button12, Joystick1Button13, Joystick1Button14, Joystick1Button15, Joystick1Button16, Joystick1Button17, Joystick1Button18, Joystick1Button19, Joystick2Button0, Joystick2Button1, Joystick2Button2, Joystick2Button3, Joystick2Button4, Joystick2Button5, Joystick2Button6, Joystick2Button7, Joystick2Button8, Joystick2Button9, Joystick2Button10, Joystick2Button11, Joystick2Button12, Joystick2Button13, Joystick2Button14, Joystick2Button15, Joystick2Button16, Joystick2Button17, Joystick2Button18, Joystick2Button19, Joystick3Button0, Joystick3Button1, Joystick3Button2, Joystick3Button3, Joystick3Button4, Joystick3Button5, Joystick3Button6, Joystick3Button7, Joystick3Button8, Joystick3Button9, Joystick3Button10, Joystick3Button11, Joystick3Button12, Joystick3Button13, Joystick3Button14, Joystick3Button15, Joystick3Button16, Joystick3Button17, Joystick3Button18, Joystick3Button19, Joystick4Button0, Joystick4Button1, Joystick4Button2, Joystick4Button3, Joystick4Button4, Joystick4Button5, Joystick4Button6, Joystick4Button7, Joystick4Button8, Joystick4Button9, Joystick4Button10, Joystick4Button11, Joystick4Button12, Joystick4Button13, Joystick4Button14, Joystick4Button15, Joystick4Button16, Joystick4Button17, Joystick4Button18, Joystick4Button19, Joystick5Button0, Joystick5Button1, Joystick5Button2, Joystick5Button3, Joystick5Button4, Joystick5Button5, Joystick5Button6, Joystick5Button7, Joystick5Button8, Joystick5Button9, Joystick5Button10, Joystick5Button11, Joystick5Button12, Joystick5Button13, Joystick5Button14, Joystick5Button15, Joystick5Button16, Joystick5Button17, Joystick5Button18, Joystick5Button19, Joystick6Button0, Joystick6Button1, Joystick6Button2, Joystick6Button3, Joystick6Button4, Joystick6Button5, Joystick6Button6, Joystick6Button7, Joystick6Button8, Joystick6Button9, Joystick6Button10, Joystick6Button11, Joystick6Button12, Joystick6Button13, Joystick6Button14, Joystick6Button15, Joystick6Button16, Joystick6Button17, Joystick6Button18, Joystick6Button19, Joystick7Button0, Joystick7Button1, Joystick7Button2, Joystick7Button3, Joystick7Button4, Joystick7Button5, Joystick7Button6, Joystick7Button7, Joystick7Button8, Joystick7Button9, Joystick7Button10, Joystick7Button11, Joystick7Button12, Joystick7Button13, Joystick7Button14, Joystick7Button15, Joystick7Button16, Joystick7Button17, Joystick7Button18, Joystick7Button19, Joystick8Button0, Joystick8Button1, Joystick8Button2, Joystick8Button3, Joystick8Button4, Joystick8Button5, Joystick8Button6, Joystick8Button7, Joystick8Button8, Joystick8Button9, Joystick8Button10, Joystick8Button11, Joystick8Button12, Joystick8Button13, Joystick8Button14, Joystick8Button15, Joystick8Button16, Joystick8Button17, Joystick8Button18, Joystick8Button19 ChebGonaz_OrbOfBeckoningWait = T ## The gamepad button to tell minions to wait. # Setting type: GamepadButton # Default value: ButtonEast # Acceptable values: None, DPadUp, DPadDown, DPadLeft, DPadRight, ButtonSouth, ButtonEast, ButtonWest, ButtonNorth, LeftShoulder, RightShoulder, LeftTrigger, RightTrigger, SelectButton, StartButton, LeftStickButton, RightStickButton ChebGonaz_OrbOfBeckoningWaitGamepad = ButtonEast ## The key to teleport following minions to you. # Setting type: KeyCode # Default value: G # Acceptable values: None, Backspace, Tab, Clear, Return, Pause, Escape, Space, Exclaim, DoubleQuote, Hash, Dollar, Percent, Ampersand, Quote, LeftParen, RightParen, Asterisk, Plus, Comma, Minus, Period, Slash, Alpha0, Alpha1, Alpha2, Alpha3, Alpha4, Alpha5, Alpha6, Alpha7, Alpha8, Alpha9, Colon, Semicolon, Less, Equals, Greater, Question, At, LeftBracket, Backslash, RightBracket, Caret, Underscore, BackQuote, A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U, V, W, X, Y, Z, LeftCurlyBracket, Pipe, RightCurlyBracket, Tilde, Delete, Keypad0, Keypad1, Keypad2, Keypad3, Keypad4, Keypad5, Keypad6, Keypad7, Keypad8, Keypad9, KeypadPeriod, KeypadDivide, KeypadMultiply, KeypadMinus, KeypadPlus, KeypadEnter, KeypadEquals, UpArrow, DownArrow, RightArrow, LeftArrow, Insert, Home, End, PageUp, PageDown, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12, F13, F14, F15, Numlock, CapsLock, ScrollLock, RightShift, LeftShift, RightControl, LeftControl, RightAlt, LeftAlt, RightCommand, RightApple, LeftCommand, LeftApple, LeftWindows, RightWindows, AltGr, Help, Print, SysReq, Break, Menu, Mouse0, Mouse1, Mouse2, Mouse3, Mouse4, Mouse5, Mouse6, JoystickButton0, JoystickButton1, JoystickButton2, JoystickButton3, JoystickButton4, JoystickButton5, JoystickButton6, JoystickButton7, JoystickButton8, JoystickButton9, JoystickButton10, JoystickButton11, JoystickButton12, JoystickButton13, JoystickButton14, JoystickButton15, JoystickButton16, JoystickButton17, JoystickButton18, JoystickButton19, Joystick1Button0, Joystick1Button1, Joystick1Button2, Joystick1Button3, Joystick1Button4, Joystick1Button5, Joystick1Button6, Joystick1Button7, Joystick1Button8, Joystick1Button9, Joystick1Button10, Joystick1Button11, Joystick1Button12, Joystick1Button13, Joystick1Button14, Joystick1Button15, Joystick1Button16, Joystick1Button17, Joystick1Button18, Joystick1Button19, Joystick2Button0, Joystick2Button1, Joystick2Button2, Joystick2Button3, Joystick2Button4, Joystick2Button5, Joystick2Button6, Joystick2Button7, Joystick2Button8, Joystick2Button9, Joystick2Button10, Joystick2Button11, Joystick2Button12, Joystick2Button13, Joystick2Button14, Joystick2Button15, Joystick2Button16, Joystick2Button17, Joystick2Button18, Joystick2Button19, Joystick3Button0, Joystick3Button1, Joystick3Button2, Joystick3Button3, Joystick3Button4, Joystick3Button5, Joystick3Button6, Joystick3Button7, Joystick3Button8, Joystick3Button9, Joystick3Button10, Joystick3Button11, Joystick3Button12, Joystick3Button13, Joystick3Button14, Joystick3Button15, Joystick3Button16, Joystick3Button17, Joystick3Button18, Joystick3Button19, Joystick4Button0, Joystick4Button1, Joystick4Button2, Joystick4Button3, Joystick4Button4, Joystick4Button5, Joystick4Button6, Joystick4Button7, Joystick4Button8, Joystick4Button9, Joystick4Button10, Joystick4Button11, Joystick4Button12, Joystick4Button13, Joystick4Button14, Joystick4Button15, Joystick4Button16, Joystick4Button17, Joystick4Button18, Joystick4Button19, Joystick5Button0, Joystick5Button1, Joystick5Button2, Joystick5Button3, Joystick5Button4, Joystick5Button5, Joystick5Button6, Joystick5Button7, Joystick5Button8, Joystick5Button9, Joystick5Button10, Joystick5Button11, Joystick5Button12, Joystick5Button13, Joystick5Button14, Joystick5Button15, Joystick5Button16, Joystick5Button17, Joystick5Button18, Joystick5Button19, Joystick6Button0, Joystick6Button1, Joystick6Button2, Joystick6Button3, Joystick6Button4, Joystick6Button5, Joystick6Button6, Joystick6Button7, Joystick6Button8, Joystick6Button9, Joystick6Button10, Joystick6Button11, Joystick6Button12, Joystick6Button13, Joystick6Button14, Joystick6Button15, Joystick6Button16, Joystick6Button17, Joystick6Button18, Joystick6Button19, Joystick7Button0, Joystick7Button1, Joystick7Button2, Joystick7Button3, Joystick7Button4, Joystick7Button5, Joystick7Button6, Joystick7Button7, Joystick7Button8, Joystick7Button9, Joystick7Button10, Joystick7Button11, Joystick7Button12, Joystick7Button13, Joystick7Button14, Joystick7Button15, Joystick7Button16, Joystick7Button17, Joystick7Button18, Joystick7Button19, Joystick8Button0, Joystick8Button1, Joystick8Button2, Joystick8Button3, Joystick8Button4, Joystick8Button5, Joystick8Button6, Joystick8Button7, Joystick8Button8, Joystick8Button9, Joystick8Button10, Joystick8Button11, Joystick8Button12, Joystick8Button13, Joystick8Button14, Joystick8Button15, Joystick8Button16, Joystick8Button17, Joystick8Button18, Joystick8Button19 ChebGonaz_OrbOfBeckoningTeleport = G ## The gamepad button to teleport following minions to you. # Setting type: GamepadButton # Default value: SelectButton # Acceptable values: None, DPadUp, DPadDown, DPadLeft, DPadRight, ButtonSouth, ButtonEast, ButtonWest, ButtonNorth, LeftShoulder, RightShoulder, LeftTrigger, RightTrigger, SelectButton, StartButton, LeftStickButton, RightStickButton ChebGonaz_OrbOfBeckoningTeleportGamepad = SelectButton ## The key to permit consumption of additional resources when creating the minion eg. iron to make an armored skeleton. # Setting type: KeyCode # Default value: LeftShift # Acceptable values: None, Backspace, Tab, Clear, Return, Pause, Escape, Space, Exclaim, DoubleQuote, Hash, Dollar, Percent, Ampersand, Quote, LeftParen, RightParen, Asterisk, Plus, Comma, Minus, Period, Slash, Alpha0, Alpha1, Alpha2, Alpha3, Alpha4, Alpha5, Alpha6, Alpha7, Alpha8, Alpha9, Colon, Semicolon, Less, Equals, Greater, Question, At, LeftBracket, Backslash, RightBracket, Caret, Underscore, BackQuote, A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U, V, W, X, Y, Z, LeftCurlyBracket, Pipe, RightCurlyBracket, Tilde, Delete, Keypad0, Keypad1, Keypad2, Keypad3, Keypad4, Keypad5, Keypad6, Keypad7, Keypad8, Keypad9, KeypadPeriod, KeypadDivide, KeypadMultiply, KeypadMinus, KeypadPlus, KeypadEnter, KeypadEquals, UpArrow, DownArrow, RightArrow, LeftArrow, Insert, Home, End, PageUp, PageDown, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12, F13, F14, F15, Numlock, CapsLock, ScrollLock, RightShift, LeftShift, RightControl, LeftControl, RightAlt, LeftAlt, RightCommand, RightApple, LeftCommand, LeftApple, LeftWindows, RightWindows, AltGr, Help, Print, SysReq, Break, Menu, Mouse0, Mouse1, Mouse2, Mouse3, Mouse4, Mouse5, Mouse6, JoystickButton0, JoystickButton1, JoystickButton2, JoystickButton3, JoystickButton4, JoystickButton5, JoystickButton6, JoystickButton7, JoystickButton8, JoystickButton9, JoystickButton10, JoystickButton11, JoystickButton12, JoystickButton13, JoystickButton14, JoystickButton15, JoystickButton16, JoystickButton17, JoystickButton18, JoystickButton19, Joystick1Button0, Joystick1Button1, Joystick1Button2, Joystick1Button3, Joystick1Button4, Joystick1Button5, Joystick1Button6, Joystick1Button7, Joystick1Button8, Joystick1Button9, Joystick1Button10, Joystick1Button11, Joystick1Button12, Joystick1Button13, Joystick1Button14, Joystick1Button15, Joystick1Button16, Joystick1Button17, Joystick1Button18, Joystick1Button19, Joystick2Button0, Joystick2Button1, Joystick2Button2, Joystick2Button3, Joystick2Button4, Joystick2Button5, Joystick2Button6, Joystick2Button7, Joystick2Button8, Joystick2Button9, Joystick2Button10, Joystick2Button11, Joystick2Button12, Joystick2Button13, Joystick2Button14, Joystick2Button15, Joystick2Button16, Joystick2Button17, Joystick2Button18, Joystick2Button19, Joystick3Button0, Joystick3Button1, Joystick3Button2, Joystick3Button3, Joystick3Button4, Joystick3Button5, Joystick3Button6, Joystick3Button7, Joystick3Button8, Joystick3Button9, Joystick3Button10, Joystick3Button11, Joystick3Button12, Joystick3Button13, Joystick3Button14, Joystick3Button15, Joystick3Button16, Joystick3Button17, Joystick3Button18, Joystick3Button19, Joystick4Button0, Joystick4Button1, Joystick4Button2, Joystick4Button3, Joystick4Button4, Joystick4Button5, Joystick4Button6, Joystick4Button7, Joystick4Button8, Joystick4Button9, Joystick4Button10, Joystick4Button11, Joystick4Button12, Joystick4Button13, Joystick4Button14, Joystick4Button15, Joystick4Button16, Joystick4Button17, Joystick4Button18, Joystick4Button19, Joystick5Button0, Joystick5Button1, Joystick5Button2, Joystick5Button3, Joystick5Button4, Joystick5Button5, Joystick5Button6, Joystick5Button7, Joystick5Button8, Joystick5Button9, Joystick5Button10, Joystick5Button11, Joystick5Button12, Joystick5Button13, Joystick5Button14, Joystick5Button15, Joystick5Button16, Joystick5Button17, Joystick5Button18, Joystick5Button19, Joystick6Button0, Joystick6Button1, Joystick6Button2, Joystick6Button3, Joystick6Button4, Joystick6Button5, Joystick6Button6, Joystick6Button7, Joystick6Button8, Joystick6Button9, Joystick6Button10, Joystick6Button11, Joystick6Button12, Joystick6Button13, Joystick6Button14, Joystick6Button15, Joystick6Button16, Joystick6Button17, Joystick6Button18, Joystick6Button19, Joystick7Button0, Joystick7Button1, Joystick7Button2, Joystick7Button3, Joystick7Button4, Joystick7Button5, Joystick7Button6, Joystick7Button7, Joystick7Button8, Joystick7Button9, Joystick7Button10, Joystick7Button11, Joystick7Button12, Joystick7Button13, Joystick7Button14, Joystick7Button15, Joystick7Button16, Joystick7Button17, Joystick7Button18, Joystick7Button19, Joystick8Button0, Joystick8Button1, Joystick8Button2, Joystick8Button3, Joystick8Button4, Joystick8Button5, Joystick8Button6, Joystick8Button7, Joystick8Button8, Joystick8Button9, Joystick8Button10, Joystick8Button11, Joystick8Button12, Joystick8Button13, Joystick8Button14, Joystick8Button15, Joystick8Button16, Joystick8Button17, Joystick8Button18, Joystick8Button19 ChebGonaz_OrbOfBeckoningUnlockExtraResourceConsumption = LeftShift [LeechMinion (Server Synced)] ## Set to false to disable leeches. # Setting type: Boolean # Default value: true Allowed = true ## Whether a minion refunds anything when it dies. # Setting type: DropType # Default value: JustResources # Acceptable values: Nothing, JustResources, Everything DropOnDeath = JustResources ## If set to true, dropped items will be packed into a cargo crate. This means they won't sink in water, which is useful for more valuable drops like Surtling Cores and metal ingots. # Setting type: Boolean # Default value: true PackDroppedItemsIntoCargoCrate = true ## The maximum leeches allowed to be created (0 = unlimited). # Setting type: Int32 # Default value: 0 MaximumLeech = 0 ## Attention: has no effect if minion limits are off. Increases player's maximum minion count by 1 every X levels. For example, if the limit is 3 leeches and this is set to 10, then at level 10 Necromancy the player can have 4 minions. Then 5 at level 20, and so on. # Setting type: Int32 # Default value: 10 MinionLimitIncrementsEveryXLevels = 10 ## HP = BaseHealth + NecromancyLevel * HealthMultiplier # Setting type: Single # Default value: 50 LeechBaseHealth = 50 ## HP = BaseHealth + NecromancyLevel * HealthMultiplier # Setting type: Single # Default value: 0.5 LeechHealthMultiplier = 0.5 ## The amount of bags required to summon a leech. # Setting type: Int32 # Default value: 2 BloodBagsRequired = 2 ## The amount of intestines required to summon a leech. # Setting type: Int32 # Default value: 2 IntestinesRequired = 2 ## Star Quality of tier 1 Leech minions # Setting type: Int32 # Default value: 1 LeechTierOneQuality = 1 ## Star Quality of tier 2 Leech minions # Setting type: Int32 # Default value: 2 LeechTierTwoQuality = 2 ## Necromancy skill level required to summon Tier 2 Leech # Setting type: Int32 # Default value: 35 LeechTierTwoLevelReq = 35 ## Star Quality of tier 3 Leech minions # Setting type: Int32 # Default value: 3 LeechTierThreeQuality = 3 ## Necromancy skill level required to summon Tier 3 Leech # Setting type: Int32 # Default value: 70 LeechTierThreeLevelReq = 70 ## How much creating a leech contributes to necromancy level. # Setting type: Single # Default value: 1 LevelIncrease = 1 [NeckroGatherer (Client)] ## The maximum amount of time, in seconds, before a Neckro is forced to return whatever it is currently carrying. If set to 0, this condition is ignored. # Setting type: Single # Default value: 0 MaxSecondsBeforeDropoff = 0 [NeckroGatherer (Server Synced)] ## Whether the Neckro Gatherer is allowed or not. # Setting type: Boolean # Default value: true NeckroGathererAllowed = true ## The radius in which the Neckro Gatherer can see items from. # Setting type: Single # Default value: 500 NeckroGathererLookRadius = 500 ## The radius in which the Neckro Gatherer looks for a container to store its load in. # Setting type: Single # Default value: 1000 NeckroGathererDropoffPointRadius = 1000 ## The delay, in seconds, between item searching & pickup attempts. Attention: small values may impact performance. # Setting type: Single # Default value: 6 NeckroGathererUpdateDelay = 6 ## The Neckro won't pick up items immediately upon seeing them. Rather, it will make note of them and pick them up if they're still on the ground after this delay. # Setting type: Single # Default value: 10 NeckroGathererPickupDelay = 10 ## How close a Neckro needs to be to an item to pick it up. # Setting type: Single # Default value: 5 NeckroGathererPickupDistance = 5 ## The containers that are considered dropoff points. Please use a comma-delimited list of prefab names. # Setting type: String # Default value: piece_chest_wood ContainerWhitelist = piece_chest_wood [NeckroGathererPylon] ## Whether making a the pylon is allowed or not. [Synced with Server] # Setting type: Boolean # Default value: true # Acceptable values: True, False NeckroGathererPylonAllowed = true ## Materials needed to build the pylon. None or Blank will use Default settings. Format: :[[,:], ...] [Synced with Server] # Setting type: String # Default value: Stone:15,NeckTail:25,SurtlingCore:1 NeckroGathererPylonBuildCosts = Stone:15,NeckTail:25,SurtlingCore:1 ## How often the pylon will attempt to create a Neckro Gatherer. [Synced with Server] # Setting type: Single # Default value: 60 # Acceptable value range: From 1 to 1000 NeckroGathererSpawnInterval = 60 ## How many Neck Tails get consumed when creating a Neckro Gatherer. [Synced with Server] # Setting type: Int32 # Default value: 1 # Acceptable value range: From 1 to 1000 NeckroGathererCreationCost = 1 [NecromancerCape (Client)] ## The symbol on the cape of your armored minions. # Setting type: Emblem # Default value: Blank # Acceptable values: Blank, Abhoth, Azathoth, ColorOutOfSpace, Compass, Cthulhu, Dagon, Elderthing, Elk, Hastur, Hypnos, MiGo, Night, Nodens, Nyarlathotep, Power, ShubNiggurath, Thorn, Ubo, Warrior, Wealth, Yith, YogSothoth, Zhar Emblem = Blank [NecromancerHood (Server Synced)] ## Whether crafting a Necromancer's Hood is allowed or not. # Setting type: Boolean # Default value: true NecromancerHoodAllowed = true ## Crafting station where Necromancer Hood is available # Setting type: CraftingTable # Default value: Workbench # Acceptable values: None, Workbench, Cauldron, Forge, ArtisanTable, StoneCutter NecromancerHoodCraftingStation = Workbench ## Crafting station level required to craft Necromancer Hood # Setting type: Int32 # Default value: 1 NecromancerHoodCraftingStationLevel = 1 ## Materials needed to craft Necromancer Hood. None or Blank will use Default settings. # Setting type: String # Default value: WitheredBone:2,TrollHide:5 NecromancerHoodCraftingCosts = WitheredBone:2,TrollHide:5 ## How much wearing the item should raise the Necromancy level (set to 0 to have no set effect at all). # Setting type: Int32 # Default value: 10 NecromancerHoodSkillBonus = 10 [NecroNeckGatherer (Server Synced)] ## Disallowing this will cause the ChebGonaz_LargeCargoCrate to not be loaded. Attention: it is essential for the correct functioning of the NecroNeck Gatherer minion. # Setting type: Boolean # Default value: true LargeCargoCrateAllowed = true ## Container slots = containerHeight * containerWidth = 5*5 = 25 # Setting type: Int32 # Default value: 2 LargeCargoCrateHeight = 2 ## Container slots = containerHeight * containerWidth = 5*5 = 25 # Setting type: Int32 # Default value: 2 LargeCargoCrateWidth = 2 [OrbOfBeckoning (Server Synced)] ## Whether crafting an Orb of Beckoning is allowed or not. # Setting type: Boolean # Default value: true OrbOfBeckoningAllowed = true ## Crafting station where it's available # Setting type: CraftingTable # Default value: Workbench # Acceptable values: None, Workbench, Cauldron, Forge, ArtisanTable, StoneCutter OrbOfBeckoningCraftingStation = Workbench ## Crafting station level required to craft. # Setting type: Int32 # Default value: 1 OrbOfBeckoningCraftingStationLevel = 1 ## Materials needed to craft it. None or Blank will use Default settings. # Setting type: String # Default value: Crystal:5,SurtlingCore:5,Tar:25 OrbOfBeckoningCraftingCosts = Crystal:5,SurtlingCore:5,Tar:25 [RefuelerPylon] ## Whether making a Refueler Pylon is allowed or not. [Synced with Server] # Setting type: Boolean # Default value: true # Acceptable values: True, False RefuelerPylonAllowed = true ## Materials needed to build a Refueler Pylon. None or Blank will use Default settings. Format: :[[,:], ...] [Synced with Server] # Setting type: String # Default value: Stone:15,Coal:15,BoneFragments:15,SurtlingCore:1 RefuelerPylonBuildCosts = Stone:15,Coal:15,BoneFragments:15,SurtlingCore:1 ## How far a Refueler Pylon can reach containers. [Synced with Server] # Setting type: Single # Default value: 30 # Acceptable value range: From 1 to 1000 RefuelerPylonSightRadius = 30 ## How long a Refueler Pylon waits between checking containers (lower values may negatively impact performance). [Synced with Server] # Setting type: Single # Default value: 5 # Acceptable value range: From 1 to 1000 RefuelerPylonUpdateInterval = 5 ## Inventory size = width * height = 4 * 4 = 16. [Synced with Server] # Setting type: Int32 # Default value: 4 # Acceptable value range: From 2 to 10 RefuelerPylonContainerWidth = 4 ## Inventory size = width * height = 4 * 4 = 16. [Synced with Server] # Setting type: Int32 # Default value: 4 # Acceptable value range: From 4 to 20 RefuelerPylonContainerHeight = 4 ## Whether making a Refueler Pylon will manage fireplaces. [Synced with Server] # Setting type: Boolean # Default value: true # Acceptable values: True, False ManageFireplaces = true ## Whether making a Refueler Pylon will manage smelters. [Synced with Server] # Setting type: Boolean # Default value: true # Acceptable values: True, False ManageSmelters = true ## Whether making a Refueler Pylon will manage cooking stations. [Synced with Server] # Setting type: Boolean # Default value: true # Acceptable values: True, False ManageCookingStations = true [RepairPylon] ## Whether making a Repair Pylon is allowed or not. [Synced with Server] # Setting type: Boolean # Default value: true # Acceptable values: True, False RepairPylonAllowed = true ## Materials needed to build a Repair Pylon. None or Blank will use Default settings. Format: :[[,:], ...] [Synced with Server] # Setting type: String # Default value: Stone:15,GreydwarfEye:50,SurtlingCore:1 RepairPylonBuildCosts = Stone:15,GreydwarfEye:50,SurtlingCore:1 ## How far a Repair Pylon can reach containers. [Synced with Server] # Setting type: Single # Default value: 30 # Acceptable value range: From 1 to 1000 RepairPylonSightRadius = 30 ## How long a Repair Pylon waits between checking containers (lower values may negatively impact performance). [Synced with Server] # Setting type: Single # Default value: 5 # Acceptable value range: From 1 to 1000 RepairPylonUpdateInterval = 5 ## Inventory size = width * height = 4 * 4 = 16. [Synced with Server] # Setting type: Int32 # Default value: 4 # Acceptable value range: From 2 to 10 RepairPylonContainerWidth = 4 ## Inventory size = width * height = 4 * 4 = 16. [Synced with Server] # Setting type: Int32 # Default value: 4 # Acceptable value range: From 4 to 20 RepairPylonContainerHeight = 4 ## How much fuel is consumed per point of damage. For example at 0.01 it will cost 1 fuel per 100 points of damage healed. [Synced with Server] # Setting type: Single # Default value: 0.01 FuelConsumedPerPointOfDamage = 0.01 ## How low a wooden structure's health must drop in order for it to be repaired. Set to 0 to repair regardless of damage. [Synced with Server] # Setting type: Single # Default value: 0.25 RepairWoodWhen = 0.25 ## How low a non-wood structure's health must drop in order for it to be repaired. Set to 0 to repair regardless of damage. [Synced with Server] # Setting type: Single # Default value: 0 RepairOtherWhen = 0 ## These prefabs are always repaired no matter their damage and ignore the RepairWoodWhen/RepairOtherWhen thresholds. This is good for defensive things like stakes which should always be kept at maximum health. Please use a comma-delimited list of prefab names. [Synced with Server] # Setting type: String # Default value: piece_sharpstakes,piece_dvergr_sharpstakes AlwaysRepair = piece_sharpstakes,piece_dvergr_sharpstakes ## The items that are consumed as fuel when repairing. Please use a comma-delimited list of prefab names. [Synced with Server] # Setting type: String # Default value: Resin,GreydwarfEye,Pukeberries Fuels = Resin,GreydwarfEye,Pukeberries [SkeletonMiner (Server Synced)] ## The delay, in seconds, between rock/ore searching attempts. Attention: small values may impact performance. # Setting type: Single # Default value: 6 SkeletonMinerUpdateDelay = 6 ## How far it can see rock/ore. High values may damage performance. # Setting type: Single # Default value: 50 LookRadius = 50 ## The types of rock the miner will attempt to mine. Internal IDs only. # Setting type: String # Default value: rock1_mistlands,rock1_mountain,rock1_mountain_frac,rock2_heath,rock2_heath_frac,rock2_mountain,rock2_mountain_frac,Rock_3,Rock_3_frac,rock3_mountain,rock3_mountain_frac,rock3_silver,rock3_silver_frac,Rock_4,Rock_4_plains,rock4_coast,rock4_coast_frac,rock4_copper,rock4_copper_frac,rock4_forest,rock4_forest_frac,rock4_heath,rock4_heath_frac,Rock_7,Rock_destructible,rock_mistlands1,rock_mistlands1_frac,rock_mistlands2,RockDolmen_1,RockDolmen_2,RockDolmen_3,silvervein,silvervein_frac,MineRock_Tin,MineRock_Obsidian RockInternalIDsList = rock1_mistlands,rock1_mountain,rock1_mountain_frac,rock2_heath,rock2_heath_frac,rock2_mountain,rock2_mountain_frac,Rock_3,Rock_3_frac,rock3_mountain,rock3_mountain_frac,rock3_silver,rock3_silver_frac,Rock_4,Rock_4_plains,rock4_coast,rock4_coast_frac,rock4_copper,rock4_copper_frac,rock4_forest,rock4_forest_frac,rock4_heath,rock4_heath_frac,Rock_7,Rock_destructible,rock_mistlands1,rock_mistlands1_frac,rock_mistlands2,RockDolmen_1,RockDolmen_2,RockDolmen_3,silvervein,silvervein_frac,MineRock_Tin,MineRock_Obsidian [SkeletonMinion (Server Synced)] ## Whether a minion refunds anything when it dies. # Setting type: DropType # Default value: JustResources # Acceptable values: Nothing, JustResources, Everything DropOnDeath = JustResources ## If set to true, dropped items will be packed into a cargo crate. This means they won't sink in water, which is useful for more valuable drops like Surtling Cores and metal ingots. # Setting type: Boolean # Default value: true PackDroppedItemsIntoCargoCrate = true ## How much crafting a skeleton contributes to your Necromancy level increasing. # Setting type: Single # Default value: 0.75 NecromancyLevelIncrease = 0.75 ## How much crafting a Poison Skeleton contributes to your Necromancy level increasing. # Setting type: Single # Default value: 1 PoisonSkeletonNecromancyLevelIncrease = 1 ## How much crafting an Archer Skeleton contributes to your Necromancy level increasing. # Setting type: Single # Default value: 1 ArcherSkeletonNecromancyLevelIncrease = 1 ## How much crafting a Poison Skeleton contributes to your Necromancy level increasing. # Setting type: Single # Default value: 1 MageSkeletonNecromancyLevelIncrease = 1 ## The maximum amount of skeletons that can be made (0 = unlimited). # Setting type: Int32 # Default value: 0 MaximumSkeletons = 0 ## Attention: has no effect if minion limits are off. Increases player's maximum minion count by 1 every X levels. For example, if the limit is 3 skeletons and this is set to 10, then at level 10 Necromancy the player can have 4 minions. Then 5 at level 20, and so on. # Setting type: Int32 # Default value: 10 MinionLimitIncrementsEveryXLevels = 10 [SkeletonWand (Client)] ## The distance which nearby skeletons will hear your commands. # Setting type: Single # Default value: 20 SkeletonCommandRange = 20 [SkeletonWand (Server Synced)] ## Whether crafting a Skeleton Wand is allowed or not. # Setting type: Boolean # Default value: true SkeletonWandAllowed = true ## Crafting station where Skeleton Wand is available # Setting type: CraftingTable # Default value: Workbench # Acceptable values: None, Workbench, Cauldron, Forge, ArtisanTable, StoneCutter SkeletonWandCraftingStation = Workbench ## Crafting station level required to craft Skeleton Wand # Setting type: Int32 # Default value: 1 SkeletonWandCraftingStationLevel = 1 ## Materials needed to craft Skeleton Wand. None or Blank will use Default settings. # Setting type: String # Default value: Wood:5,Stone:1 SkeletonWandCraftingCosts = Wood:5,Stone:1 ## If false, skeletons can't be summoned. # Setting type: Boolean # Default value: true SkeletonsAllowed = true ## The amount of Bone Fragments required to craft a skeleton. # Setting type: Int32 # Default value: 6 BoneFragmentsRequired = 6 ## HP = BaseHealth + NecromancyLevel * HealthMultiplier # Setting type: Single # Default value: 20 SkeletonBaseHealth = 20 ## HP = BaseHealth + NecromancyLevel * HealthMultiplier # Setting type: Single # Default value: 1.25 SkeletonHealthMultiplier = 1.25 ## Star Quality of tier 1 Skeleton minions # Setting type: Int32 # Default value: 1 SkeletonTierOneQuality = 1 ## Star Quality of tier 2 Skeleton minions # Setting type: Int32 # Default value: 2 SkeletonTierTwoQuality = 2 ## Necromancy skill level required to summon Tier 2 Skeleton # Setting type: Int32 # Default value: 35 SkeletonTierTwoLevelReq = 35 ## Star Quality of tier 3 Skeleton minions # Setting type: Int32 # Default value: 3 SkeletonTierThreeQuality = 3 ## Necromancy skill level required to summon Tier 3 Skeleton # Setting type: Int32 # Default value: 90 SkeletonTierThreeLevelReq = 90 ## HP = BaseHealth + NecromancyLevel * HealthMultiplier # Setting type: Single # Default value: 100 PoisonSkeletonBaseHealth = 100 ## The Necromancy level needed to summon a Poison Skeleton. # Setting type: Int32 # Default value: 50 PoisonSkeletonLevelRequired = 50 ## The amount of Guck required to craft a Poison Skeleton. # Setting type: Int32 # Default value: 1 PoisonSkeletonGuckRequired = 1 ## The amount of Flint required to craft a Woodcutter Skeleton. # Setting type: Int32 # Default value: 1 WoodcutterSkeletonFlintRequired = 1 ## The amount of HardAntler required to craft a Miner Skeleton. # Setting type: Int32 # Default value: 1 MinerSkeletonAntlerRequired = 1 ## If you find the armor value for skeletons to be too low, you can multiply it here. By default, a skeleton wearing iron armor will have an armor value of 42 (14+14+14). A multiplier of 1.5 will cause this armor value to increase to 63. # Setting type: Single # Default value: 1 SkeletonArmorValueMultiplier = 1 [SkeletonWoodcutter (Server Synced)] ## The delay, in seconds, between wood searching attempts. Attention: small values may impact performance. # Setting type: Single # Default value: 6 SkeletonWoodcutterUpdateDelay = 6 ## How far it can see wood. High values may damage performance. # Setting type: Single # Default value: 50 LookRadius = 50 [SpectralShroud (Server Synced)] ## The Necromancy level required to control a Guardian Wraith. # Setting type: Int32 # Default value: 25 GuardianWraithLevelRequirement = 25 ## The lifetime of a Guardian Wraith. # Setting type: Int32 # Default value: 10 GuardianWraithDuration = 10 ## Whether crafting a Spectral Shroud is allowed or not. # Setting type: Boolean # Default value: true SpectralShroudAllowed = true ## Crafting station where Spectral Shroud is available # Setting type: CraftingTable # Default value: Workbench # Acceptable values: None, Workbench, Cauldron, Forge, ArtisanTable, StoneCutter SpectralShroudCraftingStation = Workbench ## Crafting station level required to craft Spectral Shroud # Setting type: Int32 # Default value: 1 SpectralShroudCraftingStationLevel = 1 ## Materials needed to craft Spectral Shroud. None or Blank will use Default settings. # Setting type: String # Default value: Chain:5,TrollHide:10 SpectralShroudCraftingCosts = Chain:5,TrollHide:10 ## Whether wraiths spawn or not. # Setting type: Boolean # Default value: true SpectralShroudSpawnWraith = true ## How much wearing the item should raise the Necromancy level (set to 0 to have no set effect at all). # Setting type: Int32 # Default value: 10 SpectralShroudSkillBonus = 10 ## How much time must pass after a wraith spawns before a new one is able to spawn. # Setting type: Int32 # Default value: 30 SpectralShroudWraithDelay = 30 ## Star Quality of tier 1 GuardianWraith minions # Setting type: Int32 # Default value: 1 GuardianWraithTierOneQuality = 1 ## Star Quality of tier 2 GuardianWraith minions # Setting type: Int32 # Default value: 2 GuardianWraithTierTwoQuality = 2 ## Necromancy skill level required to summon Tier 2 GuardianWraith # Setting type: Int32 # Default value: 35 GuardianWraithTierTwoLevelReq = 35 ## Star Quality of tier 3 GuardianWraith minions # Setting type: Int32 # Default value: 3 GuardianWraithTierThreeQuality = 3 ## Necromancy skill level required to summon Tier 3 GuardianWraith # Setting type: Int32 # Default value: 70 GuardianWraithTierThreeLevelReq = 70 [SpiritPylon] ## Whether making a Spirit Pylon is allowed or not. [Synced with Server] # Setting type: Boolean # Default value: true # Acceptable values: True, False SpiritPylonAllowed = true ## Materials needed to build Spirit Pylon. None or Blank will use Default settings. Format: :[[,:], ...] [Synced with Server] # Setting type: String # Default value: Stone:15,Wood:15,BoneFragments:15,SurtlingCore:1 SpiritPylonBuildCosts = Stone:15,Wood:15,BoneFragments:15,SurtlingCore:1 ## How far a Spirit Pylon can see enemies. [Synced with Server] # Setting type: Single # Default value: 30 # Acceptable value range: From 1 to 1000 SpiritPylonSightRadius = 30 ## How long a Spirit Pylon's ghost persists. [Synced with Server] # Setting type: Single # Default value: 30 # Acceptable value range: From 1 to 1000 SpiritPylonGhostDuration = 30 ## How long a Spirit Pylon must wait before being able to spawn another ghost. [Synced with Server] # Setting type: Single # Default value: 5 # Acceptable value range: From 1 to 1000 SpiritPylonDelayBetweenGhosts = 5 ## The maximum number of ghosts that a Spirit Pylon can spawn. [Synced with Server] # Setting type: Int32 # Default value: 3 # Acceptable value range: From 1 to 1000 SpiritPylonMaxGhosts = 3 [TreasurePylon] ## Whether making a Treasure Pylon is allowed or not. [Synced with Server] # Setting type: Boolean # Default value: true # Acceptable values: True, False Allowed = true ## Materials needed to build a Treasure Pylon. None or Blank will use Default settings. Format: :[[,:], ...] [Synced with Server] # Setting type: String # Default value: Coins:200,Ruby:2 BuildCosts = Coins:200,Ruby:2 ## How far a Treasure Pylon can reach containers. [Synced with Server] # Setting type: Single # Default value: 20 # Acceptable value range: From 1 to 1000 SightRadius = 20 ## How long a Treasure Pylon waits between checking containers (lower values may negatively impact performance). [Synced with Server] # Setting type: Single # Default value: 30 # Acceptable value range: From 1 to 1000 UpdateInterval = 30 ## The containers that are sorted. Please use a comma-delimited list of prefab names. [Synced with Server] # Setting type: String # Default value: piece_chest_wood ContainerWhitelist = piece_chest_wood [UndeadMinion (Client)] ## If true, minions can be commanded individually with E (or equivalent) keybind. # Setting type: Boolean # Default value: true Commandable = true ## How far a unit is allowed to roam from its current position. # Setting type: Single # Default value: 10 RoamRange = 10 [UndeadMinion (Server Synced)] ## Whether a minion should be cleaned up or not. # Setting type: CleanupType # Default value: None # Acceptable values: None, Time, Logout CleanupAfter = None ## The delay, in seconds, after which a minion will be destroyed. It has no effect if CleanupAfter is set to None. # Setting type: Int32 # Default value: 300 CleanupDelay = 300 [Wands (Client)] ## Whether minions will automatically be set to follow upon being created or not. # Setting type: Boolean # Default value: false FollowByDefault = false ## How closely a minion will follow you (0 = standing on top of you, 3 = default). # Setting type: Single # Default value: 3 FollowDistance = 3 ## How close a following minion needs to be to you before it stops running and starts walking (0 = always running, 10 = default). # Setting type: Single # Default value: 3 RunDistance = 3 [Wands (Server Synced)] ## How long a player must wait before being able to teleport minions again (0 for no cooldown). # Setting type: Single # Default value: 5 TeleportCooldown = 5 ## How much damage a wand receives from being used to teleport minions with (0 for no damage). # Setting type: Single # Default value: 0 TeleportDurabilityCost = 0 ```
jpw1991 commented 1 year ago

Thanks @retrouncle . Seems like nothing is wrong with the Neckro Gatherer portion of it. Did the new version help?

retrouncle commented 1 year ago

[Error : Unity Log] NullReferenceException: Object reference not set to an instance of an object Stack trace: (wrapper dynamic-method) InventoryGrid.DMD(InventoryGrid,Player,ItemDrop/ItemData) InventoryGrid.UpdateInventory (Inventory inventory, Player player, ItemDrop+ItemData dragItem) (at <49d9aaa0119f4006a902669e02c0ad15>:0) (wrapper dynamic-method) InventoryGui.DMD(InventoryGui,Player) (wrapper dynamic-method) InventoryGui.DMD(InventoryGui)

upon loading up with the new update i recieved this error and the gatherer totem no longer has a visible inventory. it will accept items but i am unable to see whats in there. also im not sure if it is related to the mod but when i try to split (on controller) the item i am splitting gets stuck on my cursor. even when i empty the slot or leave my inventory the item persists. upon removing the mod i am able to split just fine. unfortunately for the moment i will have to be playing without the mod for the time being. if you keep me updated on mod updates i will keep you updated on testing.

retrouncle commented 1 year ago

i also bieleve the problem i was having before was due to being on a server as when i was playing solo the necks were attempting to move to the chests but again i am unsure if it is due to there being more items on the ground as i couldn't continue testing.

jpw1991 commented 1 year ago

The last error you reported is an old one. More info here. I didn't find a fix for it yet but opening any other container first stops it from happening.

retrouncle commented 1 year ago

alright, i just wanted to let you know because i hadnt had that problem until i updated