Advertising
Navigation
Information

GTA 4 Mods

:

Modifications

Hardcore IV


Author: cge2010yt
Date: 27.07.2023
Downloads: 1831 | Statistics
Filesize: 13.508 KB

Rating:
10.00 based on 1 votes

This mod makes the game really hard by taking all your gun ammo and making all weapons have short range and deal hardly any damage. It also has the player at 1 hp at all times. enjoy

Advertising
Download
DOWNLOAD
Virus Detection Ratio: 0% (0/59)
See Virus Scan Report
Advertising
Report
Mod Report

Are you the owner of this mod? If someone has stolen your work, you can make a request for removing this mod.

Report this mod

Screenshots
Videos
Add a Youtube video

5 comments found
Name:


Comment text:


reload, if the code cannot be seen

Attention:
You need to be registered and signed in to post comments!
mahanyalan101
"Vic"
Vic
Comments: 0
Profile
Message
28.07.2023, 08:16

good


tamarozzi9
"Vic"
Vic
Comments: 0
Profile
Message
09.09.2023, 00:34

I really like the intention here. can i just choose which one of those i want? also, can you tell me how to change Nikos HP? I have openIV i just dont know what to change,


cge2010yt
"Vic"
Vic
Comments: 0
Profile
Message
13.09.2023, 23:52

@tamarozzi9 You can just choose which file you want! If you only want the weapons go to OPENIV MANUAL and place WeaponInfo.xml in GTAIVcommondata. In scripts the file Hardcorehealth.cs changes the health and Hardcoreweapons.cs changes what weapon NPCS use. To change Niko's HP open Hardcorehealth.cs and paste this


namespace HardHealth{ using System; using GTA; public class HardHealth : Script { public HardHealth() { this.Tick += this.TICK_DO_ALL_TIME; } private void TICK_DO_ALL_TIME(object sender, EventArgs e) { if (Player.Character.Health > 1) { Player.Character.Health = YOURHEALTHHERE; } if (Player.Character.Armor > 2) { Player.Character.Armor = 2; } if (Player.Character.Health < 1) { Interval = 10000; Player.Character.Health = YOURHEALTHHERE; } } }}

put your max HP number in the YOURHEALTHHERE and make sure the number looks like this example.

Player.Character.Health = 3;

hope this helped!


tamarozzi9
"Vic"
Vic
Comments: 0
Profile
Message
16.09.2023, 16:52

@cge2010yt
Thank you for taking the time to reply. I do some roleplaying and survival on gtaiv and i always wanto be freely change my hp, make the game harder and stuff. thank you.


cge2010yt
"Vic"
Vic
Comments: 0
Profile
Message
25.01.2024, 01:10

@tamarozzi9 Your welcome! Enjoy! :)