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:
@@ -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,
|
||||
};
|
||||
|
||||
/*----------------------------------------------------------------------------*/
|
||||
|
||||
Reference in New Issue
Block a user