mirror of
https://github.com/Milxnor/Project-Reboot-3.0.git
synced 2026-01-14 03:02:22 +01:00
idek
remove s18+ storm effect, fix teams on all versions, fix a crash, fix 1.11 restarting
This commit is contained in:
53
Project Reboot 3.0/calendar.h
Normal file
53
Project Reboot 3.0/calendar.h
Normal file
@@ -0,0 +1,53 @@
|
||||
#pragma once
|
||||
|
||||
#include "reboot.h"
|
||||
#include "GameplayStatics.h"
|
||||
#include "FortGameStateAthena.h"
|
||||
|
||||
namespace Calendar
|
||||
{
|
||||
static inline bool HasSnowModification()
|
||||
{
|
||||
return Fortnite_Version == 7.30;
|
||||
}
|
||||
|
||||
static inline UObject* GetSnowSetup()
|
||||
{
|
||||
auto Class = FindObject<UClass>("/Game/Athena/Environments/Landscape/Blueprints/BP_SnowSetup.BP_SnowSetup_C");
|
||||
auto Actors = UGameplayStatics::GetAllActorsOfClass(GetWorld(), Class);
|
||||
|
||||
return Actors.Num() > 0 ? Actors.at(0) : nullptr;
|
||||
}
|
||||
|
||||
static inline float GetFullSnowMapValue()
|
||||
{
|
||||
if (Fortnite_Version == 7.30)
|
||||
{
|
||||
std::vector<std::pair<float, float>> TimeAndValues = { { 0, 1.2f}, { 0.68104035f, 4.6893263f }, { 0.9632137f, 10.13335f }, { 1.0f, 15.0f } };
|
||||
// 1.2
|
||||
// 4.6893263
|
||||
// 10.13335
|
||||
// 15;
|
||||
return TimeAndValues[3].first;
|
||||
}
|
||||
|
||||
return -1;
|
||||
}
|
||||
|
||||
static inline void SetSnow(float NewValue)
|
||||
{
|
||||
static auto SetSnowFn = FindObject<UFunction>("/Game/Athena/Environments/Landscape/Blueprints/BP_SnowSetup.BP_SnowSetup_C.SetSnow");
|
||||
auto SnowSetup = GetSnowSetup();
|
||||
|
||||
LOG_INFO(LogDev, "SnowSetup: {}", SnowSetup->IsValidLowLevel() ? SnowSetup->GetFullName() : "BadRead");
|
||||
|
||||
if (SnowSetup)
|
||||
{
|
||||
static auto OnReady_347B1F4D45630C357605FCB417D749A3Fn = FindObject<UFunction>("/Game/Athena/Environments/Landscape/Blueprints/BP_SnowSetup.BP_SnowSetup_C.OnReady_347B1F4D45630C357605FCB417D749A3");
|
||||
auto GameState = GetWorld()->GetGameState();
|
||||
SnowSetup->ProcessEvent(OnReady_347B1F4D45630C357605FCB417D749A3Fn, &GameState);
|
||||
|
||||
SnowSetup->ProcessEvent(SetSnowFn, &NewValue);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user