ExileApi (Old POEHUD) Overlay for Path of Exile menu

User Tag List

Page 3 of 78 FirstFirst 123456753 ... LastLast
Results 31 to 45 of 1158
  1. #31
    Unknown_B's Avatar Member
    Reputation
    12
    Join Date
    Aug 2017
    Posts
    41
    Thanks G/R
    3/10
    Trade Feedback
    0 (0%)
    Mentioned
    3 Post(s)
    Tagged
    0 Thread(s)
    Everything working well for me so far except the Flask Routine thats included. I believe BasicFlaskRoutine was ported over and works fine tho. GitHub - sychotixdev/BasicFlaskRoutine: BasicFlaskRoutine is a PoeHUD plugin example using BaseTreeRoutine. It is a rewrite of AutoFlaskManager to give some insight as to how plugin written using a BaseTreeRoutine compares to the original. Just extract the plugin into the Plugins folder and should be good to go. Its already compiled.


    Qvin do you have any idea on how to fix the DPI issues with large resolutions? IE if you have a 3840 x 2160 resolution (very common for 4k monitors), the HUD itself loads great and very easy to read and config, but the plugins themselves fail to work because of the DPI scaling.

    Example. PickIt cant click on items on the ground because the scaling is off. Same with Stashie it cant move items from your bag to inventory because the scaling is off. Dots on minimap are off, etc etc.

    The temp fix for this right clicking Loading.exe > Properties > Compatibility > Change high DPI settings > check Override high DPI scaling behavior > dropdown menu = Application.

    The above will allow all the plugins to work correctly, but then the menu becomes so small on the HUD that even with an 80 inch TV i have to stand 1 foot away to read it.

    Clearly you have this working for the HUD itself... is there any chance to get the plugins to behave the same way?

    Maybe its similar to what AutoIt users have to do to fix DPI scaling, which is adding code to the top of thier scripts. I know very different languages, but same idea should apply.

    Code:
    ; enum _PROCESS_DPI_AWARENESS
    Global Const $PROCESS_DPI_UNAWARE = 0
    Global Const $PROCESS_SYSTEM_DPI_AWARE = 1
    Global Const $PROCESS_PER_MONITOR_DPI_AWARE = 2
    
    ; enum _MONITOR_DPI_TYPE
    Global Const $MDT_EFFECTIVE_DPI = 0
    Global Const $MDT_ANGULAR_DPI = 1
    Global Const $MDT_RAW_DPI = 2
    Global Const $MDT_DEFAULT = $MDT_EFFECTIVE_DPI
    
    _WinAPI_SetProcessDpiAwareness($PROCESS_PER_MONITOR_DPI_AWARE)
    
    $aMonitors = _WinAPI_EnumDisplayMonitors()
    If Not IsArray($aMonitors) Then Exit ;MsgBox(0, "", "EnumDisplayMonitors error")
    
    For $i = 1 To $aMonitors[0][0]
      $aDPI = _WinAPI_GetDpiForMonitor($aMonitors[$i][0], $MDT_DEFAULT)
      ;$_ = IsArray($aDPI) ? MsgBox(0, "", $aDPI[0] & ":" & $aDPI[1]) : MsgBox(0, "", "error")
    Next
    
    Func _WinAPI_SetProcessDpiAwareness($DPIAware)
      DllCall("Shcore.dll", "long", "SetProcessDpiAwareness", "int", $DPIAware)
      If @error Then Return SetError(1, 0, 0)
    EndFunc
    
    Func _WinAPI_GetDpiForMonitor($hMonitor, $dpiType)
      Local $X, $Y
      $aRet = DllCall("Shcore.dll", "long", "GetDpiForMonitor", "long", $hMonitor, "int", $dpiType, "uint*", $X, "uint*", $Y)
      If @error Or Not IsArray($aRet) Then Return SetError(1, 0, 0)
      Local $aDPI[2] = [$aRet[3],$aRet[4]]
      Return $aDPI
    EndFunc
    Last edited by Unknown_B; 09-10-2019 at 06:37 PM.

    ExileApi (Old POEHUD) Overlay for Path of Exile
  2. #32
    m40concept's Avatar Member
    Reputation
    1
    Join Date
    Jul 2018
    Posts
    17
    Thanks G/R
    4/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Does this work at all on windows 7 x64? Loader just empty for me, I see poehud in tray but I dont get anything at all in visual when f12, zafaars versions pops up, but I am having difficulty understanding compiling and always run into errors and things don't build properly (video somewhere would be great). If it doesn't work on windows 7 would windows 10 be next best thing?

  3. #33
    Rocker866's Avatar Member
    Reputation
    3
    Join Date
    Nov 2011
    Posts
    204
    Thanks G/R
    13/2
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    nice work my man ! would be nice if we could get a thing to do chaos recipe again with a plugin that works

  4. #34
    beber75's Avatar Member
    Reputation
    4
    Join Date
    Aug 2016
    Posts
    22
    Thanks G/R
    0/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Did all of you are using a non steam client ?
    On my computer it does not detect the game (I'm on steam).

  5. #35
    MACROS4LIFE's Avatar Active Member
    Reputation
    47
    Join Date
    Dec 2015
    Posts
    459
    Thanks G/R
    58/45
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    my fingers need auto mines plugin updated asap. My hands are broken lmao.

    Thx and good job.
    Last edited by MACROS4LIFE; 09-10-2019 at 09:51 PM.
    HUD it's like cocaine, once you used, you can't forget.

  6. #36
    pwndbymeh's Avatar Active Member
    Reputation
    27
    Join Date
    May 2010
    Posts
    175
    Thanks G/R
    18/15
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    what am I doing wrong? tried to compile 2 plugins

    \BasicFlaskRoutineSettings.cs(1,22) : error CS0234: The type or namespace name 'Forms' does not exist in the namespace 'System.Windows' (are you missing an assembly reference?)
    PoeHelper\Plugins\Source\Pickit\src\Properties\AssemblyInfo.cs(35,32) : warning CS7035: The specified version string does not conform to the recommended format - major.minor.build.revision

  7. #37
    Forumuser1000's Avatar Active Member
    Reputation
    27
    Join Date
    Mar 2017
    Posts
    250
    Thanks G/R
    147/21
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Is this likely to have a working version for Windows 7 users, or are we all just up shit creek now? POE is completely unplayable without a working version of HUD.

  8. #38
    elvese's Avatar Member
    Reputation
    1
    Join Date
    Mar 2014
    Posts
    80
    Thanks G/R
    3/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Trying to compile basic flask routine

    H:\poe hacks\blight\PoeHelper\PoeHelper\Plugins\Source\BasicFlaskRoutine\src\BasicFlask Routine\BasicFlaskRoutineSettings.cs(1,22) : error CS0234: Typ lub przestrzeń nazw „Forms” nie występuje w przestrzeni nazw „System.Windows” (czy nie brakuje odwołania do zestawu?)
    H:\poe hacks\blight\PoeHelper\PoeHelper\Plugins\Source\BasicFlaskRoutine\src\BasicFlask Routine\Flask\FlaskSetting.cs(6,22) : error CS0234: Typ lub przestrzeń nazw „Forms” nie występuje w przestrzeni nazw „System.Windows” (czy nie brakuje odwołania do zestawu?)
    H:\poe hacks\blight\PoeHelper\PoeHelper\Plugins\Source\BasicFlaskRoutine\src\BuildYourO wnRoutine\BuildYourOwnRoutineSettings.cs(6,3 : error CS1069: Nie można odnaleźć nazwy typu „Vector2” w przestrzeni nazw „System.Numerics”. Ten typ został przesłany dalej do zestawu „System.Numerics, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089”. Rozważ możliwość dodania odwołania do tego zestawu.
    H:\poe hacks\blight\PoeHelper\PoeHelper\Plugins\Source\BasicFlaskRoutine\src\BuildYourO wnRoutine\BuildYourOwnRoutineSettings.cs(7,3 : error CS1069: Nie można odnaleźć nazwy typu „Vector4” w przestrzeni nazw „System.Numerics”. Ten typ został przesłany dalej do zestawu „System.Numerics, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089”. Rozważ możliwość dodania odwołania do tego zestawu.
    H:\poe hacks\blight\PoeHelper\PoeHelper\Plugins\Source\BasicFlaskRoutine\src\BuildYourO wnRoutine\BuildYourOwnRoutineSettings.cs(2,22) : error CS0234: Typ lub przestrzeń nazw „Forms” nie występuje w przestrzeni nazw „System.Windows” (czy nie brakuje odwołania do zestawu?)
    H:\poe hacks\blight\PoeHelper\PoeHelper\Plugins\Source\BasicFlaskRoutine\src\BuildYourO wnRoutine\Extension\Default\Actions\SendKeyAction.cs(7,22) : error CS0234: Typ lub przestrzeń nazw „Forms” nie występuje w przestrzeni nazw „System.Windows” (czy nie brakuje odwołania do zestawu?)
    H:\poe hacks\blight\PoeHelper\PoeHelper\Plugins\Source\BasicFlaskRoutine\src\BuildYourO wnRoutine\Extension\Default\Actions\TimerAction.cs(8,22) : error CS0234: Typ lub przestrzeń nazw „Forms” nie występuje w przestrzeni nazw „System.Windows” (czy nie brakuje odwołania do zestawu?)
    H:\poe hacks\blight\PoeHelper\PoeHelper\Plugins\Source\BasicFlaskRoutine\src\BuildYourO wnRoutine\Extension\Default\Actions\UseVaalSkillAction.cs(7,22) : error CS0234: Typ lub przestrzeń nazw „Forms” nie występuje w przestrzeni nazw „System.Windows” (czy nie brakuje odwołania do zestawu?)
    H:\poe hacks\blight\PoeHelper\PoeHelper\Plugins\Source\BasicFlaskRoutine\src\BuildYourO wnRoutine\Extension\Default\Conditions\IsKeyPressedCondition.cs(7,22) : error CS0234: Typ lub przestrzeń nazw „Forms” nie występuje w przestrzeni nazw „System.Windows” (czy nie brakuje odwołania do zestawu?)
    H:\poe hacks\blight\PoeHelper\PoeHelper\Plugins\Source\BasicFlaskRoutine\src\TreeRoutin e\DefaultBehaviors\Actions\UseHotkeyAction.cs(2,22) : error CS0234: Typ lub przestrzeń nazw „Forms” nie występuje w przestrzeni nazw „System.Windows” (czy nie brakuje odwołania do zestawu?)
    H:\poe hacks\blight\PoeHelper\PoeHelper\Plugins\Source\BasicFlaskRoutine\src\TreeRoutin e\DefaultBehaviors\Helpers\KeyboardHelper.cs(4,22) : error CS0234: Typ lub przestrzeń nazw „Forms” nie występuje w przestrzeni nazw „System.Windows” (czy nie brakuje odwołania do zestawu?)
    H:\poe hacks\blight\PoeHelper\PoeHelper\Plugins\Source\BasicFlaskRoutine\src\TreeRoutin e\Menu\ImGuiExtension.cs(11,3 : error CS1069: Nie można odnaleźć nazwy typu „Vector2” w przestrzeni nazw „System.Numerics”. Ten typ został przesłany dalej do zestawu „System.Numerics, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089”. Rozważ możliwość dodania odwołania do tego zestawu.
    H:\poe hacks\blight\PoeHelper\PoeHelper\Plugins\Source\BasicFlaskRoutine\src\TreeRoutin e\Menu\ImGuiExtension.cs(12,3 : error CS1069: Nie można odnaleźć nazwy typu „Vector4” w przestrzeni nazw „System.Numerics”. Ten typ został przesłany dalej do zestawu „System.Numerics, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089”. Rozważ możliwość dodania odwołania do tego zestawu.
    H:\poe hacks\blight\PoeHelper\PoeHelper\Plugins\Source\BasicFlaskRoutine\src\TreeRoutin e\Menu\ImGuiExtension.cs(5,22) : error CS0234: Typ lub przestrzeń nazw „Forms” nie występuje w przestrzeni nazw „System.Windows” (czy nie brakuje odwołania do zestawu?)
    H:\poe hacks\blight\PoeHelper\PoeHelper\Plugins\Source\BasicFlaskRoutine\src\TreeRoutin e\DefaultBehaviors\Actions\UseHotkeyAction.cs(7,21) : error CS0246: Nie można znaleźć nazwy typu lub przestrzeni nazw „Keys” (brak dyrektywy using lub odwołania do zestawu?)
    H:\poe hacks\blight\PoeHelper\PoeHelper\Plugins\Source\BasicFlaskRoutine\src\BasicFlask Routine\BasicFlaskRoutine.cs(36,17) : error CS1069: Nie można odnaleźć nazwy typu „Stopwatch” w przestrzeni nazw „System.Diagnostics”. Ten typ został przesłany dalej do zestawu „System, Version=0.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089”. Rozważ możliwość dodania odwołania do tego zestawu.
    H:\poe hacks\blight\PoeHelper\PoeHelper\Plugins\Source\BasicFlaskRoutine\src\TreeRoutin e\Menu\ImGuiExtension.cs(120,35) : error CS0246: Nie można znaleźć nazwy typu lub przestrzeni nazw „Keys” (brak dyrektywy using lub odwołania do zestawu?)
    H:\poe hacks\blight\PoeHelper\PoeHelper\Plugins\Source\BasicFlaskRoutine\src\TreeRoutin e\DefaultBehaviors\Helpers\KeyboardHelper.cs(26,53) : error CS0246: Nie można znaleźć nazwy typu lub przestrzeni nazw „Keys” (brak dyrektywy using lub odwołania do zestawu?)
    H:\poe hacks\blight\PoeHelper\PoeHelper\Plugins\Source\BasicFlaskRoutine\src\TreeRoutin e\DefaultBehaviors\Helpers\KeyboardHelper.cs(29,29) : error CS0246: Nie można znaleźć nazwy typu lub przestrzeni nazw „Keys” (brak dyrektywy using lub odwołania do zestawu?)
    H:\poe hacks\blight\PoeHelper\PoeHelper\Plugins\Source\BasicFlaskRoutine\src\TreeRoutin e\DefaultBehaviors\Helpers\KeyboardHelper.cs(39,27) : error CS0246: Nie można znaleźć nazwy typu lub przestrzeni nazw „Keys” (brak dyrektywy using lub odwołania do zestawu?)
    H:\poe hacks\blight\PoeHelper\PoeHelper\Plugins\Source\BasicFlaskRoutine\src\TreeRoutin e\DefaultBehaviors\Helpers\KeyboardHelper.cs(43,37) : error CS0246: Nie można znaleźć nazwy typu lub przestrzeni nazw „Keys” (brak dyrektywy using lub odwołania do zestawu?)
    H:\poe hacks\blight\PoeHelper\PoeHelper\Plugins\Source\BasicFlaskRoutine\src\TreeRoutin e\Menu\ImGuiExtension.cs(186,62) : error CS0246: Nie można znaleźć nazwy typu lub przestrzeni nazw „Keys” (brak dyrektywy using lub odwołania do zestawu?)
    H:\poe hacks\blight\PoeHelper\PoeHelper\Plugins\Source\BasicFlaskRoutine\src\TreeRoutin e\Menu\ImGuiExtension.cs(186,23) : error CS0246: Nie można znaleźć nazwy typu lub przestrzeni nazw „Keys” (brak dyrektywy using lub odwołania do zestawu?)
    H:\poe hacks\blight\PoeHelper\PoeHelper\Plugins\Source\BasicFlaskRoutine\src\TreeRoutin e\TreeSharp\Composite.cs(48,19) : error CS1069: Nie można odnaleźć nazwy typu „Stack<>” w przestrzeni nazw „System.Collections.Generic”. Ten typ został przesłany dalej do zestawu „System, Version=0.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089”. Rozważ możliwość dodania odwołania do tego zestawu.
    H:\poe hacks\blight\PoeHelper\PoeHelper\Plugins\Source\BasicFlaskRoutine\src\BuildYourO wnRoutine\UI\MenuItem\ProfileMenu.cs(299,80) : error CS1069: Nie można odnaleźć nazwy typu „Vector4” w przestrzeni nazw „System.Numerics”. Ten typ został przesłany dalej do zestawu „System.Numerics, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089”. Rozważ możliwość dodania odwołania do tego zestawu.
    H:\poe hacks\blight\PoeHelper\PoeHelper\Plugins\Source\BasicFlaskRoutine\src\BuildYourO wnRoutine\Extension\ExtensionCache.cs(33,16) : error CS1069: Nie można odnaleźć nazwy typu „HashSet<>” w przestrzeni nazw „System.Collections.Generic”. Ten typ został przesłany dalej do zestawu „System.Core, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089”. Rozważ możliwość dodania odwołania do tego zestawu.
    H:\poe hacks\blight\PoeHelper\PoeHelper\Plugins\Source\BasicFlaskRoutine\src\BuildYourO wnRoutine\UI\MenuItem\ProfileMenu.cs(38,24) : error CS1069: Nie można odnaleźć nazwy typu „Vector4” w przestrzeni nazw „System.Numerics”. Ten typ został przesłany dalej do zestawu „System.Numerics, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089”. Rozważ możliwość dodania odwołania do tego zestawu.
    H:\poe hacks\blight\PoeHelper\PoeHelper\Plugins\Source\BasicFlaskRoutine\src\BuildYourO wnRoutine\Extension\ExtensionCache.cs(36,16) : error CS1069: Nie można odnaleźć nazwy typu „HashSet<>” w przestrzeni nazw „System.Collections.Generic”. Ten typ został przesłany dalej do zestawu „System.Core, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089”. Rozważ możliwość dodania odwołania do tego zestawu.
    H:\poe hacks\blight\PoeHelper\PoeHelper\Plugins\Source\BasicFlaskRoutine\src\BuildYourO wnRoutine\UI\MenuItem\ProfileMenu.cs(39,24) : error CS1069: Nie można odnaleźć nazwy typu „Vector4” w przestrzeni nazw „System.Numerics”. Ten typ został przesłany dalej do zestawu „System.Numerics, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089”. Rozważ możliwość dodania odwołania do tego zestawu.
    H:\poe hacks\blight\PoeHelper\PoeHelper\Plugins\Source\BasicFlaskRoutine\src\BuildYourO wnRoutine\Extension\Default\DefaultExtension.cs(16,17) : error CS1069: Nie można odnaleźć nazwy typu „Stopwatch” w przestrzeni nazw „System.Diagnostics”. Ten typ został przesłany dalej do zestawu „System, Version=0.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089”. Rozważ możliwość dodania odwołania do tego zestawu.

  9. #39
    Unknown_B's Avatar Member
    Reputation
    12
    Join Date
    Aug 2017
    Posts
    41
    Thanks G/R
    3/10
    Trade Feedback
    0 (0%)
    Mentioned
    3 Post(s)
    Tagged
    0 Thread(s)
    You guys dont need to compile the BasicFlaskRoutine, its already done. You can literally extract it to your desktop, then copy the folder and place it into Plugins and you are done.

  10. #40
    qqcakesqq's Avatar Member
    Reputation
    5
    Join Date
    Nov 2014
    Posts
    57
    Thanks G/R
    2/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    ok im old and dumb... how do i compile an addon?

  11. #41
    Zyrose's Avatar Member
    Reputation
    1
    Join Date
    Jan 2011
    Posts
    18
    Thanks G/R
    13/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by patrickm3 View Post
    Has anyone tried getting RareSetManager to work?
    Also interested if anyone got this working?
    Link: https://www.ownedcore.com/forums/mmo...t-manager.html (PoeHUD Plugin: Full Rare Set Manager)

    Incredibly useful and will be very useful if integrated into core!
    Last edited by Zyrose; 09-10-2019 at 11:04 PM.

  12. #42
    looser7k's Avatar Member
    Reputation
    1
    Join Date
    Jan 2019
    Posts
    14
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @Qvin
    Thank u for sharing ur great work. Donation is no problem. Is there a button?

    My problems:
    Can't compile AutoQuit. Can anyone tell me how to make AutoQuit work? Thx in advance.
    Is there a Delve plugin. I miss to see breakable walls.

    Many thanks also to the comunity for sharing ur experiance with Qvins fork.

    Cu L

  13. #43
    sirbottery's Avatar Active Member
    Reputation
    16
    Join Date
    Apr 2018
    Posts
    32
    Thanks G/R
    1/15
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by m40concept View Post
    Does this work at all on windows 7 x64? Loader just empty for me, I see poehud in tray but I dont get anything at all in visual when f12, zafaars versions pops up, but I am having difficulty understanding compiling and always run into errors and things don't build properly (video somewhere would be great). If it doesn't work on windows 7 would windows 10 be next best thing?

    I mean you're using a 10 year old operating system that at this point is being actively discouraged by almost everyone dropping support for it.

    Win10 works fine but W7 is broken.

  14. #44
    MACROS4LIFE's Avatar Active Member
    Reputation
    47
    Join Date
    Dec 2015
    Posts
    459
    Thanks G/R
    58/45
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by looser7k View Post
    @Qvin
    Thank u for sharing ur great work. Donation is no problem. Is there a button?

    My problems:
    Can't compile AutoQuit. Can anyone tell me how to make AutoQuit work? Thx in advance.
    Is there a Delve plugin. I miss to see breakable walls.

    Many thanks also to the comunity for sharing ur experiance with Qvins fork.

    Cu L
    autoquit is ready already, download n install it you dont need to compile anything
    HUD it's like cocaine, once you used, you can't forget.

  15. #45
    marekjemiolak's Avatar Member
    Reputation
    10
    Join Date
    Feb 2017
    Posts
    100
    Thanks G/R
    1/9
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hey, thanks for sharing your version of HUD. Is it possible to customize minimap icons even more ? For example different colors of chests in delve.

Page 3 of 78 FirstFirst 123456753 ... LastLast

Similar Threads

  1. PoEHUD - Overlay for Path of Exile (Updated for 3.0)
    By TehCheat in forum PoE Bots and Programs
    Replies: 4451
    Last Post: 09-05-2019, 01:53 PM
  2. [Release] ExileHUD - External overlay for Path of Exile (work in progress)
    By Evozer in forum PoE Bots and Programs
    Replies: 1131
    Last Post: 04-04-2015, 05:14 PM
  3. [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
  4. [Trading] Dota2 beta keys for Path of Exile beta keys
    By shaunffs in forum General MMO Buy Sell Trade
    Replies: 0
    Last Post: 12-13-2012, 04:20 PM
  5. [Trading] 20m D3 Gold for Path of Exiles Beta Key
    By Jam3z in forum Diablo 3 Buy Sell Trade
    Replies: 0
    Last Post: 07-31-2012, 05:30 PM
All times are GMT -5. The time now is 02:37 PM. Powered by vBulletin® Version 4.2.3
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search