-
i'm getting this error when i try to launch it: https://puu.sh/ItCYe/1fa11a11c4.png
was working just fine yesterday
-
Member
I recently updated my monitor went to 4k, the minimap icons are off center way off screen. Anyway to fix this?
-
Member
Does anyone use the unstack decks plugin? It's not working for me
-
Member
Is there any plugin for gem-swap?
-
Member
Originally Posted by
illone
Is there any plugin for gem-swap?
wingman relaoded
-
Member
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.
-
Member
recent patch broke a few things (offsets, etc)
Last edited by CornFlake101; 12-21-2021 at 10:56 PM.
-
Active Member
Yep, not working after today's patch.
We'll just have to be patient until it's fixed/updated.
-
Member
Originally Posted by
CornFlake101
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.
-
Member
-
Member
thank you for the update/fix!
-
Member
-
Member
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.
-
Member
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?
-
Contributor
Originally Posted by
benelux
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
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
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
AdvancedTooltip should work again once Queuete accepts the pull request. SimpleHotkeyChain is working fine here. Would need more details on how its messing up.
-
Post Thanks / Like - 1 Thanks
benelux (1 members gave Thanks to snowhawk for this useful post)