event participants
#1

hello,
when start event and player have join in event send message to all participants: how much have join
Thnx
Reply
#2

Give us your codes?
Anyway, you can do like

PHP код:
SendClientMessage(playeridCOLOR_WHITE," %d have joined the event!"nEvent); 
Something like that according to your script.
rep+ me if this helped
Reply
#3

not this
Reply
#4

Tell me what you mean...... And show us your code please
Reply
#5

when event start tell how much player have join in it
Reply
#6

You have to show us the variable you give the to check the if player is in event.

This is an example of mine.
pawn Код:
// on event start

new count = 0;
new string[128];
new name1[MAX_PLAYER_NAME];
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(InEvent[i] == 1)
{
GetPlayerName(i,name1,MAX_PLAYER_NAME);
}
}
format(string,sizeof(string), "%s", name1);
ShowPlayerDialog(playerid,10102,DIALOG_STYLE_MSGBOX,"Current Players",string,"Close","");
count++;
Reply
#7

its not tis what i want :/
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)