-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8998ea0
commit a0606e5
Showing
11 changed files
with
223 additions
and
155 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
#include "Global.h" | ||
|
||
namespace Global | ||
{ | ||
BOOL disableSyncBugs = true; | ||
BOOL knifeSync = true; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
#ifndef SKY_GLOBAL | ||
#define SKY_GLOBAL | ||
|
||
#include "CTypes.h" | ||
|
||
namespace Global | ||
{ | ||
enum SyncTypes | ||
{ | ||
E_PLAYER_SYNC = 0, | ||
E_AIM_SYNC, | ||
E_VEHICLE_SYNC, | ||
E_PASSENGER_SYNC, | ||
E_SPECTATING_SYNC, | ||
E_LAST_SYNC | ||
}; | ||
|
||
extern BOOL disableSyncBugs; | ||
extern BOOL knifeSync; | ||
}; | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
#include "Player.h" | ||
|
||
namespace Player | ||
{ | ||
BYTE lastWeapon[1000] = {0}; | ||
BYTE fakeHealth[1000] = {0}; | ||
BYTE fakeArmour[1000] = {0}; | ||
glm::quat *fakeQuat[1000]; | ||
DWORD lastUpdateTick[1000] = {0}; | ||
BOOL blockKeySync[1000] = {0}; | ||
BOOL infiniteAmmo[1000] = {0}; | ||
|
||
BOOL syncDataFrozen[1000] = {0}; | ||
BOOL syncAimDataFrozen[1000] = {0}; | ||
BOOL syncVehicleDataFrozen[1000] = {0}; | ||
BOOL syncPassengerDataFrozen[1000] = {0}; | ||
BOOL syncSpectatingDataFrozen[1000] = {0}; | ||
|
||
extern Global::SyncTypes lastSyncPacket[1000] = {Global::SyncTypes::E_PLAYER_SYNC}; | ||
}; |
Oops, something went wrong.