05.07.2010, 16:28
Can disable that zones name's? Like you go Dillimore, then screen show's "Dillimore".
Can disable that name tag?
Like: Alex_Man_Man (1) << Off
Can disable that name tag?
Like: Alex_Man_Man (1) << Off
public OnGameModeInit()
{
ShowNameTags(0);
EnableZoneNames(0);
return 1;
}
|
Yes.
pawn Код:
|
|
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;
}
|