SA-MP Forums Archive
[Ajuda] Tag ou Prefixo em um Nick especнfico - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: Non-English (https://sampforum.blast.hk/forumdisplay.php?fid=9)
+--- Forum: Languages (https://sampforum.blast.hk/forumdisplay.php?fid=33)
+---- Forum: Português/Portuguese (https://sampforum.blast.hk/forumdisplay.php?fid=34)
+---- Thread: [Ajuda] Tag ou Prefixo em um Nick especнfico (/showthread.php?tid=640580)



Tag ou Prefixo em um Nick especнfico - higor212 - 04.09.2017

Sou novato em pawn, nгo tenho ideias de como fazer isso, alguйm poderia me ajudar?


Re: Tag ou Prefixo em um Nick especнfico - IlanZ - 04.09.2017

Pode explicar mais?


Re: Tag ou Prefixo em um Nick especнfico - C4rtm4n - 04.09.2017

Nгo й pawno й Pawn

dк uma olhada nisso:
https://sampwiki.blast.hk/wiki/SetPlayerChatBubble
ou
https://sampwiki.blast.hk/wiki/CreatePlayer3DTextLabel


Re: Tag ou Prefixo em um Nick especнfico - higor212 - 04.09.2017

Tipo, normalmente os cуdigos de TAG ou Prefixo sгo feitos pra certa funзгo tipo "ADM" "VIP" mas eu nunca consegui pensar como seria pra colocar em um Nick especнfico a tag ou o prefixo


Re: Tag ou Prefixo em um Nick especнfico - rjjj - 04.09.2017

Declare uma variбvel array com o tamanho igual ao mбximo de caracteres (contando com um extra) que o nome e o prefixo podem ter juntos. Em seguida use essa array na funзгo GetPlayerName para armazenar o nome do jogador especнfico .



Depois, somente use a funзгo strcat para acoplar o prefixo ao nome conseguido por GetPlayerName. O resultado disso, ao ser aplicado por SetPlayerName, mudaria o nome do jogador para a mesma denominaзгo, mas com um prefixo adicionado.



Espero ter ajudado .


Re: Tag ou Prefixo em um Nick especнfico - RodrigoMSR - 04.09.2017

PHP код:
new name[MAX_PLAYER_NAME];
GetPlayerName(playeridnamesizeof(name));
if(
strcmp(name"NickDoJogador"false) == 0)
{
    
//Criar a tag aqui




Re: Tag ou Prefixo em um Nick especнfico - C4rtm4n - 04.09.2017

Quote:
Originally Posted by higor212
Посмотреть сообщение
Tipo, normalmente os cуdigos de TAG ou Prefixo sгo feitos pra certa funзгo tipo "ADM" "VIP" mas eu nunca consegui pensar como seria pra colocar em um Nick especнfico a tag ou o prefixo
Custa ler a Wiki?


Quote:

Nгo й pawno й Pawn

dк uma olhada nisso:
https://sampwiki.blast.hk/wiki/SetPlayerChatBubble
ou
https://sampwiki.blast.hk/wiki/CreatePlayer3DTextLabel