SA-MP Forums Archive
i cant see chat bubble...? - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: i cant see chat bubble...? (/showthread.php?tid=231839)



i cant see chat bubble...? - deviljingoku - 26.02.2011

i have chatbubble text in my gamemode.....when i typed something i cant see it on my player's head...? please help me....?
here is pawno code... :-
pawn Код:
public OnPlayerText(playerid, text[])
{
     if(strlen(text) > 128) return 0;
     
     new to_others[MAX_CHATBUBBLE_LENGTH+1];
     new to_me[MAX_CHATBUBBLE_LENGTH+1];
     
     format(to_others,MAX_CHATBUBBLE_LENGTH,"Says: %s",text);
     format(to_me,MAX_CHATBUBBLE_LENGTH,"chat %s",text);
     
     SetPlayerChatBubble(playerid,to_others,MESSAGE_COLOR,35.0,10000);
     SetPlayerChatBubble(playerid,to_me,MESSAGE_COLOR,35.0,10000);
     
     return 0; //
}



Re: i cant see chat bubble...? - woot - 26.02.2011

You cannot see chatbubbles over your own ped. Only other players can see them above you.


Re: i cant see chat bubble...? - deviljingoku - 26.02.2011

how i can see it over on my own ped...? i have seen in some servers......?