Page 3 of 8

Re: LCWeapons (build 0010)

Posted: Sun Aug 17, 2014 7:26 pm
by Higor
Updated to 0010:

- Fixed critical demoplay crash bug.
- Fixed legacy double Enforcer ammo bug on LCEnforcers.
- InstabigDM arena is not properly adapted (unlimited ammo, no pickups).
- Team Colored shock rifles! (LC: ColoredShock) (LCWeapons_0010.FV_ColoredShock)
--- Requires base LCMutator loaded.

Re: LCWeapons (build 0010)

Posted: Mon Aug 18, 2014 3:13 am
by Dr.Flay
Always been a fan of team coloured shock

Re: LCWeapons (build 0010)

Posted: Mon Aug 18, 2014 9:12 am
by Wises
is NN compatibility on the list somewhere?

Re: LCWeapons (build 0010)

Posted: Mon Aug 18, 2014 4:07 pm
by Chamberly
You can't stick LC + NN together. -.-

Re: LCWeapons (build 0010)

Posted: Mon Aug 18, 2014 6:21 pm
by Higor
NN's weapon item makes it impossible to achieve.

Re: LCWeapons (build 0010)

Posted: Thu Aug 21, 2014 10:34 am
by Wises
bummer ahh well :/

cheers

and I guess because it is Pure based makes it all the more awkward.

perhaps a new movement compensator system for lc weapons would be the ideal alternative.

as that's the main part that players really love i think :)

Re: LCWeapons (build 0010)

Posted: Wed Oct 22, 2014 4:21 am
by z4tan
LC affect demos?

You remember zp? when you shot with shock, the shot in demo are bugged, with LC what happend? all weapons are ok?

Re: LCWeapons (build 0011)

Posted: Fri Dec 05, 2014 10:09 pm
by Higor
Simulated swJumpPads no longer cause ACE kicks
XC_GameEngine and UTPure servers now remove client's "MUTATE GETWEAPON" binds
Colored shock now works in non-server sessions
Projectiles now have their old positions stored for LC subengine hit checks.
Impact hammer no longer requires EXM to simulate self-piston velocity on clients.
Added AlientAssaultRifle (AARV17) (only the arena mutator works)

Re: LCWeapons (build 0011)

Posted: Thu Feb 05, 2015 8:38 pm
by RocketJedi
how do we generate an ini for this mod? Instagib seems to run out of ammo and is there a way to alter ammo counts in general?

Re: LCWeapons (build 0011)

Posted: Fri Feb 06, 2015 9:07 pm
by RocketJedi
Higor?

Re: LCWeapons (build 0011)

Posted: Fri Feb 06, 2015 9:26 pm
by Higor
Didn't even realize this got bumped.
In any case, insert the Botpack.InstagibDM mutator alongside the LCMutator.

Code: Select all

		else if ( M.IsA('InstaGibDM') )
		{
			LCArena = Spawn( class'LCArenaMutator');
			LCArena.SetupWeaponReplace( class'SuperShockRifle', class'LCSuperShockRifle');
			if ( !ChainMutatorBeforeThis(LCArena) )
				return false;
			LCArena.LCMutator = self;
			LCArena.SetupWeaponRespawn( true, true, true, true, true, true);
			LCArena.SetupPickups( true, true, false, true);
			LCArena.AddPropertyWeapon( "bNoAmmoDeplete", "1");
			LCArena.AddPropertyWeapon( "bCanThrow", "0");
			return true;
		}
That should give the weapons the no-depletion and no-throw properties.
If it doesn't work show me what mutators are being added (both CMD and mapvote).

Re: LCWeapons (build 0011)

Posted: Sat Feb 07, 2015 5:15 pm
by RocketJedi
Its on a normal weapons server. ill try it out though

Re: LCWeapons (build 0011)

Posted: Sun Feb 08, 2015 11:06 am
by Wises
Higor wrote:- Compatible with ExtendedClientMove plugin (to be released)
^is this your movement compensation mech?
is it in the latest LC_weapons mod?

also re: sniper rifle (capable of editing firing rates etc via .ini?

Re: LCWeapons (build 0011)

Posted: Mon Feb 09, 2015 3:29 pm
by RocketJedi
yeah def need an INI file. Instagib runs out of ammo when it shouldn't. otherwise great ZP replacement

Re: LCWeapons (build 0011)

Posted: Mon Feb 09, 2015 6:37 pm
by Higor
Found the bug, will correct later today or tomorrow.

In the meantime, load the InstagibDM mutator earlier than LCMutator.
EDIT: Also remove all other Arena/weapon replace mutators.
EDIT2: Post both CMD and MapVote mutator lists, in here I only get to have depletable ammo if I load a custom sniper rifle alongside the Instagib mutator which shouldn't happen anyways, regardless of mutator order.