2 thing's
#1

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
Reply
#2

(1. Don't think so.)

2. Just if you disable all and put 3D Textlabels over the people you want the name to appear for.

Cheers.
Reply
#3

Quote:
Originally Posted by Typhome
Посмотреть сообщение
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
Yes.

pawn Код:
EnableZoneNames(false);
ShowNameTags(false);
Reply
#4

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;
}
EDIT: Crap, didn't see replies were coming in.
Reply
#5

Quote:
Originally Posted by JaTochNietDan
Посмотреть сообщение
Yes.

pawn Код:
EnableZoneNames(false);
ShowNameTags(false);
Quote:
Originally Posted by Calgon
Посмотреть сообщение
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;
}
EDIT: Crap, didn't see replies were coming in.
I think he's talking about disabling the Player-Name for just one player.
Reply
#6

Quote:
Originally Posted by DeathOnaStick
Посмотреть сообщение
I think he's talking about disabling the Player-Name for just one player.
Ah, in that case:
ShowPlayerNameTagForPlayer
Reply
#7

Quote:
Originally Posted by DeathOnaStick
Посмотреть сообщение
I think he's talking about disabling the Player-Name for just one player.
In that case

pawn Код:
ShowPlayerNameTagForPlayer(playerid, showplayerid, false);
Reply
#8

Thanks all guy's.

But how do i make 3D label for any players.
it only shows player ID
Reply
#9

Quote:
Originally Posted by Typhome
Посмотреть сообщение
Thanks all guy's.

But how do i make 3D label for any players.
it only shows player ID
The way i told you seems to be unnessacary. ShowPlayerNameTagForPlayer seems to be enough.
Reply
#10

Quote:
Originally Posted by DeathOnaStick
Посмотреть сообщение
The way i told you seems to be unnessacary. ShowPlayerNameTagForPlayer seems to be enough.
Its shows name, but i want only ID

Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)