+ 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.)
21 lines
493 B
C++
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();
|
|
} |