Page 1 of 1

Make Tanya reload

Posted: Mon Jul 30, 2018 5:05 pm
by pointbreak
I want to make Tanya reload every 10 or so shots for about 2 seconds. How to? I tried this

Code: Select all

E7:
	AmmoPool:
		Ammo: 10
		PipCount: 0
		AmmoCondition: ammo
	ReloadAmmoPool:
		Delay: 25
		Count: 10
But it doesn't really seem to work, from what I've seen she still doesn't take a break.

Re: Make Tanya reload

Posted: Mon Jul 30, 2018 5:08 pm
by Sleipnir
You will also need to add PauseOnCondition: !ammo to her Armament traits.

Re: Make Tanya reload

Posted: Mon Jul 30, 2018 5:45 pm
by pointbreak
Thanks!

Re: Make Tanya reload

Posted: Mon Jul 30, 2018 6:20 pm
by pointbreak
Turned it into:

Code: Select all

E7:
	AmmoPool:
		Ammo: 10
		PipCount: 0
		AmmoCondition: ammo
	ReloadAmmoPool:
		Delay: 25
		Count: 10
	Armament@PRIMARY:
		PauseOnCondition: !ammo
	Armament@SECONDARY:
		PauseOnCondition: !ammo
	Armament@GARRISONED:
		PauseOnCondition: !ammo
It didn't work :?

Re: Make Tanya reload

Posted: Wed Aug 01, 2018 6:48 pm
by pointbreak
Or is it meant to be in the weapons?

Re: Make Tanya reload

Posted: Wed Aug 01, 2018 6:57 pm
by Sleipnir
Try adding the traits to show ammo pips and then check that the ammo is actually being expended when the weapon fires. My best guess is that it probably isn't.

Re: Make Tanya reload

Posted: Wed Aug 01, 2018 7:23 pm
by pointbreak
And assuming it isn't, how can it be changed?