[request] Hellgate london steam release
-
- Noobzor
- Posts: 13
- Joined: Wed Apr 11, 2018 2:31 am
- Reputation: 14
Re: [request] Hellgate london steam release
A script to give 600,000 per minute health regeneration, still not invincible if the damage is more than your max health. Can be easily modified to give massive power regen. Hope someone can take it from here and find where current health is located.
- Attachments
-
- Hellgate_sp_x86_aob.CT
- (3.18 KiB) Downloaded 152 times
Re: [request] Hellgate london steam release
-
- Noobzor
- Posts: 6
- Joined: Sat Sep 09, 2017 10:14 pm
- Reputation: 0
Re: [request] Hellgate london steam release
Sweet! Can I see your table please?
Re: [request] Hellgate london steam release
Trainer makers only for right now. Will release the CT soon.
Re: [request] Hellgate london steam release
Hi. I got the max HP and MP (as well as regen 1,000,000 per minute) to work. Try it.fffffaaaaa wrote: ↑Tue Nov 20, 2018 5:19 pmA script to give 600,000 per minute health regeneration, still not invincible if the damage is more than your max health. Can be easily modified to give massive power regen. Hope someone can take it from here and find where current health is located.
Credits to fffffaaaaa for finding the HP regen.
Offset -03 = max HP (in 2 bytes at 9,999 for safety)
Offset +04 = HP Regen
Offset +0D = Max MP (in 2 bytes at 9,999 for safety)
Offset +14 = MP Regen
Note: You can still die from hits that exceed 9,999. But I think the chance of being one-shot is less than that thanks to higher max HP. Also set it to that number because I was concerned the game would null your progress from going above the game's cap. Not too sure on that.
- Attachments
-
- Hellgate_sp_x86_aob.CT
- (3.06 KiB) Downloaded 109 times
Re: [request] Hellgate london steam release
Quick mp regen only & item no decrease (e.g. analyzer)
Mp regen is from mezspirt
Side note: disable item no decrease when assigning attribute points
Side note: the enemy need to kill to trigger the summoning of elite monster may become negative, (but its only visual).
Mp regen is from mezspirt
Side note: disable item no decrease when assigning attribute points
Side note: the enemy need to kill to trigger the summoning of elite monster may become negative, (but its only visual).
- Attachments
-
- Hellgate_sp_x86.CT
- (5.56 KiB) Downloaded 98 times
-
- Noobzor
- Posts: 13
- Joined: Wed Apr 11, 2018 2:31 am
- Reputation: 14
Re: [request] Hellgate london steam release
Just found the current hp. Made a script that prevents your hp from dropping below 1, only tested using a few classes at the early part of the game, hope someone can test it through the entire game at different difficulties.
Updated - AoB.
Updated - AoB.
- Attachments
-
- Hellgate_sp_x86_v2_aob.CT
- (443.76 KiB) Downloaded 160 times
Re: [request] Hellgate london steam release
I play as engineer at Level 45 I currently at Parliament Square. I have noticed one issue with this but i have a solution. Here is what happens There are certain bosses that phase and you cant hurt them until you kill there minions there are 2 blue ones most times, So my solution just create a hotkey to turn on/off cheat wait tell i get them to 1% were they wont die turn off while shooting and turn on quickly seems to work.fffffaaaaa wrote: ↑Sat Nov 24, 2018 8:12 amJust found the current hp. Made a script that prevents your hp from dropping below 1, only tested using a few classes at the early part of the game, hope someone can test it through the entire game at different difficulties.
Updated - AoB.
-
- Noobzor
- Posts: 13
- Joined: Wed Apr 11, 2018 2:31 am
- Reputation: 14
Re: [request] Hellgate london steam release
Thanks for testing, I guess it was because the minions are providing hp regen to the bosses. The script checks whether there's HP regen in the property list and if yes then treat the target as a player. I'll modify to check only for power regeneration and upload a new script. You can actually do it by putting // at the beginning of the code cmp ebx, 3000000 and the conditional jmp next to it.
Re: [request] Hellgate london steam release
if you dig a lil deeper, you migh find the player, enemy enumfffffaaaaa wrote: ↑Mon Nov 26, 2018 6:51 pmThanks for testing, I guess it was because the minions are providing hp regen to the bosses. The script checks whether there's HP regen in the property list and if yes then treat the target as a player. I'll modify to check only for power regeneration and upload a new script. You can actually do it by putting // at the beginning of the code cmp ebx, 3000000 and the conditional jmp next to it.
-
- Noobzor
- Posts: 13
- Joined: Wed Apr 11, 2018 2:31 am
- Reputation: 14
Re: [request] Hellgate london steam release
Is it 00 00 80 15 01 00 00 00 for player?BooBoo wrote: ↑Mon Nov 26, 2018 6:57 pmif you dig a lil deeper, you migh find the player, enemy enumfffffaaaaa wrote: ↑Mon Nov 26, 2018 6:51 pmThanks for testing, I guess it was because the minions are providing hp regen to the bosses. The script checks whether there's HP regen in the property list and if yes then treat the target as a player. I'll modify to check only for power regeneration and upload a new script. You can actually do it by putting // at the beginning of the code cmp ebx, 3000000 and the conditional jmp next to it.
Re: [request] Hellgate london steam release
no, the playerType is 1, 2 is for mosnters and so on.fffffaaaaa wrote: ↑Mon Nov 26, 2018 9:46 pmIs it 00 00 80 15 01 00 00 00 for player?BooBoo wrote: ↑Mon Nov 26, 2018 6:57 pmif you dig a lil deeper, you migh find the player, enemy enumfffffaaaaa wrote: ↑Mon Nov 26, 2018 6:51 pmThanks for testing, I guess it was because the minions are providing hp regen to the bosses. The script checks whether there's HP regen in the property list and if yes then treat the target as a player. I'll modify to check only for power regeneration and upload a new script. You can actually do it by putting // at the beginning of the code cmp ebx, 3000000 and the conditional jmp next to it.
The enum is inside the entity class/struct. check all the registers and the stack, maybe the function that you are hooking makes use of a pointer to an entity obj. Good Luck.
-
- Noobzor
- Posts: 13
- Joined: Wed Apr 11, 2018 2:31 am
- Reputation: 14
Re: [request] Hellgate london steam release
esi?BooBoo wrote: ↑Mon Nov 26, 2018 11:15 pmno, the playerType is 1, 2 is for mosnters and so on.
The enum is inside the entity class/struct. check all the registers and the stack, maybe the function that you are hooking makes use of a pointer to an entity obj. Good Luck.
Re: [request] Hellgate london steam release
I wish I could help you more but, there is a lot of rippers lurking around these forums, they grab the cheat tables that you post here to make their own trainers when games are a lil to hard for them and they don't even say thanks or anything. Like this guy who calls himself MAF, he posted a trainer on his site with only 3 options right after you guys posted these cheat tables based on REGENS for health and power and some other stuff. Also, his users are complaining about the same problem you guys are having. a Coincidence ? you tell me.fffffaaaaa wrote: ↑Tue Nov 27, 2018 3:09 amesi?
Anyways, I could not tell you even if I wanted to since I have not even looked at your scripts.
Take Care
DDS
Re: [request] Hellgate london steam release
Anyone can fix the item don't decrease script?
Who is online
Users browsing this forum: Google [Bot]