Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

some things i want #86

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions appdata/il2cpp-types - Copy.h
Original file line number Diff line number Diff line change
Expand Up @@ -7705,6 +7705,7 @@ enum RoleTypes__Enum {
ServerNotFound = 0x000000d6,
ClientTimeout = 0x000000d7,
ErrorAuthNonceFailure = 0x000000d8,
//UnableToGetHowStupidYoAre = 0x123456a7
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

meme bro

Unknown = 0x000000ff,
};

Expand Down
5 changes: 4 additions & 1 deletion user/keybinds.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,10 @@ void KeyBinds::to_json(nlohmann::ordered_json& j, KeyBinds::Config value)
{"Randomize_Appearance", value.Randomize_Appearance},
{"Complete_Tasks", value.Complete_Tasks},
{"Toggle_Sicko", value.Toggle_Sicko},
};
//{TogleSafeModeSafeMode, *},
//{ShowKillMenu(like The Menu Of Shape Shifting And Will Be A TeleKill)}
//i Want to add more
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

i will prob add more things here to u add

};
}

void KeyBinds::from_json(const nlohmann::ordered_json& j, KeyBinds::Config& value)
Expand Down
7 changes: 6 additions & 1 deletion user/state.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ class Settings {
bool FreeCam = false;
float FreeCamSpeed = 1.f;

float CameraHeight = 3.0;
float CameraHeight = 4.0f;
Camera* FollowerCam = nullptr;
bool EnableZoom = false;

Expand Down Expand Up @@ -309,6 +309,8 @@ class Settings {
Vector3 prevCamPos = { NULL, NULL, NULL };

bool FlipSkeld = false;
bool lapsTimesEValue;
int lapstimeEValueInt;
bool CustomImpostorAmount = false;
int ImpostorCount = 1;
bool DisableCallId = false;
Expand All @@ -323,6 +325,7 @@ class Settings {
bool MessageSent = false;
bool ChatFocused = false;
bool IsRevived = false;
bool canRevive = true;

std::string chatMessage = "";
std::string userName = "";
Expand All @@ -340,11 +343,13 @@ class Settings {
bool SickoDetection = true;
bool ForceLoginAsGuest = false;
bool DisableHostAnticheat = false;
bool canDisableHostAnticheat;

enum class MapType : uint8_t
{
Ship = 0,
Hq = 1,
//Dleks = 2,
Pb = 2,
Airship = 3,
Fungle = 4
Expand Down