Page 1 of 1

[ACTION MAKER][WEAPON][TMP SOLVED] No energy and not loading

Posted: 26 Feb 2019, 00:52
by weerwolf
In my effort to revive roulette im looking into the fact why the custom weapons are not working.
So for the understanding i created the simplest bullet and hit the test button.
Hmmm wont fire.....
Logically, cause the wepaon has no energy. But even with C_EnergyReload it wont reload.

Don't know what i am missing here...

Re: [ACTION MAKER][WEAPON] No energy and not loading

Posted: 26 Feb 2019, 21:47
by weerwolf
Post by eyebo » 08 Feb 2018, 09:25
ACTION MAKER
If you save a new animation created in MP4 and test, it apparently wont work.
I mean... Is this -really- not working from that date??

Re: [ACTION MAKER][WEAPON] No energy and not loading

Posted: 02 Mar 2019, 20:02
by weerwolf
Post by Eole » Yesterday, 16:20

Indeed, it seems there is a problem with the EnergyReload property. What you can do in the meantime is to replace the line EnergyReload = C_EnergyReload; by this:

Code: Select all

// EnergyReload = C_EnergyReload;
if (Energy < EnergyMax) {
	Energy += 10;
	if (Energy > EnergyMax) {
		Energy = EnergyMax;
	}
}