respawn toggle

toggling respawn,  auto parachute height changer changer, fixed issue with characterparts, fixed lategame on s8, added cheat commands
This commit is contained in:
Milxnor
2023-06-23 15:00:53 -04:00
parent a85d1942b6
commit 0ca1350d92
19 changed files with 1264 additions and 1050 deletions

View File

@@ -0,0 +1,27 @@
#pragma once
#include "FortPlaylist.h"
enum class EAthenaRespawnType : uint8_t
{
None = 0,
InfiniteRespawn = 1,
InfiniteRespawnExceptStorm = 2,
EAthenaRespawnType_MAX = 3
};
class UFortPlaylistAthena : public UFortPlaylist
{
public:
EAthenaRespawnType& GetRespawnType()
{
static auto RespawnTypeOffset = GetOffset("RespawnType");
return Get<EAthenaRespawnType>(RespawnTypeOffset);
}
static UClass* StaticClass()
{
static auto Class = FindObject<UClass>(L"/Script/FortniteGame.FortPlaylistAthena");
return Class;
}
};