-
Notifications
You must be signed in to change notification settings - Fork 0
/
MiscHacks.h
38 lines (31 loc) · 897 Bytes
/
MiscHacks.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
36
37
38
#pragma once
#include "Hacks.h"
Vector GetAutostrafeView();
class CMiscHacks : public CHack
{
public:
void Init();
void Draw();
void Move(CUserCmd *pCmd, bool &bSendPacket);
void Fakelag(CUserCmd * pCmd, bool & bSendPacket);
private:
void PostProcces();
void Impacts();
void autostrafer2(CUserCmd * cmd);
void quick_stop(IClientEntity * entity, CUserCmd * cmd);
void AutoPistol(CUserCmd * pCmd);
void RotateMovement(CUserCmd * pCmd, float rotation);
bool CircularStrafe(CUserCmd * pCmd, Vector & OriginalView);
void SetClanTag(const char * tag, const char * name);
void Namespam();
void NoName();
void NameSteal();
void Crasher();
void ChatSpamInterwebz();
void AutoJump(CUserCmd *pCmd);
void LegitStrafe(CUserCmd *pCmd);
void MoonWalk(CUserCmd * pCmd);
void RageStrafe(CUserCmd *pCmd);
void fakeping();
int CircleFactor = 0;
};