Ammoseeker
Member
- Joined
- Mar 21, 2014
- Messages
- 14
- Reaction score
- 1
Hello,
You know we can change nametag property with offsets to this func; (for enable - disable)
So, here is the my question.
Can we access Player Markers for change it?(ShowPlayerMarkers)
You know we can change nametag property with offsets to this func; (for enable - disable)
C:
public OnGameModeInit()
{
// This will fully disable all player nametags
// (including health and armour bars)
ShowNameTags(0);
}
So, here is the my question.
Can we access Player Markers for change it?(ShowPlayerMarkers)
C:
public OnGameModeInit()
{
// Player markers only visible to nearby players
ShowPlayerMarkers(PLAYER_MARKERS_MODE_STREAMED);
}