HELLDIVERS 2

Upload your cheat tables here (No requests)
Luckisugar
Noobzor
Noobzor
Posts: 6
Joined: Mon Apr 22, 2024 8:16 pm
Reputation: 0

Re: HELLDIVERS 2

Post by Luckisugar »

kimikthegreat wrote:
Sat Jun 15, 2024 11:52 pm
How do I edit the damage script to just be a slight damage modifier?
When i went to use damage scripts, I started out with ZoDDeL's table, because i thought his super damage mod was easily modifiable to my needs, i also didn't like the one hit kill absolutely everything, thats zero fun, i wanted some extra damage and that was it, not 100% penetration or demolition or pushback etc...

thats when i went to try gir489's armory weapon editor and bro it's alot easier, you can edit the individual weapon individual stats manually (sucks you gotta do it every fresh game start) and now i usually run the Sickle on 333 damage (original 50 dmg) with no overheat mod with medium armor pen, and a Verdict pistol on 6942069 damage and 69420 penetration (one hit kill everything) in case i get in to some f'ed situation in game, now i can play smoothly and just have fun, feels good, recommend 👍🏻.


also, what's up with this arguing, i love it keep going.

How to use this cheat table?
  1. Install Cheat Engine
  2. Double-click the .CT file in order to open it.
  3. Click the PC icon in Cheat Engine in order to select the game process.
  4. Keep the list.
  5. Activate the trainer options by checking boxes or setting values from 0 to 1

samipuma
Noobzor
Noobzor
Posts: 5
Joined: Thu Feb 16, 2023 12:26 am
Reputation: 0

Re: HELLDIVERS 2

Post by samipuma »

I couldn't find anything about this from the latest tables, but is there any "No Reload" or some type of Ammo cheat for chambered reload guns (Senator, Bushwacker, etc)

BlazedBeard95
Noobzor
Noobzor
Posts: 13
Joined: Mon May 06, 2024 10:00 pm
Reputation: 4

Re: HELLDIVERS 2

Post by BlazedBeard95 »

BlazedBeard95 wrote:
Sun Jun 16, 2024 3:33 am
Is there any possible way to edit weapon stuff like explosion radius? I want to revert the explosion radius nerf they did to the Crossbow but I'm not positive this is something that can be done via cheats. Anybody know if it's possible?
So now that the kid drama is over, can anyone help me with this? It's alright if we can't edit things like this but I miss old Crossbow lol

User avatar
gir489
RCE Fanatics
RCE Fanatics
Posts: 801
Joined: Mon May 08, 2017 4:08 am
Reputation: 616

Re: HELLDIVERS 2

Post by gir489 »

BlazedBeard95 wrote:
Sun Jun 16, 2024 11:04 pm
BlazedBeard95 wrote:
Sun Jun 16, 2024 3:33 am
Is there any possible way to edit weapon stuff like explosion radius? I want to revert the explosion radius nerf they did to the Crossbow but I'm not positive this is something that can be done via cheats. Anybody know if it's possible?
So now that the kid drama is over, can anyone help me with this? It's alright if we can't edit things like this but I miss old Crossbow lol
So, the way we determine data for the damage comes from a file called generated_damage_settings.dl_bin. What Zoddel is doing with the damage script that I repurposed, is he's hooking the do_damage subroutine function, but the problem is, they don't mark which ID belongs to what. Cfemen was able to figure out part of it, by hooking into the armory interface, and changing part of the generated_damage_settings by which weapon was selected. But ultimately, they are just some fucking indices in an array, probably done for efficiency reasons. Which causes us to have to manually log every single weapon by hand and cross correlate it to what's calling do_damage with the index we've stored.

I'd imagine likewise what you're looking for is stored within generated_explosion_settings.dl_bin, and to figure out how to attack it, just look at what reads in generated_explosion_settings.dl_bin and then find the array it's storing it to, do the same thing I'm doing for damage_settings but you'll have to reverse the struct for explosion, and then find what reads the array when you fire the crossbow.

BlazedBeard95
Noobzor
Noobzor
Posts: 13
Joined: Mon May 06, 2024 10:00 pm
Reputation: 4

Re: HELLDIVERS 2

Post by BlazedBeard95 »

