Advertising
Navigation
Information

GTA 4 Mods

:

Modifications

Hardcore IV


Autor: cge2010yt
Datum: 27.07.2023
Downloads: 1831 | Statistiken
Dateigröße: 13.508 KB

Bewertung:
10.00 bei 1 Bewertungen

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
Viruserkennungsrate: 0% (0/59)
See Virus Scan Report
Werbung
Melden
Mod Report

Bist du der Autor dieser Modifications? Falls jemand deine Mod geklaut hat, kannst du diesen Mod melden und einen Antrag auf Löschung stellen.

Diese Mod melden

Screenshots
Videos
Ein Youtube Video hinzufügen

5 Kommentare bisher
Dein Name/Nick:


Deine Message:


reload, if the code cannot be seen

Hinweis:
Du musst registriert und eingeloggt sein, um Kommentare zu posten.
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! :)