mirror of
https://github.com/s4Ys369/CHEATERex.git
synced 2025-01-23 16:14:56 -05:00
Added Cheats to CHEATER64config.txt
Added most, but not all
This commit is contained in:
parent
fd8a523490
commit
673dfe181e
1 changed files with 24 additions and 1 deletions
|
@ -13,6 +13,7 @@
|
||||||
#include "gfx/gfx_window_manager_api.h"
|
#include "gfx/gfx_window_manager_api.h"
|
||||||
#include "controller/controller_api.h"
|
#include "controller/controller_api.h"
|
||||||
#include "fs/fs.h"
|
#include "fs/fs.h"
|
||||||
|
#include "pc/cheats.h"
|
||||||
#include "pc/dynamic_options.h"
|
#include "pc/dynamic_options.h"
|
||||||
|
|
||||||
#define ARRAY_LEN(arr) (sizeof(arr) / sizeof(arr[0]))
|
#define ARRAY_LEN(arr) (sizeof(arr) / sizeof(arr[0]))
|
||||||
|
@ -154,6 +155,28 @@ static const struct ConfigOption options[] = {
|
||||||
#ifdef DISCORDRPC
|
#ifdef DISCORDRPC
|
||||||
{.name = "discordrpc_enable", .type = CONFIG_TYPE_BOOL, .boolValue = &configDiscordRPC},
|
{.name = "discordrpc_enable", .type = CONFIG_TYPE_BOOL, .boolValue = &configDiscordRPC},
|
||||||
#endif
|
#endif
|
||||||
|
{.name = "enable_cheats", .type = CONFIG_TYPE_BOOL, .boolValue = &Cheats.EnableCheats },
|
||||||
|
{.name = "moonjump", .type = CONFIG_TYPE_BOOL, .boolValue = &Cheats.MoonJump },
|
||||||
|
{.name = "invincible", .type = CONFIG_TYPE_BOOL, .boolValue = &Cheats.GodMode },
|
||||||
|
{.name = "infintie_lives", .type = CONFIG_TYPE_BOOL, .boolValue = &Cheats.InfiniteLives },
|
||||||
|
{.name = "super_speed", .type = CONFIG_TYPE_BOOL, .boolValue = &Cheats.SuperSpeed },
|
||||||
|
{.name = "controls", .type = CONFIG_TYPE_UINT, .uintValue = &Cheats.Responsive },
|
||||||
|
{.name = "exit_anywhere", .type = CONFIG_TYPE_BOOL, .boolValue = &Cheats.ExitAnywhere },
|
||||||
|
{.name = "huge_mario", .type = CONFIG_TYPE_BOOL, .boolValue = &Cheats.HugeMario },
|
||||||
|
{.name = "tiny_mario", .type = CONFIG_TYPE_BOOL, .boolValue = &Cheats.TinyMario },
|
||||||
|
{.name = "hover_mode", .type = CONFIG_TYPE_BOOL, .boolValue = &Cheats.Hover },
|
||||||
|
{.name = "moon_gravity", .type = CONFIG_TYPE_BOOL, .boolValue = &Cheats.Moon },
|
||||||
|
{.name = "run_speed", .type = CONFIG_TYPE_UINT, .uintValue = &Cheats.Run },
|
||||||
|
{.name = "no_death_barrier", .type = CONFIG_TYPE_BOOL, .boolValue = &Cheats.NDB },
|
||||||
|
{.name = "jumps_higher", .type = CONFIG_TYPE_BOOL, .boolValue = &Cheats.Jump },
|
||||||
|
{.name = "speed_display", .type = CONFIG_TYPE_BOOL, .boolValue = &Cheats.SPD },
|
||||||
|
{.name = "t_pose_float", .type = CONFIG_TYPE_BOOL, .boolValue = &Cheats.TPF },
|
||||||
|
{.name = "cannon_anywhere", .type = CONFIG_TYPE_BOOL, .boolValue = &Cheats.Cann },
|
||||||
|
{.name = "auto_wk", .type = CONFIG_TYPE_BOOL, .boolValue = &Cheats.AutoWK },
|
||||||
|
{.name = "get_shell", .type = CONFIG_TYPE_BOOL, .boolValue = &Cheats.GetShell },
|
||||||
|
{.name = "get_bobomb", .type = CONFIG_TYPE_BOOL, .boolValue = &Cheats.GetBob },
|
||||||
|
{.name = "swift_swim", .type = CONFIG_TYPE_BOOL, .boolValue = &Cheats.Swim },
|
||||||
|
{.name = "flyer", .type = CONFIG_TYPE_BOOL, .boolValue = &Cheats.Fly },
|
||||||
};
|
};
|
||||||
|
|
||||||
// Reads an entire line from a file (excluding the newline character) and returns an allocated string
|
// Reads an entire line from a file (excluding the newline character) and returns an allocated string
|
||||||
|
|
Loading…
Add table
Reference in a new issue