gir489 wrote:
Sun Jun 16, 2024 11:50 pm
BlazedBeard95 wrote:
Sun Jun 16, 2024 11:04 pm
BlazedBeard95 wrote:
Sun Jun 16, 2024 3:33 am
Is there any possible way to edit weapon stuff like explosion radius? I want to revert the explosion radius nerf they did to the Crossbow but I'm not positive this is something that can be done via cheats. Anybody know if it's possible?
So now that the kid drama is over, can anyone help me with this? It's alright if we can't edit things like this but I miss old Crossbow lol
So, the way we determine data for the damage comes from a file called generated_damage_settings.dl_bin. What Zoddel is doing with the damage script that I repurposed, is he's hooking the do_damage subroutine function, but the problem is, they don't mark which ID belongs to what. Cfemen was able to figure out part of it, by hooking into the armory interface, and changing part of the generated_damage_settings by which weapon was selected. But ultimately, they are just some fucking indices in an array, probably done for efficiency reasons. Which causes us to have to manually log every single weapon by hand and cross correlate it to what's calling do_damage with the index we've stored.

I'd imagine likewise what you're looking for is stored within generated_explosion_settings.dl_bin, and to figure out how to attack it, just look at what reads in generated_explosion_settings.dl_bin and then find the array it's storing it to, do the same thing I'm doing for damage_settings but you'll have to reverse the struct for explosion, and then find what reads the array when you fire the crossbow.
Thanks Gir, appreciate all the work you do! I'll check it out when I can and let you know if I manage to figure it out

Destinate
Table Makers
Table Makers
Posts: 32
Joined: Sat Aug 20, 2022 8:45 am
Reputation: 73

Re: HELLDIVERS 2

Post by Destinate »

BlazedBeard95 wrote:
Mon Jun 17, 2024 12:07 am
gir489 wrote:
Sun Jun 16, 2024 11:50 pm
BlazedBeard95 wrote:
Sun Jun 16, 2024 11:04 pm


So now that the kid drama is over, can anyone help me with this? It's alright if we can't edit things like this but I miss old Crossbow lol
So, the way we determine data for the damage comes from a file called generated_damage_settings.dl_bin. What Zoddel is doing with the damage script that I repurposed, is he's hooking the do_damage subroutine function, but the problem is, they don't mark which ID belongs to what. Cfemen was able to figure out part of it, by hooking into the armory interface, and changing part of the generated_damage_settings by which weapon was selected. But ultimately, they are just some fucking indices in an array, probably done for efficiency reasons. Which causes us to have to manually log every single weapon by hand and cross correlate it to what's calling do_damage with the index we've stored.

I'd imagine likewise what you're looking for is stored within generated_explosion_settings.dl_bin, and to figure out how to attack it, just look at what reads in generated_explosion_settings.dl_bin and then find the array it's storing it to, do the same thing I'm doing for damage_settings but you'll have to reverse the struct for explosion, and then find what reads the array when you fire the crossbow.
Thanks Gir, appreciate all the work you do! I'll check it out when I can and let you know if I manage to figure it out
Just like gir said, the explosion radius is in generated_explosion_settings.dl_bin. You can take a look at my github. Idk if I'm allowed to post the GitHub link here but you can basically find my HD2 github on google. It already has the explosion structure. Even though it's old but the structure should be the same. This game is just SQL style. They all linked together. You will notice the explosion data using the damage data ID.

User avatar
gir489
RCE Fanatics
RCE Fanatics
Posts: 801
Joined: Mon May 08, 2017 4:08 am
Reputation: 616

Re: HELLDIVERS 2

Post by gir489 »

Destinate wrote:
Mon Jun 17, 2024 12:12 am
Just like gir said, the explosion radius is in generated_explosion_settings.dl_bin. You can take a look at my github. Idk if I'm allowed to post the GitHub link here but you can basically find my HD2 github on google. It already has the explosion structure. Even though it's old but the structure should be the same. This game is just SQL style. They all linked together. You will notice the explosion data using the damage data ID.
If you've already reversed the explosion struct, then half the work is done for you already, Blazed. You just need to figure out where this array is being read from when you fire off an explosion, and then use the struct to manipulate the size of the explosion.

BlazedBeard95
Noobzor
Noobzor
Posts: 13
Joined: Mon May 06, 2024 10:00 pm
Reputation: 4

Re: HELLDIVERS 2

Post by BlazedBeard95 »

gir489 wrote:
Mon Jun 17, 2024 12:29 am
Destinate wrote:
Mon Jun 17, 2024 12:12 am
Just like gir said, the explosion radius is in generated_explosion_settings.dl_bin. You can take a look at my github. Idk if I'm allowed to post the GitHub link here but you can basically find my HD2 github on google. It already has the explosion structure. Even though it's old but the structure should be the same. This game is just SQL style. They all linked together. You will notice the explosion data using the damage data ID.
If you've already reversed the explosion struct, then half the work is done for you already, Blazed. You just need to figure out where this array is being read from when you fire off an explosion, and then use the struct to manipulate the size of the explosion.
To be honest with the both of you, I have less than no experience with coding and the like so most of what I've used has been generously taken from the wonderful table creators on this site. That is to say I don't know what things like array and struct even mean or how to do what either of you've said but I'm keen on trying if it isn't hard.

