2019-03-21 20:18:31 +01:00
|
|
|
#pragma once
|
|
|
|
#include "common.hpp"
|
2020-12-26 18:24:08 +01:00
|
|
|
#include "fiber_pool.hpp"
|
2020-12-29 00:19:37 +01:00
|
|
|
#include "structs/lists.hpp"
|
2020-12-26 15:18:41 +01:00
|
|
|
#include "structs/player.hpp"
|
|
|
|
#include "structs/temp.hpp"
|
2020-12-29 23:32:58 +01:00
|
|
|
#include "features/functions.hpp"
|
2020-12-26 17:13:06 +01:00
|
|
|
#include "features/notify.hpp"
|
2021-01-10 16:19:40 +01:00
|
|
|
#include "features/rid_joiner.hpp"
|
2020-12-27 00:47:08 +01:00
|
|
|
#include "features/stats.hpp"
|
2020-12-26 17:13:06 +01:00
|
|
|
#include "features/teleport.hpp"
|
2019-03-21 20:18:31 +01:00
|
|
|
|
2020-12-26 16:48:39 +01:00
|
|
|
namespace big
|
2019-03-21 20:18:31 +01:00
|
|
|
{
|
2020-12-26 15:18:41 +01:00
|
|
|
inline Player g_playerId;
|
2020-12-31 23:23:57 +01:00
|
|
|
inline Player g_selectedPlayerId;
|
|
|
|
|
|
|
|
inline player g_currentPlayer;
|
|
|
|
inline player g_selectedPlayer;
|
2020-12-26 15:18:41 +01:00
|
|
|
inline player g_players[32];
|
|
|
|
|
|
|
|
// Temporary Variable struct
|
|
|
|
inline temp g_temp = temp{};
|
|
|
|
|
2020-12-26 16:48:39 +01:00
|
|
|
// Screen Width & Height
|
|
|
|
inline int x, y;
|
|
|
|
|
|
|
|
namespace features
|
|
|
|
{
|
|
|
|
void run_tick();
|
|
|
|
void script_func();
|
2020-12-26 18:13:47 +01:00
|
|
|
|
2021-01-01 15:25:44 +01:00
|
|
|
void disable_phone();
|
2020-12-26 18:13:47 +01:00
|
|
|
void god_mode();
|
2021-01-13 15:33:52 +01:00
|
|
|
void gravity_gun();
|
2020-12-26 19:34:05 +01:00
|
|
|
void never_wanted();
|
2021-01-13 15:33:52 +01:00
|
|
|
void noclip();
|
2020-12-26 21:56:22 +01:00
|
|
|
void no_bike_fall();
|
2020-12-26 19:44:35 +01:00
|
|
|
void no_idle_kick();
|
2020-12-26 18:24:08 +01:00
|
|
|
void no_ragdoll();
|
2020-12-26 19:39:24 +01:00
|
|
|
void off_radar();
|
2020-12-29 01:10:25 +01:00
|
|
|
void population_modifiers();
|
2020-12-27 19:26:08 +01:00
|
|
|
void reveal_players();
|
2020-12-31 02:10:15 +01:00
|
|
|
void spectate_player();
|
2020-12-29 23:32:58 +01:00
|
|
|
void speedo_meter();
|
2020-12-26 19:48:00 +01:00
|
|
|
void spoof_rank();
|
2020-12-26 22:06:31 +01:00
|
|
|
void sticky_tyres();
|
2020-12-26 19:39:24 +01:00
|
|
|
void super_sprint();
|
2020-12-26 19:26:10 +01:00
|
|
|
|
|
|
|
void update_screen_sizes();
|
|
|
|
void update_player_structs();
|
2020-12-26 16:48:39 +01:00
|
|
|
}
|
2019-03-21 20:18:31 +01:00
|
|
|
}
|