sounds cool, any pictures of the textures?
here is a quick solution to enable heli on 1 star, u can just bypass 1 or 2 stars... want a warzone? u will get a warzone
the harder solution is spawning the heli yourself on 1 or 2 stars and re creating all the AI
| CODE |
using System; using System.Windows.Forms; using GTA;
public class PoliceStuff : Script { public PoliceStuff() { Tick += new EventHandler(PoliceStuff_Tick); } private void PoliceStuff_Tick(object sender, EventArgs e) { if (Game.LocalPlayer.WantedLevel == 1 || Game.LocalPlayer.WantedLevel == 2) { Game.LocalPlayer.WantedLevel = 3; }
Ped[] pedArray = World.GetAllPeds();
foreach (Ped cop in pedArray) { if (cop.RelationshipGroup != RelationshipGroup.Cop) continue;
if (cop.Weapons.AssaultRifle_M4.Ammo > 0) continue;
cop.Weapons.RemoveAll(); cop.Weapons.AssaultRifle_M4.Ammo = 500; } } } |
just tested and it works, with this no more 1-2 stars and cops armed with M4
This post has been edited by MonkeyMan_420 on Friday, Mar 9 2012, 10:49