29.03.2014, 09:34
This code, below. Im just going ask how can i send this two message into one only?
Thanks
Код:
{ case 0, 1: { if(AdminDuty[playerid] == 1) { format(string, sizeof(string), "%s says: (( %s )) ", sendername, text); } else { format(string, sizeof(string), "%s says: %s", sendername, text); } SetPlayerChatBubble(playerid,text,COLOR_WHITE,20.0,5000); for (new i=0;i<MAX_PLAYERS;i++) { if(BigEar[i] == 1) { SendClientMessage(i, COLOR_FADE1, string); // replace with message data of course ProxDetector(20.0, playerid,string,COLOR_FADE1,COLOR_FADE2,COLOR_FADE3,COLOR_FADE4,COLOR_FADE5); return 0; } else { ProxDetector(20.0, playerid,string,COLOR_FADE1,COLOR_FADE2,COLOR_FADE3,COLOR_FADE4,COLOR_FADE5); } return 0; //don't want to send the message twice. } }