I'm looking for a mutator that will allow all players on my server to have infinite ammo, or at least the ability to get 999 ammo from pickups.
Anyone know where I can find one?
Anyone know where I can find one?
Sir_Brizz said:http://forums.beyondunreal.com/showthread.php?t=135330&highlight=EvenGround150
You can set the weapons to Regenerate Ammo as fast as you want. Set it to fast enough and you don't ever run out....there might also be an infnite ammo part, I can't remember...
Sir_Brizz said:ROFL!
That's right, it doesn't work with Superweapons I don't think. If you guys want that fixed, I can do it.
Sir_Brizz said:You have to edit the options from the ini for a dedicated server.
Think I asked something like that when you first did it, and you never did it then.Sir_Brizz said:ROFL!
That's right, it doesn't work with Superweapons I don't think. If you guys want that fixed, I can do it.
for( inv=gp.Inventory;inv!=none;inv=inv.Inventory )
{
if( inv.IsA('Weapon') && inv.IsA('Redeemer') && (!inv.IsA('faRedeemer')) )
{
gp.DeleteInventory(inv);
W = Spawn(Redeemer,,,gp.Location);
W.GiveTo(gp);
//gp.GiveWeapon("FullAmmo.faRedeemer");
}
if( inv.IsA('Weapon') && (!inv.IsA('TransLauncher')) && (!inv.IsA('ShieldGun')) )
{
Weapon(inv).SuperMaxOutAmmo();
}
}