02.05.2014, 19:15
Bom Eu fiz um Sistema Usando 3dText Mas Queria botar em setplayerchatbubble e queri saber como posso passar isso pra chat bubble e quando eu escolher a segunda opзao o primeiro chat bubble apaga e so fica o outro pra nao ficar trocando Aki um exemplo do meu sistema V
pawn Код:
if(dialogid == 999)
{
switch(listitem)
{
case 0:
{
SendClientMessage(playerid, COR, "Carregado Com Sucesso.");
Delete3DTextLabel(MeuText);
MeuText = Create3DTextLabel("test1", COR, 30.0, 40.0, 50.0, 100.0, 0);
Attach3DTextLabelToPlayer(MeuText, playerid, 0.0, 0.0, 0.3);
return 1;
}
case 1:
{
SendClientMessage(playerid, COR, "Carregado Com Sucesso.");
Delete3DTextLabel(MeuText1);
MeuText1 = Create3DTextLabel("Teste2", COR, 30.0, 40.0, 50.0, 100.0, 0);
Attach3DTextLabelToPlayer(MeuText1, playerid, 0.0, 0.0, 0.3);
return 1;
}