ExileApi - Misc plugin discussion menu

Shout-Out

User Tag List

Page 11 of 35 FirstFirst ... 789101112131415 ... LastLast
Results 151 to 165 of 522
  1. #151
    MarkWHodgson's Avatar Member
    Reputation
    1
    Join Date
    Sep 2023
    Posts
    5
    Thanks G/R
    4/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hey there, I was using plugin ExpeditionIcons and I had the settings setup nicely for 3.23. But when I copy and pasted the "Expeditionicons-Master folder" from "ExileApi-Compiled-3.23.1.1\Plugins\Source" to "ExileApi-Compiled-3.24\Plugins\Source", the settings don't transfer over.

    I tried to open the loader from the previous version to see my old settings, but the I cannot pullup the HUD to see my old settings.

    Is there anyway around this or do I need to figure out the best settings again?

    Thanks in advance.

    ExileApi - Misc plugin discussion
  2. #152
    MarkWHodgson's Avatar Member
    Reputation
    1
    Join Date
    Sep 2023
    Posts
    5
    Thanks G/R
    4/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by MarkWHodgson View Post
    Hey there, I was using plugin ExpeditionIcons and I had the settings setup nicely for 3.23. But when I copy and pasted the "Expeditionicons-Master folder" from "ExileApi-Compiled-3.23.1.1\Plugins\Source" to "ExileApi-Compiled-3.24\Plugins\Source", the settings don't transfer over.

    I tried to open the loader from the previous version to see my old settings, but the I cannot pullup the HUD to see my old settings.

    Is there anyway around this or do I need to figure out the best settings again?

    Thanks in advance.
    I solved my issue, the settings are stored here: ExileApi-Compiled-3.24\config\global\ExpeditionIcons_Settings.json. you can copy and paste the old settings to bring them from the old version of ExileAPI to the new version.

  3. #153
    CornFlake101's Avatar Member
    Reputation
    8
    Join Date
    Jul 2013
    Posts
    103
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Stashie seems broken. Doesn't read/load 'FiltersConfig' settings and folder drop down in ExileGUI doesn't populate.

  4. #154
    LauraGauthier's Avatar Member
    Reputation
    2
    Join Date
    Sep 2023
    Posts
    1
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    For technical people: you can edit IconBuilder's MonsterIcon.cs to flag Necropolis mobs. Can't be bothered doing it correctly and opening a PR, so sharing here.

    Mobs with Necropolis modifiers (kill them to get better mods later):

    Code:
    if (entity.HasComponent<ObjectMagicProperties>()) {
        var objectMagicProperties = entity?.GetComponent<ObjectMagicProperties>();
        if (objectMagicProperties != null) {
            var mods = objectMagicProperties.Mods;
            [existing code]
            if (mods.Any(x => x.Contains("Necropolis", StringComparison.OrdinalIgnoreCase))) {
                archNemText = "Necropolis";
            }
        }
    Mobs that will drop a corpse upon death:

    Code:
    if (entity.Buffs.Any(x => x.Name.Contains("Necropolis", StringComparison.OrdinalIgnoreCase))) {
        Text = "!!! Necropolis !!!";
    }

  5. Thanks Glitter2770 (1 members gave Thanks to LauraGauthier for this useful post)
  6. #155
    hacker143's Avatar Knight
    Reputation
    21
    Join Date
    Mar 2017
    Posts
    219
    Thanks G/R
    32/19
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    any plugin that auto use aura blessing ?
    the autopilot seems need to have a monster atleast.
    is their any that will check if aura is not active, it will activate it. I was ble to setit up using gamehelper before

  7. #156
    gze's Avatar Member
    Reputation
    1
    Join Date
    Feb 2024
    Posts
    8
    Thanks G/R
    2/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    is there any plugin to automate flask and skills?

  8. #157
    Glitter2770's Avatar Member
    Reputation
    9
    Join Date
    Jan 2024
    Posts
    13
    Thanks G/R
    22/8
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by LauraGauthier View Post
    For technical people: you can edit IconBuilder's MonsterIcon.cs to flag Necropolis mobs. Can't be bothered doing it correctly and opening a PR, so sharing here.

    Mobs with Necropolis modifiers (kill them to get better mods later):

    Code:
    if (entity.HasComponent<ObjectMagicProperties>()) {
        var objectMagicProperties = entity?.GetComponent<ObjectMagicProperties>();
        if (objectMagicProperties != null) {
            var mods = objectMagicProperties.Mods;
            [existing code]
            if (mods.Any(x => x.Contains("Necropolis", StringComparison.OrdinalIgnoreCase))) {
                archNemText = "Necropolis";
            }
        }
    Mobs that will drop a corpse upon death:

    Code:
    if (entity.Buffs.Any(x => x.Name.Contains("Necropolis", StringComparison.OrdinalIgnoreCase))) {
        Text = "!!! Necropolis !!!";
    }
    Is this the current version of the source code for the compiled plugin? GitHub - exApiTools/IconsBuilder
    Because I'm getting a lot of errors when compiling which makes me think is not updated to current ExileApi.

    Errors:
    Code:
    Build failed:
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\ChestIcon.cs(3, 7)] CS0246: The type or namespace name 'ExileCore' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\ChestIcon.cs(4, 7)] CS0246: The type or namespace name 'ExileCore' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\ChestIcon.cs(5, 7)] CS0246: The type or namespace name 'ExileCore' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\ChestIcon.cs(6, 7)] CS0246: The type or namespace name 'ExileCore' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\ChestIcon.cs(7, 7)] CS0246: The type or namespace name 'ExileCore' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\ChestIcon.cs(8, 7)] CS0246: The type or namespace name 'ExileCore' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\ChestIcon.cs(9, 7)] CS0246: The type or namespace name 'ExileCore' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\ChestIcon.cs(10, 7)] CS0246: The type or namespace name 'ExileCore' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\DeliriumIcon.cs(3, 7)] CS0246: The type or namespace name 'ExileCore' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\DeliriumIcon.cs(4, 7)] CS0246: The type or namespace name 'ExileCore' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\DeliriumIcon.cs(5, 7)] CS0246: The type or namespace name 'ExileCore' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\DeliriumIcon.cs(6, 7)] CS0246: The type or namespace name 'ExileCore' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\DeliriumIcon.cs(7, 7)] CS0246: The type or namespace name 'ExileCore' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\DeliriumIcon.cs(8, 7)] CS0246: The type or namespace name 'ExileCore' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\DeliriumIcon.cs(9, 7)] CS0246: The type or namespace name 'ExileCore' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\DeliriumIcon.cs(10, 7)] CS0246: The type or namespace name 'ExileCore' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\IconsBuilder.cs(6, 7)] CS0246: The type or namespace name 'ExileCore' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\IconsBuilder.cs(7, 7)] CS0246: The type or namespace name 'ExileCore' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\IconsBuilder.cs(8, 7)] CS0246: The type or namespace name 'ExileCore' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\IconsBuilder.cs(9, 7)] CS0246: The type or namespace name 'ExileCore' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\IconsBuilder.cs(10, 7)] CS0246: The type or namespace name 'ExileCore' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\IconsBuilder.cs(11, 7)] CS0246: The type or namespace name 'ExileCore' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\IconsBuilderSettings.cs(1, 7)] CS0246: The type or namespace name 'ExileCore' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\IconsBuilderSettings.cs(2, 7)] CS0246: The type or namespace name 'ExileCore' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\IconsBuilderSettings.cs(3, 7)] CS0246: The type or namespace name 'ExileCore' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\LegionIcon.cs(3, 7)] CS0246: The type or namespace name 'ExileCore' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\LegionIcon.cs(4, 7)] CS0246: The type or namespace name 'ExileCore' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\LegionIcon.cs(5, 7)] CS0246: The type or namespace name 'ExileCore' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\LegionIcon.cs(6, 7)] CS0246: The type or namespace name 'ExileCore' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\LegionIcon.cs(7, 7)] CS0246: The type or namespace name 'ExileCore' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\LegionIcon.cs(8, 7)] CS0246: The type or namespace name 'ExileCore' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\LegionIcon.cs(9, 7)] CS0246: The type or namespace name 'ExileCore' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\LegionIcon.cs(10, 7)] CS0246: The type or namespace name 'ExileCore' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\MiscIcon.cs(2, 7)] CS0246: The type or namespace name 'ExileCore' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\MiscIcon.cs(3, 7)] CS0246: The type or namespace name 'ExileCore' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\MiscIcon.cs(4, 7)] CS0246: The type or namespace name 'ExileCore' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\MiscIcon.cs(5, 7)] CS0246: The type or namespace name 'ExileCore' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\MiscIcon.cs(6, 7)] CS0246: The type or namespace name 'ExileCore' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\MiscIcon.cs(7, 7)] CS0246: The type or namespace name 'ExileCore' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\MiscIcon.cs(8, 7)] CS0246: The type or namespace name 'ExileCore' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\MissionMarkerIcon.cs(1, 7)] CS0246: The type or namespace name 'ExileCore' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\MissionMarkerIcon.cs(2, 7)] CS0246: The type or namespace name 'ExileCore' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\MissionMarkerIcon.cs(3, 7)] CS0246: The type or namespace name 'ExileCore' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\MissionMarkerIcon.cs(4, 7)] CS0246: The type or namespace name 'ExileCore' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\MissionMarkerIcon.cs(5, 7)] CS0246: The type or namespace name 'ExileCore' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\MissionMarkerIcon.cs(6, 7)] CS0246: The type or namespace name 'ExileCore' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\MonsterIcon.cs(4, 7)] CS0246: The type or namespace name 'ExileCore' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\MonsterIcon.cs(5, 7)] CS0246: The type or namespace name 'ExileCore' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\MonsterIcon.cs(6, 7)] CS0246: The type or namespace name 'ExileCore' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\MonsterIcon.cs(7, 7)] CS0246: The type or namespace name 'ExileCore' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\MonsterIcon.cs(8, 7)] CS0246: The type or namespace name 'ExileCore' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\MonsterIcon.cs(9, 7)] CS0246: The type or namespace name 'ExileCore' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\MonsterIcon.cs(10, 7)] CS0246: The type or namespace name 'ExileCore' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\NpcIcon.cs(1, 7)] CS0246: The type or namespace name 'ExileCore' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\NpcIcon.cs(2, 7)] CS0246: The type or namespace name 'ExileCore' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\NpcIcon.cs(3, 7)] CS0246: The type or namespace name 'ExileCore' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\NpcIcon.cs(4, 7)] CS0246: The type or namespace name 'ExileCore' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\NpcIcon.cs(5, 7)] CS0246: The type or namespace name 'ExileCore' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\NpcIcon.cs(6, 7)] CS0246: The type or namespace name 'ExileCore' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\NpcIcon.cs(7, 7)] CS0246: The type or namespace name 'ExileCore' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\PlayerIcon.cs(2, 7)] CS0246: The type or namespace name 'ExileCore' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\PlayerIcon.cs(3, 7)] CS0246: The type or namespace name 'ExileCore' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\PlayerIcon.cs(4, 7)] CS0246: The type or namespace name 'ExileCore' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\PlayerIcon.cs(5, 7)] CS0246: The type or namespace name 'ExileCore' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\PlayerIcon.cs(6, 7)] CS0246: The type or namespace name 'ExileCore' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\PlayerIcon.cs(7, 7)] CS0246: The type or namespace name 'ExileCore' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\PlayerIcon.cs(8, 7)] CS0246: The type or namespace name 'ExileCore' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\PortalIcon.cs(1, 7)] CS0246: The type or namespace name 'ExileCore' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\PortalIcon.cs(2, 7)] CS0246: The type or namespace name 'ExileCore' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\PortalIcon.cs(3, 7)] CS0246: The type or namespace name 'ExileCore' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\ShrineIcon.cs(1, 7)] CS0246: The type or namespace name 'ExileCore' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\ShrineIcon.cs(2, 7)] CS0246: The type or namespace name 'ExileCore' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\ShrineIcon.cs(3, 7)] CS0246: The type or namespace name 'ExileCore' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\ShrineIcon.cs(4, 7)] CS0246: The type or namespace name 'ExileCore' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\ShrineIcon.cs(5, 7)] CS0246: The type or namespace name 'ExileCore' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\ShrineIcon.cs(6, 7)] CS0246: The type or namespace name 'ExileCore' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\ShrineIcon.cs(7, 7)] CS0246: The type or namespace name 'ExileCore' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\IconsBuilderSettings.cs(7, 41)] CS0246: The type or namespace name 'ISettings' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\NpcIcon.cs(11, 28)] CS0246: The type or namespace name 'BaseIcon' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\MiscIcon.cs(12, 29)] CS0246: The type or namespace name 'BaseIcon' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\MissionMarkerIcon.cs(11, 38)] CS0246: The type or namespace name 'BaseIcon' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\ChestIcon.cs(15, 30)] CS0246: The type or namespace name 'BaseIcon' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\LegionIcon.cs(16, 31)] CS0246: The type or namespace name 'BaseIcon' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\MonsterIcon.cs(16, 32)] CS0246: The type or namespace name 'BaseIcon' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\DeliriumIcon.cs(16, 35)] CS0246: The type or namespace name 'BaseIcon' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\NpcIcon.cs(13, 24)] CS0246: The type or namespace name 'Entity' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\NpcIcon.cs(13, 39)] CS0246: The type or namespace name 'GameController' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\MissionMarkerIcon.cs(13, 34)] CS0246: The type or namespace name 'Entity' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\MissionMarkerIcon.cs(13, 49)] CS0246: The type or namespace name 'GameController' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\MiscIcon.cs(14, 25)] CS0246: The type or namespace name 'Entity' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\MiscIcon.cs(14, 40)] CS0246: The type or namespace name 'GameController' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\IconsBuilder.cs(17, 33)] CS0246: The type or namespace name 'BaseSettingsPlugin<>' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\PortalIcon.cs(7, 31)] CS0246: The type or namespace name 'BaseIcon' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\ChestIcon.cs(17, 26)] CS0246: The type or namespace name 'Entity' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\ChestIcon.cs(17, 41)] CS0246: The type or namespace name 'GameController' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\PlayerIcon.cs(13, 31)] CS0246: The type or namespace name 'BaseIcon' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\MiscIcon.cs(24, 28)] CS0246: The type or namespace name 'Entity' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\ChestIcon.cs(22, 16)] CS0246: The type or namespace name 'ChestType' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\PortalIcon.cs(9, 27)] CS0246: The type or namespace name 'Entity' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\PortalIcon.cs(9, 42)] CS0246: The type or namespace name 'GameController' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\ShrineIcon.cs(11, 31)] CS0246: The type or namespace name 'BaseIcon' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\IconsBuilderSettings.cs(13, 16)] CS0246: The type or namespace name 'RangeNode<>' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\ChestIcon.cs(24, 28)] CS0246: The type or namespace name 'Entity' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\IconsBuilderSettings.cs(15, 16)] CS0246: The type or namespace name 'RangeNode<>' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\IconsBuilderSettings.cs(17, 16)] CS0246: The type or namespace name 'RangeNode<>' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\PlayerIcon.cs(15, 27)] CS0246: The type or namespace name 'Entity' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\PlayerIcon.cs(15, 42)] CS0246: The type or namespace name 'GameController' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\MonsterIcon.cs(18, 28)] CS0246: The type or namespace name 'Entity' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\MonsterIcon.cs(18, 43)] CS0246: The type or namespace name 'GameController' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\LegionIcon.cs(18, 27)] CS0246: The type or namespace name 'Entity' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\LegionIcon.cs(18, 42)] CS0246: The type or namespace name 'GameController' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\DeliriumIcon.cs(18, 29)] CS0246: The type or namespace name 'Entity' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\DeliriumIcon.cs(18, 44)] CS0246: The type or namespace name 'GameController' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\ShrineIcon.cs(13, 27)] CS0246: The type or namespace name 'Entity' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\ShrineIcon.cs(13, 42)] CS0246: The type or namespace name 'GameController' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\IconsBuilderSettings.cs(19, 16)] CS0246: The type or namespace name 'RangeNode<>' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\IconsBuilderSettings.cs(21, 16)] CS0246: The type or namespace name 'RangeNode<>' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\IconsBuilderSettings.cs(23, 16)] CS0246: The type or namespace name 'RangeNode<>' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\IconsBuilderSettings.cs(25, 16)] CS0246: The type or namespace name 'RangeNode<>' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\IconsBuilderSettings.cs(26, 16)] CS0246: The type or namespace name 'RangeNode<>' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\IconsBuilderSettings.cs(27, 16)] CS0246: The type or namespace name 'RangeNode<>' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\IconsBuilderSettings.cs(28, 16)] CS0246: The type or namespace name 'RangeNode<>' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\LegionIcon.cs(29, 28)] CS0246: The type or namespace name 'Entity' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\DeliriumIcon.cs(26, 28)] CS0246: The type or namespace name 'Entity' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\IconsBuilderSettings.cs(29, 16)] CS0246: The type or namespace name 'RangeNode<>' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\MonsterIcon.cs(26, 28)] CS0246: The type or namespace name 'Entity' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\IconsBuilderSettings.cs(32, 16)] CS0246: The type or namespace name 'RangeNode<>' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\IconsBuilderSettings.cs(34, 16)] CS0246: The type or namespace name 'ToggleNode' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\IconsBuilderSettings.cs(36, 16)] CS0246: The type or namespace name 'RangeNode<>' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\IconsBuilderSettings.cs(38, 16)] CS0246: The type or namespace name 'RangeNode<>' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\IconsBuilderSettings.cs(40, 16)] CS0246: The type or namespace name 'RangeNode<>' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\IconsBuilder.cs(23, 26)] CS0246: The type or namespace name 'EntityType' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\IconsBuilderSettings.cs(42, 16)] CS0246: The type or namespace name 'RangeNode<>' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\IconsBuilderSettings.cs(44, 16)] CS0246: The type or namespace name 'RangeNode<>' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\IconsBuilderSettings.cs(46, 16)] CS0246: The type or namespace name 'ToggleNode' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\IconsBuilderSettings.cs(48, 16)] CS0246: The type or namespace name 'ButtonNode' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\IconsBuilderSettings.cs(49, 16)] CS0246: The type or namespace name 'ToggleNode' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\IconsBuilderSettings.cs(50, 16)] CS0246: The type or namespace name 'RangeNode<>' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\IconsBuilderSettings.cs(51, 16)] CS0246: The type or namespace name 'ToggleNode' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\IconsBuilderSettings.cs(52, 16)] CS0246: The type or namespace name 'ToggleNode' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\IconsBuilderSettings.cs(53, 16)] CS0246: The type or namespace name 'ToggleNode' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\IconsBuilder.cs(47, 26)] CS0246: The type or namespace name 'EntityType' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\IconsBuilderSettings.cs(54, 16)] CS0246: The type or namespace name 'ToggleNode' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\IconsBuilderSettings.cs(55, 16)] CS0246: The type or namespace name 'ToggleNode' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\IconsBuilderSettings.cs(56, 16)] CS0246: The type or namespace name 'ToggleNode' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\IconsBuilderSettings.cs(57, 16)] CS0246: The type or namespace name 'ToggleNode' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\IconsBuilderSettings.cs(58, 16)] CS0246: The type or namespace name 'ToggleNode' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\IconsBuilderSettings.cs(59, 16)] CS0246: The type or namespace name 'ToggleNode' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\IconsBuilderSettings.cs(60, 16)] CS0246: The type or namespace name 'ToggleNode' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\IconsBuilderSettings.cs(61, 16)] CS0246: The type or namespace name 'ToggleNode' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\IconsBuilder.cs(52, 23)] CS0246: The type or namespace name 'Entity' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\IconsBuilderSettings.cs(10, 10)] CS0246: The type or namespace name 'MenuAttribute' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\IconsBuilderSettings.cs(10, 10)] CS0246: The type or namespace name 'Menu' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\IconsBuilder.cs(111, 44)] CS0246: The type or namespace name 'Entity' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\IconsBuilderSettings.cs(12, 10)] CS0246: The type or namespace name 'MenuAttribute' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\IconsBuilderSettings.cs(12, 10)] CS0246: The type or namespace name 'Menu' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\IconsBuilderSettings.cs(14, 10)] CS0246: The type or namespace name 'MenuAttribute' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\IconsBuilderSettings.cs(14, 10)] CS0246: The type or namespace name 'Menu' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\IconsBuilder.cs(116, 44)] CS0246: The type or namespace name 'Entity' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\IconsBuilderSettings.cs(16, 10)] CS0246: The type or namespace name 'MenuAttribute' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\IconsBuilderSettings.cs(16, 10)] CS0246: The type or namespace name 'Menu' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\IconsBuilderSettings.cs(18, 10)] CS0246: The type or namespace name 'MenuAttribute' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\IconsBuilderSettings.cs(18, 10)] CS0246: The type or namespace name 'Menu' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\IconsBuilder.cs(122, 42)] CS0246: The type or namespace name 'Entity' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\IconsBuilderSettings.cs(20, 10)] CS0246: The type or namespace name 'MenuAttribute' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\IconsBuilderSettings.cs(20, 10)] CS0246: The type or namespace name 'Menu' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\IconsBuilderSettings.cs(22, 10)] CS0246: The type or namespace name 'MenuAttribute' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\IconsBuilderSettings.cs(22, 10)] CS0246: The type or namespace name 'Menu' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\IconsBuilderSettings.cs(24, 10)] CS0246: The type or namespace name 'MenuAttribute' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\IconsBuilderSettings.cs(24, 10)] CS0246: The type or namespace name 'Menu' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\IconsBuilderSettings.cs(31, 10)] CS0246: The type or namespace name 'MenuAttribute' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\IconsBuilderSettings.cs(31, 10)] CS0246: The type or namespace name 'Menu' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\IconsBuilderSettings.cs(33, 10)] CS0246: The type or namespace name 'MenuAttribute' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\IconsBuilderSettings.cs(33, 10)] CS0246: The type or namespace name 'Menu' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\IconsBuilderSettings.cs(35, 10)] CS0246: The type or namespace name 'MenuAttribute' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\IconsBuilderSettings.cs(35, 10)] CS0246: The type or namespace name 'Menu' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\IconsBuilder.cs(136, 41)] CS0246: The type or namespace name 'AreaInstance' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\IconsBuilderSettings.cs(37, 10)] CS0246: The type or namespace name 'MenuAttribute' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\IconsBuilderSettings.cs(37, 10)] CS0246: The type or namespace name 'Menu' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\IconsBuilderSettings.cs(39, 10)] CS0246: The type or namespace name 'MenuAttribute' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\IconsBuilderSettings.cs(39, 10)] CS0246: The type or namespace name 'Menu' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\IconsBuilderSettings.cs(41, 10)] CS0246: The type or namespace name 'MenuAttribute' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\IconsBuilderSettings.cs(41, 10)] CS0246: The type or namespace name 'Menu' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\IconsBuilderSettings.cs(43, 10)] CS0246: The type or namespace name 'MenuAttribute' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\IconsBuilderSettings.cs(43, 10)] CS0246: The type or namespace name 'Menu' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\IconsBuilderSettings.cs(45, 10)] CS0246: The type or namespace name 'MenuAttribute' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\IconsBuilderSettings.cs(45, 10)] CS0246: The type or namespace name 'Menu' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\IconsBuilder.cs(160, 25)] CS0246: The type or namespace name 'Job' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\IconsBuilderSettings.cs(47, 10)] CS0246: The type or namespace name 'MenuAttribute' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\IconsBuilderSettings.cs(47, 10)] CS0246: The type or namespace name 'Menu' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\IconsBuilder.cs(190, 33)] CS0246: The type or namespace name 'Entity' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\IconsBuilder.cs(197, 43)] CS0246: The type or namespace name 'Entity' could not be found (are you missing a using directive or an assembly reference?)
    [3/30/2024 8:38:10 PM, D:\User\Desktop\ExileApi\Plugins\Source\IconsBuilder\IconsBuilder.cs(197, 17)] CS0246: The type or namespace name 'BaseIcon' could not be found (are you missing a using directive or an assembly reference?)
    edit: changing the ExileCore reference to this in the csproj fixes the compile
    Code:
    <Reference Include="ExileCore">
          <HintPath>$(exapiPackage)\ExileCore.dll</HintPath>
          <Private>False</Private>
    </Reference>
    But I'm not sure if the code in that repo is the latest.
    Last edited by Glitter2770; 03-30-2024 at 07:08 PM.

  9. #158
    aseasease's Avatar Member
    Reputation
    1
    Join Date
    Nov 2018
    Posts
    11
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    i can t seem to make the altar helper to work, tried every thing i could
    but i m sure i m doing something wrong, so if somebody managed to make it work or has any tips i m gladly taking them.

  10. #159
    AlchemistExx's Avatar Member
    Reputation
    2
    Join Date
    Oct 2021
    Posts
    2
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Is there any plugin to automate Detonate Dead after casting Desecrate?

  11. Thanks seta691 (1 members gave Thanks to AlchemistExx for this useful post)
  12. #160
    Cequez's Avatar Member
    Reputation
    3
    Join Date
    Jun 2019
    Posts
    19
    Thanks G/R
    5/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Glitter2770 View Post
    Is this the current version of the source code for the compiled plugin? GitHub - exApiTools/IconsBuilder
    Because I'm getting a lot of errors when compiling which makes me think is not updated to current ExileApi.

    Errors:
    [CODE]
    Build failed:
    ....
    edit: changing the ExileCore reference to this in the csproj fixes the compile
    MonsterIcon.cs:
    Code:
    <Reference Include="ExileCore">
          <HintPath>$(exapiPackage)\ExileCore.dll</HintPath>
          <Private>False</Private>
    </Reference>
    But I'm not sure if the code in that repo is the latest.
    Code:
                    if (settings.ReplaceMonsterNameWithArchnemesis)
                    {
                        var archNemText = "";
                        if (entity.HasComponent<ObjectMagicProperties>())
                        {
                            var objectMagicProperties = entity?.GetComponent<ObjectMagicProperties>();
                            if (objectMagicProperties != null)
                            {
                                var mods = objectMagicProperties.Mods;
    
                            if (mods.Any(x => x.Contains("Necropolis", StringComparison.OrdinalIgnoreCase))) {
                                archNemText = "Necropolis";
                            }
                            if (entity.Buffs.Any(x => x.Name.Contains("Necropolis", StringComparison.OrdinalIgnoreCase))) {
                            Text = "!!! Necropolis !!!";
                            }
                                if (mods != null)
                                {
                                    foreach (var modText in mods)
                                    {
                                        ...
    did i do this correctly?

  13. #161
    kyryl01011's Avatar Member
    Reputation
    1
    Join Date
    Aug 2020
    Posts
    7
    Thanks G/R
    5/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    hey bro, for some reason I can't make TujenMem plugin work, like in test mode it works perfectly fine, recognizes everything and place right price but when I try it to work it just does nothing, could you please give me some advice what I do wrong and how to fix it 🤔Screenshot 2024-03-31 234214 (1).png

  14. #162
    BobbyBFree's Avatar Member
    Reputation
    1
    Join Date
    May 2022
    Posts
    5
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Are there any simple plugins that can press a key every X seconds, or is there a way to use the autohotkey plugin from GameHelper in exileapi? I have tried Copilot and it just did not work, clean install, default inputs mapped, and nothing. I gave Reagent a go as it was similar to gamehelper, however it did not have a built in way to create the scripts, and when trying to manually write a script for a divine blessing linked malevolence auto cast, I could not figure out the exact expression for the skill, as some sources called it just malevolence, and others said damage_over_time_aura.

  15. #163
    cheatingeagle's Avatar ★ Elder ★
    Reputation
    1233
    Join Date
    Feb 2017
    Posts
    422
    Thanks G/R
    24/1080
    Trade Feedback
    8 (100%)
    Mentioned
    25 Post(s)
    Tagged
    1 Thread(s)
    Originally Posted by BobbyBFree View Post
    Are there any simple plugins that can press a key every X seconds, or is there a way to use the autohotkey plugin from GameHelper in exileapi? I have tried Copilot and it just did not work, clean install, default inputs mapped, and nothing. I gave Reagent a go as it was similar to gamehelper, however it did not have a built in way to create the scripts, and when trying to manually write a script for a divine blessing linked malevolence auto cast, I could not figure out the exact expression for the skill, as some sources called it just malevolence, and others said damage_over_time_aura.
    BuildYourOwnRoutine probably fits the description if you couldn't handle Reagent. FWIW, damage_over_time_aura/malevolence are the buff/skill name as provided by the game, it's not me trying to be smart or something.

  16. #164
    BobbyBFree's Avatar Member
    Reputation
    1
    Join Date
    May 2022
    Posts
    5
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Yeah, I got BuildYourOwnRoutine to use the skill, but i couldnt figure out how to have it wait. Any tips that'll point me in the right direction?

  17. #165
    druich's Avatar Member
    Reputation
    6
    Join Date
    Jun 2013
    Posts
    36
    Thanks G/R
    1/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Anyone able to make fullraresetmanager work? Items its adding to inventory are not valid for sets.

Page 11 of 35 FirstFirst ... 789101112131415 ... LastLast

Similar Threads

  1. [Release] MapHelper - Plugin for ExileApi
    By dirkbach666 in forum PoE Bots and Programs
    Replies: 5
    Last Post: 03-04-2025, 11:45 PM
  2. [Release] ExileAPI plugin : Tower Defence
    By dlr5668 in forum PoE Bots and Programs
    Replies: 57
    Last Post: 03-14-2020, 08:41 PM
  3. [Release] ExileApi Plugin: Skilly(Autoskill)
    By buzduke in forum PoE Bots and Programs
    Replies: 0
    Last Post: 12-29-2019, 07:34 AM
  4. ExileApi Plugin: Level Up Gems
    By dirkbach666 in forum PoE Bots and Programs
    Replies: 6
    Last Post: 12-22-2019, 03:31 AM
  5. Replies: 0
    Last Post: 06-01-2019, 11:55 PM
All times are GMT -5. The time now is 06:12 PM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search