10.05.2012, 12:41
Hy, I want to anyone help me about SetPlayerChatBubble!
I wanted to put chat bubble if is player lower level that 2 to show chat bubble over the head of the player and show the this text "[ Turista ]"
I know that I must have a timer becouse if player play for a long time, the chat bubble will disappear, and I must set a timer for this chat bubble BUT I DONT KNOW HOW TO SET TIMER FOR THIS!
Like a:
HELP ME
I wanted to put chat bubble if is player lower level that 2 to show chat bubble over the head of the player and show the this text "[ Turista ]"
I know that I must have a timer becouse if player play for a long time, the chat bubble will disappear, and I must set a timer for this chat bubble BUT I DONT KNOW HOW TO SET TIMER FOR THIS!
Like a:
Код:
if(PlayerInfo[playerid][pLevel] <= 1)
{
if(IsPlayerConnected(para1))
{
GetPlayerName(playerid, name, sizeof(name));
SetPlayerChatBubble(playerid, "[ Turista ]", COLOR_LIGHTRED, 40.0, 6600000);
}
return 1;
}


HELP

