if(Player[x][pRadinho] >= 1)
{
SetPlayerChatBubble(x, "Radinho", COR_PRINCIPAL, 100.0, 10000);
}
if(Player[x][pFogueteiro] >= 1)
{
SetPlayerChatBubble(x, "Fogueteiro", COR_PRINCIPAL, 100.0, 10000);
}
if(Player[x][pVapor] >= 1)
{
SetPlayerChatBubble(x, "Vapor", COR_PRINCIPAL, 100.0, 10000);
}
if(Player[x][pFrente] >= 1)
{
SetPlayerChatBubble(x, "Frente", COR_PRINCIPAL, 100.0, 10000);
}
if(Player[x][pDM] >= 1)
{
SetPlayerChatBubble(x, "Dono De Morro", COR_PRINCIPAL, 100.0, 10000);
}
if(Player[x][pLider] >= 1)
}
Bom acabei de fazer um sistema de ChatBubble tipo fiz tudo mas chego nas facзхes tem 4 Facзхes MLC, CMD, 3CP, LLL, Ai tipo eu queria que ficase assim Quando o player fosse setado de Lider da MLC Ficase Lider Da MLC Em cima do nick e quando fosse setado de LIDER Da CMD Fica em cima do nick tendeu
PHP код:
|
forward FaccaoChatBubble(x); public FaccaoChatBubble(x) { if(Player[x][pLider] == 1) { SetPlayerChatBubble(x, "Lнder da Facзгo 1 (CMD por exemplo)", COR_PRINCIPAL, 50.0, 9000); } if(Player[x][pLider] == 2) { SetPlayerChatBubble(x, "Lнder da Facзгo 2 (TCP por exemplo)", COR_PRINCIPAL, 50.0, 9000); } if(Player[x][pLider] == 3) { SetPlayerChatBubble(x, "Lнder da Facзгo 3 (ADA por exemplo)", COR_PRINCIPAL, 50.0, 9000); } if(Player[x][pLider] == 4) { SetPlayerChatBubble(x, "Lнder da Facзгo 4 (PCC por exemplo)", COR_PRINCIPAL, 50.0, 9000); } return 1; }