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

Shout-Out

User Tag List

Page 321 of 325 FirstFirst ... 221271317318319320321322323324325 LastLast
Results 4,801 to 4,815 of 4863
  1. #4801
    abraxus1234@naver.com's Avatar Member
    Reputation
    1
    Join Date
    Jun 2016
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    thank you !!!

    GameHelper: A light version of PoeHUD/Exile-Api
  2. #4802
    Chpok3's Avatar Member
    Reputation
    1
    Join Date
    Feb 2024
    Posts
    3
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Good afternoon, I didn’t find anything in the header, my English is very bad.
    Are there any additional plugins besides Hilbar and Radar for this application? If there is some kind of list, where can I look at it?

  3. #4803
    kyhj8708's Avatar Member
    Reputation
    2
    Join Date
    Dec 2023
    Posts
    12
    Thanks G/R
    2/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I can't attach the file because the error log file isn't generated, I ran it in window mode, I'm using a Radeon graphics card, and I've used about 3 seasons before without any problems. I don't know why it's not working, I've read both FAQs and recent comments, but I can't figure out what the problem is. The program screen is not visible on the monitor at all, but when you open Task Manager, it appears to have been executed with very little resource

  4. #4804
    Akao's Avatar Member
    Reputation
    2
    Join Date
    Apr 2015
    Posts
    8
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hello, is there a condition to check for corpses for the purpose for Bone offering?
    I'd like to add it to my current condition:
    PlayerSkillIsUseable.Contains("BoneOffering") && !PlayerBuffs.Has("bone_offering") && (check for corpses if possible)

  5. #4805
    Baki667's Avatar Member
    Reputation
    2
    Join Date
    Nov 2014
    Posts
    45
    Thanks G/R
    8/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Akao View Post
    Hello, is there a condition to check for corpses for the purpose for Bone offering?
    I'd like to add it to my current condition:
    PlayerSkillIsUseable.Contains("BoneOffering") && !PlayerBuffs.Has("bone_offering") && (check for corpses if possible)
    I would be interested in that as well for detonate dead.

  6. #4806
    Akao's Avatar Member
    Reputation
    2
    Join Date
    Apr 2015
    Posts
    8
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    If there's no solution then I'm using this. For DD you don't check for HasBuffs.

    PlayerSkillIsUseable.Contains("BoneOffering") && !PlayerBuffs.Has("active_offering") &&
    MonsterCount(MonsterRarity.Any, MonsterNearbyZones.OuterCircle) >= 1

  7. #4807
    TheBeaker's Avatar Member
    Reputation
    1
    Join Date
    May 2016
    Posts
    7
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Can not get quicksilver to work at all.
    Tried a few methods I found in this thread but unfortunately the search function wont allow me to open each mention of quicksilver....
    Name is QuickSilver
    Key 3 number 51?
    Cooldown set to 6 seconds and 5.9 and 0 seconds
    Condition animation Run "shows true when running"
    Condition flask charged > 29 " shows true"

    I have tried other conditions like flash is usable has enough charges I have tried changing key to numpad 3 nothing seems to work.


    Anyone offer any help?

  8. #4808
    Akao's Avatar Member
    Reputation
    2
    Join Date
    Apr 2015
    Posts
    8
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Mine works like this.

    Flasks.Flask5.IsUsable && !Flasks.Flask5.Active &&
    PlayerAnimation.Equals(Animation.Run) && MonsterCount(MonsterRarity.Any, MonsterNearbyZones.OuterCircle) <= 0

    Btw, is there a list of API functions I can look at just to see what's possible or does the templates already cover them all? Thanks!

  9. #4809
    Baki667's Avatar Member
    Reputation
    2
    Join Date
    Nov 2014
    Posts
    45
    Thanks G/R
    8/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Akao View Post
    If there's no solution then I'm using this. For DD you don't check for HasBuffs.

    PlayerSkillIsUseable.Contains("BoneOffering") && !PlayerBuffs.Has("active_offering") &&
    MonsterCount(MonsterRarity.Any, MonsterNearbyZones.OuterCircle) >= 1
    that checks for monsters, not for corpses, right?

  10. #4810
    datz's Avatar Active Member
    Reputation
    22
    Join Date
    Aug 2013
    Posts
    532
    Thanks G/R
    166/19
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Goat i love you <3

  11. #4811
    wkdgkrk12's Avatar Member
    Reputation
    1
    Join Date
    Apr 2023
    Posts
    1
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    thank you very much for sharing this awesome program.
    while waiting your RL work, i used other tools. but those were not fit for me.
    Only GH can give me satisfaction.
    The day you stop updating this program will be the day I quit this game.
    thx a lot

  12. #4812
    GameHelper's Avatar ★ Elder ★ CoreCoins Purchaser
    Reputation
    2458
    Join Date
    Jun 2015
    Posts
    3,053
    Thanks G/R
    455/2203
    Trade Feedback
    0 (0%)
    Mentioned
    65 Post(s)
    Tagged
    1 Thread(s)
    Originally Posted by Akao View Post
    Mine works like this.

    Flasks.Flask5.IsUsable && !Flasks.Flask5.Active &&
    PlayerAnimation.Equals(Animation.Run) && MonsterCount(MonsterRarity.Any, MonsterNearbyZones.OuterCircle) <= 0

    Btw, is there a list of API functions I can look at just to see what's possible or does the templates already cover them all? Thanks!
    Yeah. Once u expand the rule, you see template button. Click on it. It has 99.99% of the things


    Originally Posted by TheBeaker View Post
    Can not get quicksilver to work at all.
    Tried a few methods I found in this thread but unfortunately the search function wont allow me to open each mention of quicksilver....
    Name is QuickSilver
    Key 3 number 51?
    Cooldown set to 6 seconds and 5.9 and 0 seconds
    Condition animation Run "shows true when running"
    Condition flask charged > 29 " shows true"

    I have tried other conditions like flash is usable has enough charges I have tried changing key to numpad 3 nothing seems to work.


    Anyone offer any help?

    Screenshot of the rule please.

    Originally Posted by kyhj8708 View Post
    I can't attach the file because the error log file isn't generated, I ran it in window mode, I'm using a Radeon graphics card, and I've used about 3 seasons before without any problems. I don't know why it's not working, I've read both FAQs and recent comments, but I can't figure out what the problem is. The program screen is not visible on the monitor at all, but when you open Task Manager, it appears to have been executed with very little resource
    1: Download in a new folder. 2: Apply limited user again. 3: Restart computer.


    Originally Posted by Chpok3 View Post
    Good afternoon, I didn’t find anything in the header, my English is very bad.
    Are there any additional plugins besides Hilbar and Radar for this application? If there is some kind of list, where can I look at it?
    Healthbar, radar, flask/skill manager, preload alert, draw abyss lines.


    That’s all.
    If I did not reply to you, it mean the question you are asking is stupid.

  13. #4813
    gadasoft's Avatar Member
    Reputation
    5
    Join Date
    Apr 2012
    Posts
    17
    Thanks G/R
    5/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    How do you automate flasks, i can't find anything in the default package, is there an additional plugin one must download ? Could anyone give me a hint on this, appreciate it.

  14. #4814
    GameHelper's Avatar ★ Elder ★ CoreCoins Purchaser
    Reputation
    2458
    Join Date
    Jun 2015
    Posts
    3,053
    Thanks G/R
    455/2203
    Trade Feedback
    0 (0%)
    Mentioned
    65 Post(s)
    Tagged
    1 Thread(s)
    Originally Posted by gadasoft View Post
    How do you automate flasks, i can't find anything in the default package, is there an additional plugin one must download ? Could anyone give me a hint on this, appreciate it.
    Please read the first post.
    If I did not reply to you, it mean the question you are asking is stupid.

  15. #4815
    parkchan's Avatar Member
    Reputation
    1
    Join Date
    Apr 2024
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I'm curious what the timer is for and how to remove it.

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 12:41 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