Add friendly and enemy chams

Add 2 new chams settings (friendly only and all players)
Add 2 new colors to visible_flags enum (friend_visible and friend_not_visible)
Add friendly colors to glColor4f hook
This commit is contained in:
8dcc
2023-07-27 21:28:40 +02:00
parent 9743b58ae4
commit 3a107737b9
3 changed files with 36 additions and 14 deletions

View File

@@ -5,10 +5,12 @@
#include "../include/sdk.h"
enum visible_flags {
NONE = 0,
VISIBLE = 1,
NOT_VISIBLE = 2,
HANDS = 3,
NONE = 0,
ENEMY_VISIBLE = 1,
ENEMY_NOT_VISIBLE = 2,
FRIEND_VISIBLE = 3,
FRIEND_NOT_VISIBLE = 4,
HANDS = 5,
};
/*----------------------------------------------------------------------------*/