12.03.2017, 21:33
256 cells? That is a waste.
Uh? What? 128 cells for a name?
This:
Could be like this:
PHP Code:
new string[256];
format(string,sizeof(string),"The Fallout event is about to start in %d minute(s), join it by typing '/joinfallout'",EVENT_START); //let's send everyone a string with the time until start and the join command
PHP Code:
new name[128];
GetPlayerName(i,name,128);
PHP Code:
new FalloutPlayer[MAX_PLAYERS]; //Player Variable that let us know if the player is inside the event or not
new FalloutStarted = 0; //Global Variable to know if the Event has started or not
new FalloutPlayers = 0; //Global Variable to know how much players we have in the event, if < 1 the event will NOT start.
new FalloutWaiting = 0; //Global variable to know if we're waiting for the event to start or not
PHP Code:
new FalloutPlayer[MAX_PLAYERS], //Player Variable that let us know if the player is inside the event or not
FalloutStarted = 0, //Global Variable to know if the Event has started or not
FalloutPlayers = 0, //Global Variable to know how much players we have in the event, if < 1 the event will NOT start.
FalloutWaiting = 0; //Global variable to know if we're waiting for the event to start or not