The ExileAPI and GameHelper dev's have both ended support for the programs (Hope for an alternate?) menu

User Tag List

Page 9 of 12 FirstFirst ... 56789101112 LastLast
Results 121 to 135 of 180
  1. #121
    VioletVibes's Avatar Active Member
    Reputation
    60
    Join Date
    Oct 2021
    Posts
    85
    Thanks G/R
    3/56
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Gonzaga_ View Post
    still can't find, can you link me?

    It's like four posts back, smh.

    Release GameHelper-standard-v0.4.0 . Violet-Vibes/GameOverlay . GitHub

    The ExileAPI and GameHelper dev's have both ended support for the programs (Hope for an alternate?)
  2. #122
    Conservative's Avatar Member Curb Creature CoreCoins Purchaser
    Reputation
    1
    Join Date
    Aug 2018
    Posts
    9
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

  3. #123
    TGillou's Avatar Member
    Reputation
    6
    Join Date
    Feb 2018
    Posts
    23
    Thanks G/R
    0/5
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    any compiled 3.19.2 version somewhere ?

    thx
    Last edited by TGillou; 11-27-2022 at 05:41 AM.

  4. #124
    kisapll's Avatar Member
    Reputation
    4
    Join Date
    Sep 2019
    Posts
    70
    Thanks G/R
    22/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    so next league without gamehelper? Any alternative/chances for updates? This game is unplayable now without map hack and monster icons :-(

  5. #125
    darkxell133's Avatar Active Member
    Reputation
    21
    Join Date
    Mar 2017
    Posts
    47
    Thanks G/R
    3/14
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    I don't use GameHelper but actually i dont have any problems with Icons or the Terrain plugin for ExileAPI.
    Ok Terrain is a really Simple MapHack and it only shows the Map Layout without the hight difference or any locaitons.
    So i think if the next league dont break any offset there would be someone who fix the Offset changes and share the fixed version here

  6. #126
    Fireball's Avatar Member
    Reputation
    1
    Join Date
    Mar 2008
    Posts
    37
    Thanks G/R
    3/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by kisapll View Post
    so next league without gamehelper? Any alternative/chances for updates? This game is unplayable now without map hack and monster icons :-(
    Same, only need monster icons.

  7. #127
    Sychotix's Avatar Moderator Authenticator enabled
    Reputation
    1421
    Join Date
    Apr 2006
    Posts
    3,943
    Thanks G/R
    285/572
    Trade Feedback
    1 (100%)
    Mentioned
    7 Post(s)
    Tagged
    0 Thread(s)
    The source of both is public, so anyone can take up the mantle We had a few step up last league to do updates. Pattern scanning is a great way to get things started for pre-league updating. Once the league is out, making heavy use of the dev tool should walk everyone step by step assuming no major structure changes.

  8. #128
    VociferateOne's Avatar Member
    Reputation
    6
    Join Date
    Dec 2017
    Posts
    37
    Thanks G/R
    3/5
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Sychotix View Post
    The source of both is public, so anyone can take up the mantle We had a few step up last league to do updates. Pattern scanning is a great way to get things started for pre-league updating. Once the league is out, making heavy use of the dev tool should walk everyone step by step assuming no major structure changes.
    Where would one learn how to use the open source code to do this?

    I'm genuinely interested, but no idea where to start.

    Would you be able to point me in the right direction?

  9. #129
    Sychotix's Avatar Moderator Authenticator enabled
    Reputation
    1421
    Join Date
    Apr 2006
    Posts
    3,943
    Thanks G/R
    285/572
    Trade Feedback
    1 (100%)
    Mentioned
    7 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by VociferateOne View Post
    Where would one learn how to use the open source code to do this?

    I'm genuinely interested, but no idea where to start.

    Would you be able to point me in the right direction?
    First, learn basic reverse engineering. Try following CE's tutorial, watching videos etc. Then learn a bit more about data structures and how they are laid out in memory. Really familiarize yourself with Cheat Engine. Next, open up the source code of one of them and check out all the places doing ReadProcessMemory. The game is mostly reversed for you, you just need to update things.

    You can use a bunch of different methods to update. If the base pointers are broken... I like to pull up the old binary in Ghidra (one where you know the base pointer), create a pattern, then search for a similar function in the latest binary. There you go, new pointer. ExileAPI found this with its own pattern, so you'd need to update that and the matching code to point to the new location.

    For data structure offsets... usually you'll be lucky enough that it just moved. Like if your player has health and mana... that may be at 0x4 and 0x8. Lets say they add a third... stamina and your mana offset is broken. You open up the structure in cheat engine... notice mana now lives at 0xC. Why did this happen? Well, energy now lives at 0x8.

    If you're unlucky... they'll completely switch up the underlying data type to a complex one. Like changing a list to a dictionary. You'll just have to be able to recognize and play around to find those types of things... I'm bad at that part.

  10. Thanks levelmax (1 members gave Thanks to Sychotix for this useful post)
  11. #130
    VociferateOne's Avatar Member
    Reputation
    6
    Join Date
    Dec 2017
    Posts
    37
    Thanks G/R
    3/5
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Great I have used CE a few times in the past - many years ago now. Do you have any videos/guides handy that I can use to start with the offsets?

    I would like to start there with just being able to update the offsets here with the radar before jumping into the rest.

  12. #131
    kisapll's Avatar Member
    Reputation
    4
    Join Date
    Sep 2019
    Posts
    70
    Thanks G/R
    22/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Sychotix View Post
    First, learn basic reverse engineering. Try following CE's tutorial, watching videos etc. Then learn a bit more about data structures and how they are laid out in memory. Really familiarize yourself with Cheat Engine. Next, open up the source code of one of them and check out all the places doing ReadProcessMemory. The game is mostly reversed for you, you just need to update things.

    You can use a bunch of different methods to update. If the base pointers are broken... I like to pull up the old binary in Ghidra (one where you know the base pointer), create a pattern, then search for a similar function in the latest binary. There you go, new pointer. ExileAPI found this with its own pattern, so you'd need to update that and the matching code to point to the new location.

    For data structure offsets... usually you'll be lucky enough that it just moved. Like if your player has health and mana... that may be at 0x4 and 0x8. Lets say they add a third... stamina and your mana offset is broken. You open up the structure in cheat engine... notice mana now lives at 0xC. Why did this happen? Well, energy now lives at 0x8.

    If you're unlucky... they'll completely switch up the underlying data type to a complex one. Like changing a list to a dictionary. You'll just have to be able to recognize and play around to find those types of things... I'm bad at that part.
    Damn... Ok lets pray for someone to update 🙏

  13. #132
    darkxell133's Avatar Active Member
    Reputation
    21
    Join Date
    Mar 2017
    Posts
    47
    Thanks G/R
    3/14
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)


    at this moment most stuff is working
    and i will try to update offsets for next league.
    I learned a lot of stuff this league but i'm a noob after all so i will need some time to update all relatet stuff
    Last edited by darkxell133; 12-03-2022 at 08:55 AM.

  14. Thanks Forumuser1000 (1 members gave Thanks to darkxell133 for this useful post)
  15. #133
    qq578539021's Avatar Member
    Reputation
    1
    Join Date
    Aug 2022
    Posts
    12
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    plz, Why does GameHelper automatically exit when I use it?

  16. #134
    camapxam's Avatar Active Member
    Reputation
    23
    Join Date
    Nov 2009
    Posts
    274
    Thanks G/R
    196/20
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by qq578539021 View Post
    plz, Why does GameHelper automatically exit when I use it?
    which GH are you running?

  17. #135

Page 9 of 12 FirstFirst ... 56789101112 LastLast

Similar Threads

  1. [Tool] looking for an alternative to nox and MEmu
    By miyazawa in forum Pokemon GO Hacks|Cheats
    Replies: 1
    Last Post: 07-20-2016, 04:57 AM
  2. [Selling] Vanilla, BC, WOTLK and Cata keys - Only have one set. Looking for ingame gold
    By thecloner0 in forum World of Warcraft Buy Sell Trade
    Replies: 6
    Last Post: 08-16-2012, 10:02 PM
  3. [SHAMAN] Having both Elementars at the same time!
    By mckemo in forum World of Warcraft Exploits
    Replies: 13
    Last Post: 03-14-2009, 03:41 PM
  4. Have both Frost Ward and Fire Ward on you [MAGE]
    By AceofAngels in forum World of Warcraft Exploits
    Replies: 11
    Last Post: 12-19-2007, 01:01 AM
  5. Have Both Alliance and Horde characters on a PvP server
    By Matt in forum World of Warcraft Exploits
    Replies: 15
    Last Post: 07-25-2006, 06:49 AM
All times are GMT -5. The time now is 02:19 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