GameHelper: A light version of PoeHUD/Exile-Api menu

Shout-Out

User Tag List

Page 140 of 351 FirstFirst ... 4090136137138139140141142143144190240 ... LastLast
Results 2,086 to 2,100 of 5265
  1. #2086
    katak1's Avatar Member
    Reputation
    1
    Join Date
    Jul 2013
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by duiliofrancis2 View Post
    JUst for me that Preloads not working properly?
    https://serving.photos.photobox.com/...203cce313c.jpg
    I'm in the same boat. Everything works great except from Preloads. I tried moving the file to the root but still no luck.

    Anyone could point us in the right direction to fix this issue ?

    GameHelper: A light version of PoeHUD/Exile-Api
  2. #2087
    martti96's Avatar Member
    Reputation
    2
    Join Date
    Jul 2011
    Posts
    22
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I've set the program to use my granite flask when it reaches more than 59 charges. However the flask is sitting at 60 charges and the program does not use the flask. It does show that all conditions are met, just does not use the flask.

  3. #2088
    qqwert513's Avatar Member
    Reputation
    1
    Join Date
    Feb 2022
    Posts
    7
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    When I use it for 1 minute, it will shut down and what should I do?

    Eagerly looking forward to it! Good luck on release!
    Last edited by qqwert513; 05-16-2022 at 06:08 AM.

  4. #2089
    Maggotbeast's Avatar Member
    Reputation
    1
    Join Date
    Jun 2018
    Posts
    6
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    In maps and such i get 7-8 fps in performance related stats, map stuttes alot, gameplay is smooth.

  5. #2090
    GameHelper's Avatar ★ Elder ★ CoreCoins Purchaser
    Reputation
    3015
    Join Date
    Jun 2015
    Posts
    3,325
    Thanks G/R
    507/2700
    Trade Feedback
    0 (0%)
    Mentioned
    92 Post(s)
    Tagged
    2 Thread(s)
    Originally Posted by martti96 View Post
    I've set the program to use my granite flask when it reaches more than 59 charges. However the flask is sitting at 60 charges and the program does not use the flask. It does show that all conditions are met, just does not use the flask.
    Turn on the AHKT debug more from plugin setting.
    If I did not reply to you, it mean the question you are asking is stupid.

  6. #2091
    GameHelper's Avatar ★ Elder ★ CoreCoins Purchaser
    Reputation
    3015
    Join Date
    Jun 2015
    Posts
    3,325
    Thanks G/R
    507/2700
    Trade Feedback
    0 (0%)
    Mentioned
    92 Post(s)
    Tagged
    2 Thread(s)
    Originally Posted by qqwert513 View Post
    When I use it for 1 minute, it will shut down and what should I do?

    Eagerly looking forward to it! Good luck on release!
    Share the error.log file content,
    If I did not reply to you, it mean the question you are asking is stupid.

  7. #2092
    GameHelper's Avatar ★ Elder ★ CoreCoins Purchaser
    Reputation
    3015
    Join Date
    Jun 2015
    Posts
    3,325
    Thanks G/R
    507/2700
    Trade Feedback
    0 (0%)
    Mentioned
    92 Post(s)
    Tagged
    2 Thread(s)
    Originally Posted by Maggotbeast View Post
    In maps and such i get 7-8 fps in performance related stats, map stuttes alot, gameplay is smooth.
    No idea, working fine on my side.
    If I did not reply to you, it mean the question you are asking is stupid.

  8. #2093
    GameHelper's Avatar ★ Elder ★ CoreCoins Purchaser
    Reputation
    3015
    Join Date
    Jun 2015
    Posts
    3,325
    Thanks G/R
    507/2700
    Trade Feedback
    0 (0%)
    Mentioned
    92 Post(s)
    Tagged
    2 Thread(s)
    Originally Posted by katak1 View Post
    I'm in the same boat. Everything works great except from Preloads. I tried moving the file to the root but still no luck.

    Anyone could point us in the right direction to fix this issue ?
    Download the preload file from first post and put it in preload plugin folder.
    If I did not reply to you, it mean the question you are asking is stupid.

  9. #2094
    GameAssist's Avatar Banned CoreCoins Purchaser Authenticator enabled
    Reputation
    98
    Join Date
    Apr 2010
    Posts
    349
    Thanks G/R
    55/83
    Trade Feedback
    0 (0%)
    Mentioned
    6 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by snowhawk View Post
    You'll need to write code to extend that functionality yourself as deployed object tracking isn't supported. The actor component contains a vector of deployed objects, each is an 8-byte struct. Your basically looking for a type id of 4 (Totem).

    Code:
        struct ActorComponentOffsets
        {
            // ...
            [FieldOffset(0x6D8)] StdVector<DeployedObject> DeployedObjects;
            // ...
        }
    
        struct DeployedObjectOffsets
        {
            DeployedObjectType TypeId;
            ushort SkillId; // Look up in ActorComponent.ActorSkills
            ushort InstanceId; // Look up in EntityList
            ushort Padding;
        }
    
        enum DeployedObjectType : ushort
        {
            Spectre = 0,
            Totem = 4,
            Trap,
            Zombie,
            Skeleton,
            Mine = 10,
            Skitterbots = 14, // Share same id as mirrors/clones
            Clone = 14,
            AnimatedGuardian = 16,
            AnimatedWeapon = 17,
            RagingSpirit = 18,
            Golem = 22,
            AgonyCrawler = 36,
            HolyRelic = 38,
            AbsolutionSentinel = 47,
            Reaper = 48
        }
    thank you so much for making this public.
    I have already tested - everything works fine.
    Do you mind if I add this solution to ExileAPI ?
    so it doesn't get lost on the pages of this forum

  10. #2095
    GameHelper's Avatar ★ Elder ★ CoreCoins Purchaser
    Reputation
    3015
    Join Date
    Jun 2015
    Posts
    3,325
    Thanks G/R
    507/2700
    Trade Feedback
    0 (0%)
    Mentioned
    92 Post(s)
    Tagged
    2 Thread(s)
    Originally Posted by wlastas View Post
    thank you so much for making this public.
    I have already tested - everything works fine.
    Do you mind if I add this solution to ExileAPI ?
    so it doesn't get lost on the pages of this forum
    This is already in ExileAPI, what are you talking about?
    If I did not reply to you, it mean the question you are asking is stupid.

  11. #2096
    qqwert513's Avatar Member
    Reputation
    1
    Join Date
    Feb 2022
    Posts
    7
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by GameHelper View Post
    Share the error.log file content,
    where to find error.log

  12. #2097
    qqwert513's Avatar Member
    Reputation
    1
    Join Date
    Feb 2022
    Posts
    7
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by GameHelper View Post
    Share the error.log file content,
    can i make a video for you

  13. #2098
    GameHelper's Avatar ★ Elder ★ CoreCoins Purchaser
    Reputation
    3015
    Join Date
    Jun 2015
    Posts
    3,325
    Thanks G/R
    507/2700
    Trade Feedback
    0 (0%)
    Mentioned
    92 Post(s)
    Tagged
    2 Thread(s)
    Originally Posted by qqwert513 View Post
    where to find error.log
    GH root folder.

    Originally Posted by qqwert513 View Post
    can i make a video for you


    yueah that will be best but still share the error.log file content.
    If I did not reply to you, it mean the question you are asking is stupid.

  14. #2099
    GameAssist's Avatar Banned CoreCoins Purchaser Authenticator enabled
    Reputation
    98
    Join Date
    Apr 2010
    Posts
    349
    Thanks G/R
    55/83
    Trade Feedback
    0 (0%)
    Mentioned
    6 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by GameHelper View Post
    This is already in ExileAPI, what are you talking about?
    do you mean it? there is only a blank:
    ExileApi/DeployedObject.cs at master . Queuete/ExileApi . GitHub

    i will share now:
    Code:
    using ExileCore.PoEMemory.MemoryObjects;
    using ExileCore.Shared.Cache;
    using GameOffsets;
    using System.Linq;
    
    namespace ExileCore.PoEMemory.Components {
        public class DeployedObject :RemoteMemoryObject {
            private Entity _entity;
            public DeployedObjectType TypeId => cache_do.Value.TypeId;
            public ushort SkillId => cache_do.Value.SkillId; // Look up in ActorComponent.ActorSkills
            public ushort InstanceId => cache_do.Value.InstanceId; // Look up in EntityList
            public ushort Padding => cache_do.Value.Padding;
            private readonly FrameCache<DeployedObjectOffsets> cache_do;
            public DeployedObjectOffsets deploy_data => cache_do.Value;
            public Entity Entity => _entity ?? (_entity = TheGame.IngameState.Data.EntityList.Entities.FirstOrDefault(e=>e.Id == InstanceId));
            public ActorSkill Skill => TheGame.IngameState.Data.LocalPlayer?.GetComp<Actor>()?.ActorSkills?.Find(x => x.Id == SkillId);
    
            public DeployedObject() {
                cache_do = new FrameCache<DeployedObjectOffsets>(() => M.Read<DeployedObjectOffsets>(Address));
            }
        }
    
        
    using System.Runtime.InteropServices;
    
    namespace GameOffsets
    {
        [StructLayout(LayoutKind.Explicit, Pack = 1)]
        public struct DeployedObjectOffsets {
            [FieldOffset(0x0)] public DeployedObjectType TypeId;//4 for totems, 22 for golems
            [FieldOffset(0x2)] public ushort SkillId;// Look up in ActorComponent.ActorSkills
            [FieldOffset(0x4)] public ushort InstanceId;// Look up in EntityList
            [FieldOffset(0x6)] public ushort Padding;//Always 0
        }
    
        public enum DeployedObjectType : ushort {
            Spectre = 0,
            Totem = 4,
            Trap,
            Zombie,
            Skeleton,
            Mine = 10,
            Skitterbots = 14, // Share same id as mirrors/clones
            Clone = 14,
            AnimatedGuardian = 16,
            AnimatedWeapon = 17,
            RagingSpirit = 18,
            Golem = 22,
            AgonyCrawler = 36,
            HolyRelic = 38,
            AbsolutionSentinel = 47,
            Reaper = 48
        }
    }
    Last edited by GameAssist; 05-16-2022 at 08:47 AM.

  15. #2100
    derilz's Avatar Member
    Reputation
    2
    Join Date
    Oct 2021
    Posts
    16
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    After i download latest version of poehud, i got notification about reset all my emails (thanks i got phone number linked to it) it was a new system, anyone else got problem like me? just curios ur programm have some kind virus for stealing information from user? If anyone else got same situation i wanna know, should i ever again using this or not.

Similar Threads

  1. "Light" Version of PoE HUD
    By deimudda69 in forum Path of Exile
    Replies: 41
    Last Post: 01-04-2020, 09:44 PM
  2. Replies: 34
    Last Post: 12-14-2019, 11:08 AM
  3. US version of TBC needed
    By Victor in forum World of Warcraft General
    Replies: 0
    Last Post: 01-16-2007, 05:08 AM
  4. Cracked version of Fraps?
    By Amedis in forum Community Chat
    Replies: 36
    Last Post: 12-04-2006, 12:00 AM
  5. new version of Studio
    By wrigley in forum WoW ME Questions and Requests
    Replies: 1
    Last Post: 12-02-2006, 06:35 PM
All times are GMT -5. The time now is 01:37 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