ExileAPI 3.13 Release menu

Shout-Out

User Tag List

Page 36 of 41 FirstFirst ... 323334353637383940 ... LastLast
Results 526 to 540 of 607
  1. #526
    nguyentuoc91's Avatar Member
    Reputation
    1
    Join Date
    Apr 2020
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by newbazin View Post
    I saw that a new update came out, but the same problems continue. is it just me?
    im toooooooooo

    ExileAPI 3.13 Release
  2. #527
    loafer's Avatar Member
    Reputation
    3
    Join Date
    Sep 2012
    Posts
    37
    Thanks G/R
    39/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Lemmiwinks View Post
    Wait.. Harvest is supposed to show for PreloadAlert? Is there a newer version I should've updated to? Mine has never shown Harvest.
    You needed to manually update the PreloadAlerts.txt file that is found in \Plugins\Compiled\PreloadAlert\config.

    Edit the txt file and add in the below text.

    Code:
    # HARVEST
    Metadata/Terrain/Leagues/Harvest/Objects/HarvestFeatureChest; Harvest; ff36B400
    Metadata/Terrain/Leagues/Harvest/harvest_encounter.arm; Harvest; ff36B400

  3. #528
    philpsk's Avatar Member
    Reputation
    1
    Join Date
    Apr 2021
    Posts
    6
    Thanks G/R
    1/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Me too..

    Originally Posted by newbazin View Post
    I saw that a new update came out, but the same problems continue. is it just me?
    i did new update
    But my preload_alert also doesn't work.

  4. #529
    Aoooooooo's Avatar Active Member
    Reputation
    27
    Join Date
    Aug 2020
    Posts
    52
    Thanks G/R
    27/15
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Sdelp View Post
    Since I don't have a previous dump from the game. That should be the FileRoot offset? Also size has changed to 0x28 ?

    Yeah, Size changed to 0x28.
    Last edited by Aoooooooo; 04-08-2021 at 12:34 AM.

  5. #530
    arturino009's Avatar Contributor
    Reputation
    92
    Join Date
    Sep 2019
    Posts
    170
    Thanks G/R
    21/85
    Trade Feedback
    0 (0%)
    Mentioned
    4 Post(s)
    Tagged
    0 Thread(s)
    Is there a way to get the full item description through the API? I mean the thing you get when you press CTRL + C on item. I know I can get all the item properties seperately, but how about all together?

  6. #531
    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 arturino009 View Post
    Is there a way to get the full item description through the API? I mean the thing you get when you press CTRL + C on item. I know I can get all the item properties seperately, but how about all together?
    add to: public class Element : RemoteMemoryObject and use on root element: GetAllStrings()

    Code:
    public void GetAllStrings(List<string> res) {
                if(Text?.Length > 0) {
                    res.Add(Text);
                }
                foreach(var ch in Children)
                    ch.GetAllStrings(res);
            }
            public void GetAllTextElements(List<Element> res) {
                if(Text?.Length > 0) {
                    res.Add(this);
                }
                foreach(var ch in Children)
                    ch.GetAllTextElements(res);
            }
            public void GetElementByString(string str, ref Element res) {
                if(Text == str) {
                    res = this;
                    return;
                }
                foreach(var ch in Children)
                    ch.GetElementByString(str, ref res);
            }

  7. #532
    bobfromuk's Avatar Member
    Reputation
    5
    Join Date
    Jun 2012
    Posts
    75
    Thanks G/R
    7/4
    Trade Feedback
    2 (100%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by loafer View Post
    You needed to manually update the PreloadAlerts.txt file that is found in \Plugins\Compiled\PreloadAlert\config.

    Edit the txt file and add in the below text.

    Code:
    # HARVEST
    Metadata/Terrain/Leagues/Harvest/Objects/HarvestFeatureChest; Harvest; ff36B400
    Metadata/Terrain/Leagues/Harvest/harvest_encounter.arm; Harvest; ff36B400
    this is already in the preload alert
    the issue is the preload alert does not work at all.

  8. #533
    philpsk's Avatar Member
    Reputation
    1
    Join Date
    Apr 2021
    Posts
    6
    Thanks G/R
    1/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I would like to make a some donation for this post.how can i donation?
    Also, if there is a Discord room where I can discuss, I would like to enter.

  9. #534
    iiisyniii's Avatar Member
    Reputation
    4
    Join Date
    Apr 2021
    Posts
    60
    Thanks G/R
    16/3
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by philpsk View Post
    I would like to make a some donation for this post.how can i donation?
    Also, if there is a Discord room where I can discuss, I would like to enter.
    I'll second that.

  10. #535
    truvictor's Avatar Member
    Reputation
    1
    Join Date
    Aug 2017
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    AdvancedTooltip does not work on the latest release. This is a very convenient and important plugin for me. Can fix this somehow?
    GitHub - TehCheat/AdvancedTooltip

  11. #536
    albertowolf2000's Avatar Member
    Reputation
    2
    Join Date
    May 2014
    Posts
    6
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    i´ll send a private message to @Queuete to donate him ...no problem for me . Is a very hard work. I appreciate his effort to let us enjoy the game.
    I donate without problem.

  12. #537
    NoobToken's Avatar Member CoreCoins Purchaser
    Reputation
    8
    Join Date
    Nov 2010
    Posts
    51
    Thanks G/R
    11/9
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Great work! can't wait for expansion
    Last edited by NoobToken; 04-08-2021 at 06:07 PM.

  13. #538
    qweley1's Avatar Member
    Reputation
    1
    Join Date
    Jun 2019
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    After yesterday's patch, the CPU is running wild.

  14. #539
    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 qweley1 View Post
    After yesterday's patch, the CPU is running wild.
    CPU/Graphic Card is like: Bitch given me a break.

  15. Thanks Silent_Warrior (1 members gave Thanks to GameHelper for this useful post)
  16. #540
    gaetano93's Avatar Member
    Reputation
    4
    Join Date
    May 2014
    Posts
    9
    Thanks G/R
    2/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    damn, pre load is making my computer crazy lol

Page 36 of 41 FirstFirst ... 323334353637383940 ... LastLast

Similar Threads

  1. [Release] ExileAPI 3.12 Release
    By Queuete in forum PoE Bots and Programs
    Replies: 492
    Last Post: 01-16-2021, 07:30 AM
  2. ExileAPI Fork 3.11 Release
    By Queuete in forum PoE Bots and Programs
    Replies: 256
    Last Post: 09-20-2020, 02:49 PM
  3. ExileAPI Fork (with Release)
    By Queuete in forum PoE Bots and Programs
    Replies: 231
    Last Post: 06-22-2020, 05:19 PM
  4. TPPK for patch 1.13 is released?
    By Julmys in forum Diablo 2
    Replies: 0
    Last Post: 06-03-2011, 06:32 AM
  5. anti-warden Release #1
    By zhPaul in forum World of Warcraft Bots and Programs
    Replies: 40
    Last Post: 10-21-2006, 01:40 AM
All times are GMT -5. The time now is 09:59 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