Plague v1.0
166
5
166
5
Become a Friend on Patreon and get exclusive rewards! Patreon.com/OmegaKingMods
FREE rewards are available as well. Community project releases, newsletters, alerts, MBIV beta, & more.
Features:
-Every living thing you get close to dies!
Directions:
-Start up OpenIV
-Go to Edit Mode
-common.rpf/data
-Replace " pedhealth.meta " with the new file
-Ready To Play
NOTE: This mod comes with a back up of the original file. Have fun!
FREE rewards are available as well. Community project releases, newsletters, alerts, MBIV beta, & more.
Features:
-Every living thing you get close to dies!
Directions:
-Start up OpenIV
-Go to Edit Mode
-common.rpf/data
-Replace " pedhealth.meta " with the new file
-Ready To Play
NOTE: This mod comes with a back up of the original file. Have fun!
First Uploaded: May 17, 2015
Last Updated: May 17, 2015
Last Downloaded: 6 days ago
8 Comments
More mods by OmegaKingMods:
5.0
1,779
55
0.1b
Become a Friend on Patreon and get exclusive rewards! Patreon.com/OmegaKingMods
FREE rewards are available as well. Community project releases, newsletters, alerts, MBIV beta, & more.
Features:
-Every living thing you get close to dies!
Directions:
-Start up OpenIV
-Go to Edit Mode
-common.rpf/data
-Replace " pedhealth.meta " with the new file
-Ready To Play
NOTE: This mod comes with a back up of the original file. Have fun!
FREE rewards are available as well. Community project releases, newsletters, alerts, MBIV beta, & more.
Features:
-Every living thing you get close to dies!
Directions:
-Start up OpenIV
-Go to Edit Mode
-common.rpf/data
-Replace " pedhealth.meta " with the new file
-Ready To Play
NOTE: This mod comes with a back up of the original file. Have fun!
First Uploaded: May 17, 2015
Last Updated: May 17, 2015
Last Downloaded: 6 days ago
Can you make it so when you press a button everyone dies?
@spike10164 Yes thats actually extremely easy to do, but requires a script
I can even post the code here for someone who wants to do it
public class KillAll : Script
{
public bool killthemAll = false;
public KillAll()
{
Tick += OnTick;
KeyDown += OnKeyDown;
}
private void OnKeyDown(object sender, KeyEventArgs e)
{
if(e.KeyCode == Keys.A)
{
killthemAll = true;
}
}
private void OnTick(object sender, EventArgs e)
{
Ped player = Game.Player.Character;
Ped[] nearByPeople = World.GetNearbyPeds(player, 250.0f);
for(int i = 0; i < nearByPeople.Length; i++)
{
if (killthemAll)
{
nearByPeople[i].Kill();
}
}
}
}
@Yaboiicey ;-;
Nice mod man!! but can you make Alien attack with advanced weapon or zombie apocalypse? thanks! :)
@Diki91 Rockstar will probably do this for us lol
@OmegaKingMods maybe record a video about the mod?
@BlazeItMario Maybe I should. I forgot all about this one.