forked from Chaos192/PalWorld-NetCrack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.h
36 lines (30 loc) · 762 Bytes
/
config.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#pragma once
#include <Windows.h>
#include "libs/utils/memory.h"
#include "SDK.hpp"
typedef bool(*Tick)(SDK::APalPlayerCharacter* m_this,float DeltaSecond);
class config
{
public:
DWORD64 ClientBase = 0;
DWORD64 offset_Tick = 0x2AB44D0;
//�˵��ж�
bool IsESP = false;
bool IsAimbot = false;
bool IsSpeedHack = false;
bool IsAttackModiler = false;
bool IsDefuseModiler = false;
bool IsInfStamina = false;
bool IsSafe = true;
bool IsInfinAmmo = false;
//����
float SpeedModiflers = 1.0f;
int DamageUp = 0;
int DefuseUp = 0;
SDK::APalPlayerCharacter* localPlayer = NULL;
//����
static SDK::UWorld* GetUWorld();
static SDK::APalPlayerCharacter* GetPalPlayerCharacter();
static void Init();
};
extern config Config;