[Ajuda] ChatBubble em sistema de clг/grupo - 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] ChatBubble em sistema de clг/grupo (
/showthread.php?tid=494585)
-- -
PaulMcCartney - 14.02.2014
#solved.
Re: ChatBubble em sistema de clг/grupo -
WendeLKILL - 14.02.2014
Tem essa base q retirei de meu gm,vocк pode usar para criar vocк mesmo
Код:
forward AtualizarChatBubbleSocio();//Coloque Junto de suas forward perto do topo do Game Mode.
Код:
SetTimer("AtualizarChatBubbleSocio", 3000, true); // Coloque em OnGameModeInit acima das 3dtextlabel,aqui e o tempo caso exista outro chat bubble mas se nгo for isso alguem q entenda melhor favor me corrigir.
Код:
public AtualizarChatBubbleSocio()
{
for(new x=0; x < MAX_PLAYERS; x++)
{
if (PlayerInfo[x][pSocio] == 1 || PlayerInfo[x][pSocio] == 2 || PlayerInfo[x][pSocio] == 3) // AQUI O TIPO DE PLAYER QUE O CHATBUBBLE IRA APARECER EXEMPLO DE TROCA :if (PlayerInfo[x][pCargo] == 6)
{
SetPlayerChatBubble(x, "Membro Socio", COR_VAGOS, 100.0, 100000); // 0xFF0000AA = Cor // 0xFF0000AA = Cor Vermelho .
//Vocк pode alterar o texto " Membro Sуcio " pelo texto a sua escolha. ;)
}
}
}
//no final do game mode, Bom Nгo estб Muito Explicado por eu ser tambйm Novato em Pawn Mas Espero Ter ajudado :D.
Re: ChatBubble em sistema de clг/grupo -
DannielCooper - 14.02.2014
pawn Код:
public AtualizarChatBubbleSocio(){
for(new i; i < MAX_PLAYERS; i++){
if (PlayerInfo[i][SuaVar] == blabla || PlayerInfo[i][SuaVar] == blabla|| PlayerInfo[i][SuaVar] == blabla){
SetPlayerChatBubble(i, "Bla bla bla", COR_VAGOS, 100.0, 100000);
}
}
return 1;
}