PoEHUD Overlay Updated menu

Shout-Out

User Tag List

Page 52 of 461 FirstFirst ... 2484950515253545556102152 ... LastLast
Results 766 to 780 of 6913
  1. #766
    chuliganas's Avatar Member
    Reputation
    1
    Join Date
    Aug 2014
    Posts
    23
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    just tried to reinstall the game itself, still same problem.

    PoEHUD Overlay Updated
  2. #767
    SpaceGuy119's Avatar Member
    Reputation
    11
    Join Date
    Aug 2014
    Posts
    351
    Thanks G/R
    8/9
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    1 Thread(s)
    Originally Posted by datz View Post
    thought that was for beta almost pooped myself
    it's not?

    damn

  3. #768
    HvC's Avatar Contributor
    Reputation
    138
    Join Date
    Jan 2015
    Posts
    324
    Thanks G/R
    0/50
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    It's not going to be for closed beta unless someone makes a fork that works on closed beta.
    I'm going to do my best to have it up and running for release and keep it that way but I can't be bothered with the beta atm.

  4. #769
    dor003's Avatar Member
    Reputation
    1
    Join Date
    May 2015
    Posts
    7
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by doragon View Post
    Seems u don't have "FSharp.Core.dll", so i merged this dll into exe, try now

    https://mega.co.nz/#!v44yhQhC!HeSiM8...eVleCtFITGcTcw
    Can you give src of your exe? Need to remove framerate\time from xph display.

    PoEHUD Overlay Updated-poepoe2-png

  5. #770
    doragon's Avatar Contributor
    Reputation
    80
    Join Date
    Nov 2014
    Posts
    176
    Thanks G/R
    9/15
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by dor003 View Post
    Can you give src of your exe? Need to remove framerate\time from xph display.

    PoEHUD Overlay Updated-poepoe2-png
    I provided source code in msyGit patch form.
    http://www.ownedcore.com/forums/mmo/...ml#post3292448

  6. #771
    kvisti's Avatar Member
    Reputation
    3
    Join Date
    May 2015
    Posts
    16
    Thanks G/R
    1/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Ur link is broken, Please publish file again, ty!

  7. #772
    kvisti's Avatar Member
    Reputation
    3
    Join Date
    May 2015
    Posts
    16
    Thanks G/R
    1/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by doragon View Post
    Ur link is broken, Please publish file again, ty!

  8. #773
    doragon's Avatar Contributor
    Reputation
    80
    Join Date
    Nov 2014
    Posts
    176
    Thanks G/R
    9/15
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by kvisti View Post
    Ur link is broken, Please publish file again, ty!
    fixed dead link

  9. #774
    dor003's Avatar Member
    Reputation
    1
    Join Date
    May 2015
    Posts
    7
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by doragon View Post
    ok, thanks

  10. #775
    IamURU's Avatar Member
    Reputation
    1
    Join Date
    May 2015
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    how much is the chance to be banned?

  11. #776
    doragon's Avatar Contributor
    Reputation
    80
    Join Date
    Nov 2014
    Posts
    176
    Thanks G/R
    9/15
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Code:
    System.NullReferenceException: Object reference not set to an instance of an object.
       at PoeHUD.Hud.Loot.ItemAlertPlugin.OnEntityAdded(EntityWrapper entity)
       at System.Action`1.Invoke(T obj)
       at PoeHUD.Models.EntityListWrapper.RefreshState()
       at PoeHUD.Controllers.GameController.RefreshState()
       at PoeHUD.Hud.ExternalOverlay.OnRender()
       at PoeHUD.Framework.Helpers.ActionHelper.SafeInvoke(Action action)
       at PoeHUD.Hud.UI.Graphics.RenderLoop()
       at PoeHUD.Hud.ExternalOverlay.<OnLoad>b__b()
       at System.Threading.Tasks.Task.InnerInvoke()
       at System.Threading.Tasks.Task.Execute()
    Bug from #5c415607 (29.01.2015 5:50:46)

    Fixed (eu version)

    Code:
    From ed850165ebe1880111c2640199cc49e488b9caa3 Mon Sep 17 00:00:00 2001
    From: doragon<[email protected]>
    Date: Sun, 3 May 2015 06:36:20 +0300
    Subject: [PATCH] Fixed crashing on login screen
    
    ---
     src/Models/EntityListWrapper.cs | 4 +++-
     1 file changed, 3 insertions(+), 1 deletion(-)
    
    diff --git a/src/Models/EntityListWrapper.cs b/src/Models/EntityListWrapper.cs
    index d7dd740..9c779b4 100644
    --- a/src/Models/EntityListWrapper.cs
    +++ b/src/Models/EntityListWrapper.cs
    @@ -66,7 +66,9 @@ public void RefreshState()
                 {
                     Player = new EntityWrapper(gameController, address);
                 }
    -
    +            if (gameController.Area.CurrentArea == null)
    +                return;
    +            
                 Dictionary<int, Entity> newEntities = gameController.Game.IngameState.Data.EntityList.EntitiesAsDictionary;
                 var newCache = new Dictionary<int, EntityWrapper>();
                 foreach (var keyEntity in newEntities)
    -- 
    1.9.5.msysgit.0

  12. #777
    HvC's Avatar Contributor
    Reputation
    138
    Join Date
    Jan 2015
    Posts
    324
    Thanks G/R
    0/50
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by doragon View Post
    Code:
    System.NullReferenceException: Object reference not set to an instance of an object.
       at PoeHUD.Hud.Loot.ItemAlertPlugin.OnEntityAdded(EntityWrapper entity)
       at System.Action`1.Invoke(T obj)
       at PoeHUD.Models.EntityListWrapper.RefreshState()
       at PoeHUD.Controllers.GameController.RefreshState()
       at PoeHUD.Hud.ExternalOverlay.OnRender()
       at PoeHUD.Framework.Helpers.ActionHelper.SafeInvoke(Action action)
       at PoeHUD.Hud.UI.Graphics.RenderLoop()
       at PoeHUD.Hud.ExternalOverlay.<OnLoad>b__b()
       at System.Threading.Tasks.Task.InnerInvoke()
       at System.Threading.Tasks.Task.Execute()
    Bug from #5c415607 (29.01.2015 5:50:46)

    Fixed (eu version)

    Code:
    From ed850165ebe1880111c2640199cc49e488b9caa3 Mon Sep 17 00:00:00 2001
    From: doragon<[email protected]>
    Date: Sun, 3 May 2015 06:36:20 +0300
    Subject: [PATCH] Fixed crashing on login screen
    
    ---
     src/Models/EntityListWrapper.cs | 4 +++-
     1 file changed, 3 insertions(+), 1 deletion(-)
    
    diff --git a/src/Models/EntityListWrapper.cs b/src/Models/EntityListWrapper.cs
    index d7dd740..9c779b4 100644
    --- a/src/Models/EntityListWrapper.cs
    +++ b/src/Models/EntityListWrapper.cs
    @@ -66,7 +66,9 @@ public void RefreshState()
                 {
                     Player = new EntityWrapper(gameController, address);
                 }
    -
    +            if (gameController.Area.CurrentArea == null)
    +                return;
    +            
                 Dictionary<int, Entity> newEntities = gameController.Game.IngameState.Data.EntityList.EntitiesAsDictionary;
                 var newCache = new Dictionary<int, EntityWrapper>();
                 foreach (var keyEntity in newEntities)
    -- 
    1.9.5.msysgit.0
    Merged, thanks.

  13. #778
    Jonron's Avatar Member
    Reputation
    1
    Join Date
    May 2015
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hello, sorry to ask but does zoom hacking working still or its 100% detectable?
    Last edited by Jonron; 05-03-2015 at 02:08 PM.

  14. #779
    sergqw's Avatar Member
    Reputation
    1
    Join Date
    Apr 2015
    Posts
    5
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Mr. Doragon pls fixed link (Garena ru patch)

  15. #780
    kvisti's Avatar Member
    Reputation
    3
    Join Date
    May 2015
    Posts
    16
    Thanks G/R
    1/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by sergqw View Post
    Mr. Doragon pls fixed link (Garena ru patch)
    https://mega.co.nz/#!v44yhQhC!HeSiM8...eVleCtFITGcTcw work pretty good! Just replace files

Similar Threads

  1. [Release] PoeHUD - Overlay for Path of Exile
    By Coyl in forum PoE Bots and Programs
    Replies: 1870
    Last Post: 01-27-2015, 02:28 AM
  2. [Tool] Exp per hour overlay (needs offset update)
    By moustache in forum PoE Bots and Programs
    Replies: 15
    Last Post: 11-08-2013, 09:00 PM
  3. Site updates 6/19/2006
    By Matt in forum OC News
    Replies: 1
    Last Post: 06-19-2006, 08:48 AM
  4. Updated(FuxxoZ|WoWGlider)
    By ih8blizz in forum World of Warcraft Bots and Programs
    Replies: 22
    Last Post: 06-16-2006, 09:24 PM
  5. New Update on the Patch!
    By Dwarpy in forum World of Warcraft General
    Replies: 1
    Last Post: 05-22-2006, 12:50 AM
All times are GMT -5. The time now is 10:32 AM. 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