ExileAPI Release menu

Shout-Out

User Tag List

Page 50 of 72 FirstFirst ... 464748495051525354 ... LastLast
Results 736 to 750 of 1079
  1. #736
    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 raretitlez View Post
    after I obtained mageblood. Oops.
    congratulations

    ExileAPI Release
  2. #737
    POEistrashwithouthud's Avatar Member
    Reputation
    3
    Join Date
    Apr 2021
    Posts
    24
    Thanks G/R
    14/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    PS : Solved itself.

    Everything is broken, I can't get the HUD to work anymore, I tried a clean install but still the same problem.

    Any idea ?

    Last edited by POEistrashwithouthud; 03-13-2022 at 01:41 PM.

  3. #738
    HugKitten's Avatar Active Member
    Reputation
    56
    Join Date
    Sep 2016
    Posts
    52
    Thanks G/R
    8/55
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by POEistrashwithouthud View Post
    PS : Solved itself.

    Everything is broken, I can't get the HUD to work anymore, I tried a clean install but still the same problem.

    Any idea ?

    It'd help if you stretched the console out. Can't see after UpdatePlayerMovingSt. It's cutting off the line number.

  4. #739
    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 HugKitten View Post
    It'd help if you stretched the console out. Can't see after UpdatePlayerMovingSt. It's cutting off the line number.
    in my opinion - No need to ask the user to take a screenshot.
    Let him just copy all the contents of the console into a errors text buffer and put it in the form here like <Code> - this is much more informative

  5. Thanks HugKitten (1 members gave Thanks to GameAssist for this useful post)
  6. #740
    ac9's Avatar Member
    Reputation
    1
    Join Date
    Jul 2021
    Posts
    22
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    maybe someone has already figured out how to make followers use teleporters?)

    I only have it sometimes using the input or output from the map

  7. #741
    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 ac9 View Post
    maybe someone has already figured out how to make followers use teleporters?)

    I only have it sometimes using the input or output from the map
    the full implementation will depend on how you perform the tasks, and the task itself may look something like this
    Code:
     var mps = ui.gui.party_panel?.members; // Main(root) element with your group and its children elements directly with group members
     var ln = data.To_UTF8_String(1); //The name of the leader (in my case, transmitted over the network as a set of bytes), to which you need to teleport and by which the desired bot in the group will be searched 
     var leader = mps.FirstOrDefault(n => n.name == ln); //leader element, found by name u need
      if(leader == null || leader.portal_icon == null) {
            ui.AddToLog("TpToLeader: NOt found leader in my party="+ ln, MessType.Error);
             break; //return (xx) mb
         }
        ui.tasker.Reset(); //stop all previous tasks
        ui.tasker.TaskPop(new ClickOnElem(leader.portal_icon));//click in the center of the icon with the portal inside the element with the leader

  8. #742
    HugKitten's Avatar Active Member
    Reputation
    56
    Join Date
    Sep 2016
    Posts
    52
    Thanks G/R
    8/55
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Sorry if I haven't done many updates lately. I'm pretty burnt out lately.

  9. Thanks OnurTest, lamleial (2 members gave Thanks to HugKitten for this useful post)
  10. #743
    IcemanSR's Avatar Member
    Reputation
    7
    Join Date
    Jan 2008
    Posts
    75
    Thanks G/R
    30/5
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Poe just made new update. Loader loads but nothing is activated

  11. #744
    iruleatants's Avatar Active Member
    Reputation
    16
    Join Date
    Apr 2008
    Posts
    73
    Thanks G/R
    2/2
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I hope that someone who is capable of doing the offset updates is still playing the game.

  12. #745
    IcemanSR's Avatar Member
    Reputation
    7
    Join Date
    Jan 2008
    Posts
    75
    Thanks G/R
    30/5
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    minimap icons for mobs arent working, preload alert as well

  13. #746
    User59's Avatar Member
    Reputation
    3
    Join Date
    Jan 2022
    Posts
    21
    Thanks G/R
    2/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    New update broke this, tool needs update

  14. #747
    Forumuser1000's Avatar Active Member
    Reputation
    27
    Join Date
    Mar 2017
    Posts
    250
    Thanks G/R
    149/21
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    We'll just have to be patient now.

    Fingers crossed it's a quick and easy job to do the update.

  15. #748
    HugKitten's Avatar Active Member
    Reputation
    56
    Join Date
    Sep 2016
    Posts
    52
    Thanks G/R
    8/55
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I updated several offsets that were changed during the update. This should fix some things that broke.
    Repository
    Release
    Download
    Last edited by HugKitten; 03-16-2022 at 06:22 AM.

  16. Thanks User59, CornFlake101, IcemanSR, iruleatants, Harmes12, maimo2706, OnurTest, applepie90, manopla, zerger3, SickBro (11 members gave Thanks to HugKitten for this useful post)
  17. #749
    User59's Avatar Member
    Reputation
    3
    Join Date
    Jan 2022
    Posts
    21
    Thanks G/R
    2/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thank you for this however the plugin Terrain is no longer working

  18. #750
    maimo2706's Avatar Member
    Reputation
    3
    Join Date
    Sep 2021
    Posts
    28
    Thanks G/R
    18/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    thank you HugKitten !

Page 50 of 72 FirstFirst ... 464748495051525354 ... LastLast

Similar Threads

  1. [Release] ExileAPI 3.14 Release
    By Queuete in forum PoE Bots and Programs
    Replies: 532
    Last Post: 07-24-2021, 04:37 AM
  2. [Release] ExileAPI 3.13 Release
    By Queuete in forum PoE Bots and Programs
    Replies: 606
    Last Post: 04-17-2021, 06:22 AM
  3. [Release] ExileAPI 3.12 Release
    By Queuete in forum PoE Bots and Programs
    Replies: 492
    Last Post: 01-16-2021, 07:30 AM
  4. ExileAPI Fork 3.11 Release
    By Queuete in forum PoE Bots and Programs
    Replies: 256
    Last Post: 09-20-2020, 02:49 PM
  5. ExileAPI Fork (with Release)
    By Queuete in forum PoE Bots and Programs
    Replies: 231
    Last Post: 06-22-2020, 05:19 PM
All times are GMT -5. The time now is 11:45 AM. 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