Files
DevourClient/user/features/misc/misc.h
Jadis0x 01c16909bf changes & fixed issues causing game crashes
+ flying speed increased from 15 to 20
+ NolanBehavior_Update hooked
+ fullbright, player speed and fly moved to nolan's update hook
+ added NolanBehaviour parameter to Misc::FullBright function
- fly function removed from misc namespace (this function will be re-added in the near future after further improvements and testing.)
2024-06-01 19:47:24 +03:00

21 lines
493 B
C++

#pragma once
#include "settings/settings.hpp"
#include <iostream>
namespace Misc {
void ForceStart();
void CarryItem(const char* itemName);
void CarryAnimal(const char* animalName);
void InstantWin();
void CustomizedLobby();
void SpawnPrefab(const char* prefabName);
void FullBright(app::NolanBehaviour* nb);
void Revive(bool self);
void GetKeys();
void Jumpscare();
void Kill(bool self);
void RankSpoofer(int value);
void TpToAzazel();
}