add mat depletion, ammo cost, fixed dying crashing on s16+, fix aircraft starting on some versions, fix zone on s17
This commit is contained in:
Milxnor
2023-03-31 20:24:21 -04:00
parent d53626a850
commit fbfb6bbe54
16 changed files with 179 additions and 30 deletions

View File

@@ -22,6 +22,12 @@ public:
this->ProcessEvent(fn, &IBAParams);
}
void SilentDie()
{
static auto SilentDieFn = FindObject<UFunction>("/ScriptFortniteGame.BuildingActor.SilentDie");
this->ProcessEvent(SilentDieFn);
}
float GetMaxHealth()
{
float MaxHealth = 0;