Change Weight Mutator. Mutator weapon weight change

Change Weight Mutator. Mutator weapon weight change

  • Topic closed
  • You cannot reply to this topic

Change Weight Mutator. Mutator weapon weight change Change Weight Mutator. Mutator weapon weight change A mutator for changing the weight and maximizing the ammo capacity of a weapon.

Geekrainian #1

    • Group: Admin
    • Posts: 800

    Posted:

    Change Weight Mutator. Mutator weapon weight change

    A mutator for changing the weight and maximizing the ammo capacity of a weapon.

    class ChangeWeightMut extends Mutator;
    simulated function PostBeginPlay()
    {
        class 'VSSDTAmmo'.default.MaxAmmo = 140;
        class'KFMod.M99SniperRifle'.default.Weight = 3.000000;
        class'KFMod.M99Pickup'.default.Weight = 3.000000;
        Log("ChangeWeightMut I am Working");
    }
    defaultproperties
    {
        bAddToServerPackages=True
        GroupName="KF-ChangeWeight"
        FriendlyName="ChangeWeightMut"
        Description="ChangeWeightMut"
        bAlwaysRelevant=True
        RemoteRole=ROLE_SimulatedProxy
    }
    Back