EnableZoneNames
From SA-MP Wiki
EnableZoneNames
Warning: This function is removed in SA-MP 0.3.
This function allows to turn on zone / area names such as the "Vinewood" or "Doherty" text at the bottom-right of the screen as they enter the area. This is a gamemode option and should be set in the callback OnGameModeInit.
(enable)
| enable | A toggle option for whether or not you'd like zone names on or off. 0 is off and 1 is on. |
This function does not return a specific value, it's best to simply ignore it.
public OnGameModeInit() { EnableZoneNames(1); return 1; }