User avatar
gir489
RCE Fanatics
RCE Fanatics
Posts: 801
Joined: Mon May 08, 2017 4:08 am
Reputation: 616

Re: HELLDIVERS 2

Post by gir489 »

BlazedBeard95 wrote:
Mon Jun 17, 2024 12:36 am
gir489 wrote:
Mon Jun 17, 2024 12:29 am
Destinate wrote:
Mon Jun 17, 2024 12:12 am
Just like gir said, the explosion radius is in generated_explosion_settings.dl_bin. You can take a look at my github. Idk if I'm allowed to post the GitHub link here but you can basically find my HD2 github on google. It already has the explosion structure. Even though it's old but the structure should be the same. This game is just SQL style. They all linked together. You will notice the explosion data using the damage data ID.
If you've already reversed the explosion struct, then half the work is done for you already, Blazed. You just need to figure out where this array is being read from when you fire off an explosion, and then use the struct to manipulate the size of the explosion.
To be honest with the both of you, I have less than no experience with coding and the like so most of what I've used has been generously taken from the wonderful table creators on this site. That is to say I don't know what things like array and struct even mean or how to do what either of you've said but I'm keen on trying if it isn't hard.
You asked for help not a handout, figure it out.

BlazedBeard95
Noobzor
Noobzor
Posts: 13
Joined: Mon May 06, 2024 10:00 pm
Reputation: 4

Re: HELLDIVERS 2

Post by BlazedBeard95 »

gir489 wrote:
Mon Jun 17, 2024 1:05 am
BlazedBeard95 wrote:
Mon Jun 17, 2024 12:36 am
gir489 wrote:
Mon Jun 17, 2024 12:29 am


If you've already reversed the explosion struct, then half the work is done for you already, Blazed. You just need to figure out where this array is being read from when you fire off an explosion, and then use the struct to manipulate the size of the explosion.
To be honest with the both of you, I have less than no experience with coding and the like so most of what I've used has been generously taken from the wonderful table creators on this site. That is to say I don't know what things like array and struct even mean or how to do what either of you've said but I'm keen on trying if it isn't hard.
You asked for help not a handout, figure it out.
Alright man, I was just asking. No need to be a dick about it

Casisback
Shogun
Shogun
Posts: 349
Joined: Fri Mar 03, 2017 12:04 am
Reputation: 145

Re: HELLDIVERS 2

Post by Casisback »

Topic cleaned. Doesn’t anyone report content anymore?.
BlazedBeard95 wrote:
Mon Jun 17, 2024 1:50 am
Alright man, I was just asking. No need to be a dick about it
I was going to delete this but it’s too funny

> wonderful table creators
> dick

You just flipped like a pancake hahaha

Golden122
What is cheating?
What is cheating?
Posts: 2
Joined: Mon Sep 19, 2022 11:44 pm
Reputation: 0

Re: HELLDIVERS 2

Post by Golden122 »

Never meet your heroes.

BJHorner
Noobzor
Noobzor
Posts: 8
Joined: Wed Aug 09, 2023 11:38 am
Reputation: 9

Re: HELLDIVERS 2

Post by BJHorner »

yeehaw4311 wrote:
Sun Jun 16, 2024 9:25 am
BlazedBeard95 wrote:
Sun Jun 16, 2024 9:09 am
Not Aurora-based now
Is there a link to the new one pls? thanks :)
Learn to read, its not hard

gabor8418
Novice Cheater
Novice Cheater
Posts: 16
Joined: Sat May 01, 2021 7:49 pm
Reputation: 2

Re: HELLDIVERS 2

Post by gabor8418 »

I tried the new bypass but I can't copy it. Its giving me an error 0x80004005

Gvinpin
Cheater
Cheater
Posts: 25
Joined: Mon Dec 25, 2017 7:23 pm
Reputation: 2

Re: HELLDIVERS 2

Post by Gvinpin »

gabor8418 wrote:
Mon Jun 17, 2024 4:54 pm
I tried the new bypass but I can't copy it. Its giving me an error 0x80004005
Disable defender or used winrar, if u use explorer

Here is how to use it:
1. Delete the GameGuard folder from helldivers2/bin
2. Delete GameGuard.des from the helldivers2/bin
3. Put both the version.dll and version_o.dll to the Helldivers2/bin folder
4. Run the game.
5. In case the game fails to start, try again. Known issue. Might fix it later.

Post Reply

Who is online

Users browsing this forum: coccocbot-web, DotBot, Google [Bot], Google Adsense [Bot], mul0