-
Member
Finally got one to spawn in a different zone, maybe I was really really unlucky which must have been the case. Got one in the lunaris temple so they are still spawning and hud is working correctly.
-
★ Elder ★
Originally Posted by
chonic
You could say you were just spamming instances to get a Prophecy to proc.
You can say whatever you want, but when you spam 50 instances, then "randomly" do the one that has a diviner's in it, then repeat the process for a few hours, it doesn't exactly take a genius to figure out what is going on. And GGG has been doing heuristic detection for far longer than they've had an anti cheat.
-
Post Thanks / Like - 3 Thanks
-
Member
Can someone give me advice - best farm method? Best location?
-
Member
Originally Posted by
AlterCunt
Can someone give me advice - best farm method? Best location?
see first post on page 264
-
Member
POETW updated to 2.4.0F
POEHUD (TW) not working , Please Help
-
★ Elder ★
Originally Posted by
killerng1703
POETW updated to 2.4.0F
POEHUD (TW) not working , Please Help
The updated version is downloading right now, I should have a working copy within the next 12 hours or so.
-
Post Thanks / Like - 2 Thanks
-
★ Elder ★
K, GarenaTW should be updated. You can get it here.
Update finished sooner than I thought it would, so I fixed the offsets before heading out for work.
Last edited by TehCheat; 09-20-2016 at 09:00 AM.
-
Post Thanks / Like - 2 Thanks
-
Active Member
Originally Posted by
TehCheat
K, GarenaTW should be updated. You can get it
here.
Update finished sooner than I thought it would, so I fixed the offsets before heading out for work.
Hi TehCheat,
Thanks for your help, you are so nice.
Have a good day!
-
Member
Can anyone tell me if you still run much risk to take ban? I'm really into using the HUD in my main account, but I'm too afraid. My friend is using for weeks and no ban so far. Thx guys!!!
-
Member
TehCheat is there anyway to unbind the F10 key? it keeps turning off my preload alerts and I need to use the key for the TCP disconnect script.
-
★ Elder ★
Originally Posted by
FFourax
Can anyone tell me if you still run much risk to take ban? I'm really into using the HUD in my main account, but I'm too afraid. My friend is using for weeks and no ban so far. Thx guys!!!
There's always a risk. As long as you place it in a folder that doesn't have PoEHUD in the name/path, as long as PoEHUD.exe is renaming itself and the window name, as long as you aren't spamming instances like crazy, you're probably pretty safe. There are other things you can do to protect yourself, as well. GGG just doesn't seem to terribly proactive in banning people for using HUD. They're far more concerned about bots and map hacks that give unfair advantages to racers.
-
Post Thanks / Like - 1 Thanks
toadskin (1 members gave Thanks to TehCheat for this useful post)
-
Active Member
Is it possible to make it work without aero?
-
★ Elder ★
Originally Posted by
Stompaphana
TehCheat is there anyway to unbind the F10 key? it keeps turning off my preload alerts and I need to use the key for the TCP disconnect script.
Either change the script to use a different key or modify HUD. To remove it from HUD, you'd need to make the following changes:
From XpRatePlugin.cs, ItemAlertPlugin.cs, and PreloadAlertPlugin.cs delete the following:
Code:
if (!holdKey && WinApi.IsKeyDown(Keys.F10))
{
holdKey = true;
Settings.Enable.Value = !Settings.Enable.Value;
SettingsHub.Save(settingsHub);
}
else if (holdKey && !WinApi.IsKeyDown(Keys.F10))
{
holdKey = false;
}
from KillCounterPlugin.cs, HealthbarPlugin.cs, and DpsMeterPlugin.cs delete:
Code:
|| WinApi.IsKeyDown(Keys.F10)
Then compile it and try it out.
I can do a one off for you, but as soon as HUD updates, it'll be broken and I'm not going to keep fixing it for just one user.
I would imagine it would be far easier to make the changes in the script you're using.
-
Post Thanks / Like - 1 Thanks
toadskin (1 members gave Thanks to TehCheat for this useful post)
-
★ Elder ★
Originally Posted by
miracle1
Is it possible to make it work without aero?
No. Aero provides transparency functionality which is what HUD uses in the overlay window so you can see PoE through HUD's window.
-
Post Thanks / Like - 2 Thanks
-
Active Member
Originally Posted by
TehCheat
No. Aero provides transparency functionality which is what HUD uses in the overlay window so you can see PoE through HUD's window.
Ok thanks for the reply.