There would be errors.
Because than you would be trying to assign a value to a variable that doesn't exist.
MAX_PLAYERS is a value defined with a_samp.inc & your server config
So if the max amount of players on your server can be 50.
with
Код:
new PlayerDeaths[MAX_PLAYERS];
You would create a variable for those 50 slots.
If you have 50 player slots you could also do this.
Код:
new PlayerDeaths[50];
but because the MAX_PLAYERS is a variable which changes dynamicly its the most used.
So if in the server config the max players is 50 now it will create 50 variables.
If tomorrow you change the max players to 100 the variable will also change automaticlly to 100