05.07.2010, 16:36
Quote:
Yes.
pawn Код:
|
Quote:
Use EnableZoneNames(0); in the OnGameModeInit callback, to disable zone names. You can disable nametags, by using another function ShowNameTags(0); in OnGameModeInit, so basically:
Код:
public OnGameModeInit() { ShowNameTags(0); EnableZoneNames(0); return 1; } |