ExileAPI Release menu

User Tag List

Page 29 of 72 FirstFirst ... 252627282930313233 ... LastLast
Results 421 to 435 of 1079
  1. #421
    xerance's Avatar Active Member CoreCoins Purchaser
    Reputation
    37
    Join Date
    Jan 2018
    Posts
    176
    Thanks G/R
    39/35
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    i'm getting this error when i try to launch it: https://puu.sh/ItCYe/1fa11a11c4.png

    was working just fine yesterday

    ExileAPI Release
  2. #422
    uberbor3d's Avatar Member
    Reputation
    2
    Join Date
    Apr 2014
    Posts
    15
    Thanks G/R
    2/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I recently updated my monitor went to 4k, the minimap icons are off center way off screen. Anyway to fix this?

  3. #423
    Shorty22's Avatar Member
    Reputation
    1
    Join Date
    Oct 2021
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Does anyone use the unstack decks plugin? It's not working for me

  4. #424
    illone's Avatar Member
    Reputation
    2
    Join Date
    Apr 2019
    Posts
    30
    Thanks G/R
    4/1
    Trade Feedback
    5 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Is there any plugin for gem-swap?

  5. #425
    CornFlake101's Avatar Member
    Reputation
    8
    Join Date
    Jul 2013
    Posts
    103
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by illone View Post
    Is there any plugin for gem-swap?
    wingman relaoded

  6. #426
    destramento's Avatar Member
    Reputation
    1
    Join Date
    Feb 2020
    Posts
    13
    Thanks G/R
    10/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Is here way to load private plugins from github if i am owner?
    Also, how can i add solution project to Plugins\Source folder without github? if i add new lines to updateSettings with "Value": "PluginFolder", poehud deleting my "PluginFolder" instead of emmm read it
    Last edited by destramento; 12-20-2021 at 08:40 AM.

  7. #427
    CornFlake101's Avatar Member
    Reputation
    8
    Join Date
    Jul 2013
    Posts
    103
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    recent patch broke a few things (offsets, etc)
    Last edited by CornFlake101; 12-21-2021 at 10:56 PM.

  8. #428
    Forumuser1000's Avatar Active Member
    Reputation
    27
    Join Date
    Mar 2017
    Posts
    257
    Thanks G/R
    169/21
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Yep, not working after today's patch.

    We'll just have to be patient until it's fixed/updated.

  9. #429
    kadala's Avatar Member
    Reputation
    1
    Join Date
    Dec 2019
    Posts
    21
    Thanks G/R
    7/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by CornFlake101 View Post
    wingman relaoded
    how do you set this up? i've been using wingman reloaded for about 2 leagues now but unable to get it to work properly.

  10. #430
    gangebob's Avatar Member
    Reputation
    5
    Join Date
    Sep 2016
    Posts
    41
    Thanks G/R
    10/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Release 1 . gangebob/ExileApi . GitHub
    try this one
    thx to justagithubdude

  11. #431
    CornFlake101's Avatar Member
    Reputation
    8
    Join Date
    Jul 2013
    Posts
    103
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    thank you for the update/fix!

  12. #432
    monk1111's Avatar Member
    Reputation
    6
    Join Date
    Sep 2013
    Posts
    37
    Thanks G/R
    33/5
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    thanks for updating

  13. #433
    Rol's Avatar Member
    Reputation
    2
    Join Date
    Feb 2015
    Posts
    147
    Thanks G/R
    3/6
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Hi. After last update (3.16.23) AdvancedTooltip (from GitHub - IlliumIv/AdvancedTooltip) stop working.

    SimpleHotkeyChain also not working.
    Last edited by Rol; 12-26-2021 at 12:41 PM.

  14. #434
    benelux's Avatar Member
    Reputation
    4
    Join Date
    Jul 2014
    Posts
    30
    Thanks G/R
    5/3
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    can i somehow get access to equipped gems (their experience) and to used incubators (current monster kills), which class has this information? (if any)
    also is there something related to reset thingy in domain of timeless conflict?

  15. #435
    snowhawk's Avatar Contributor
    Reputation
    150
    Join Date
    Aug 2008
    Posts
    239
    Thanks G/R
    42/133
    Trade Feedback
    0 (0%)
    Mentioned
    14 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by benelux View Post
    can i somehow get access to equipped gems (their experience)
    IngameState.Data.ServerData.PlayerInventories contains every slot the player has.

    Code:
    leftWeapon = IngameState.Data.ServerData.PlayerInventories[2].Inventory.Items[0];
    socketedGems = leftWeapon.GetComponent<Sockets>().SocketedGems;
    gem = socketedGems[0].GemEntity.GetComponent<SkillGem>();
    currentExp = gem.TotalExpGained - gem.ExperiencePrevLevel;
    Originally Posted by benelux View Post
    and to used incubators (current monster kills), which class has this information? (if any)
    See the mods component.

    Code:
    leftWeapon.GetComponent<Mods>().IncubatorKills;
    Originally Posted by benelux View Post
    also is there something related to reset thingy in domain of timeless conflict?
    There is probably some terrain object you can reference in GameController.EntityListWrapper.ValidEntitiesByType[31]

    Originally Posted by Rol View Post
    Hi. After last update (3.16.23) AdvancedTooltip (from GitHub - IlliumIv/AdvancedTooltip) stop working.

    SimpleHotkeyChain also not working.
    AdvancedTooltip should work again once Queuete accepts the pull request. SimpleHotkeyChain is working fine here. Would need more details on how its messing up.

  16. Thanks benelux (1 members gave Thanks to snowhawk for this useful post)
Page 29 of 72 FirstFirst ... 252627282930313233 ... LastLast

Similar Threads

  1. [Release] ExileAPI 3.14 Release
    By Queuete in forum PoE Bots and Programs
    Replies: 532
    Last Post: 07-24-2021, 04:37 AM
  2. [Release] ExileAPI 3.13 Release
    By Queuete in forum PoE Bots and Programs
    Replies: 606
    Last Post: 04-17-2021, 06:22 AM
  3. [Release] ExileAPI 3.12 Release
    By Queuete in forum PoE Bots and Programs
    Replies: 492
    Last Post: 01-16-2021, 07:30 AM
  4. ExileAPI Fork 3.11 Release
    By Queuete in forum PoE Bots and Programs
    Replies: 256
    Last Post: 09-20-2020, 02:49 PM
  5. ExileAPI Fork (with Release)
    By Queuete in forum PoE Bots and Programs
    Replies: 231
    Last Post: 06-22-2020, 05:19 PM
All times are GMT -5. The time now is 01:03 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