SetPlayerChatBubble Not working!
#1

that's my problem, in my game mode i'm using SetPlayerChatBubble when a player is chating and when a player spawn , When the player is chating there is no problem but when a player spawn i don't see the text ! this is the script i'm using
Код:
SetPlayerChatBubble(playerid, "Anti-Spawnkill ON", GREEN, 100.0, 5000);
can someone explain me where the problem came from ?
Reply
#2

SetPlayerChatBubble creates a chat bubble above a player's name tag. But is used only to show a text that player send ( OnPlayerText, or in command like /me ).

pawn Код:
public OnPlayerSpawn( playerid )
{
    new
        Float:X, Float:Y, Float:Z;
       
    GetPlayerPos( playerid, X, Y, Z );
    CreatePlayer3DTextLabel( playerid, "Anti-Spawnkill ON", GREEN, X, Y, Z, 100.0 );
    return 1;
}
Reply
#3

rep++ thnks
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)