06.05.2015, 10:06
PHP код:
// When the player says something
ShowNameForAll(playerid, false); // Hide their name
SetPlayerChatBubble(playerid, "Hello", 0xFF0000FF, 100.0, 1000); // Set the chat bubble
// Now you should set a timer, to re-show their name
// ShowNameForAll function
ShowNameForAll(playerid, bool:x){
for(new i = 0; i < MAX_PLAYERS; i++){
if(IsPlayerConnected(i)){ ShowPlayerNameTagForPlayer(i, playerid, x);
}
}