02.03.2014, 21:45
The death message will either show up for everybody, or it won't, there's no optionality for that one.
As for the +1 -1 deal, I'll lay it out for you.
in your arena teleport command:
And then last of all, OnPlayerDeath:
As for the +1 -1 deal, I'll lay it out for you.
Code:
Top of script: new arena[MAX_PLAYERS];
Code:
arena[playerid] = 1;
Code:
if (arena[playerid] == 1) { Here put whatever you want to happen while you die in the arena Then makes sure you put: arena[playerid] = 0; That'll make it so the game doesn't think you're still in the arena after you die while in it. } else { Here do whatever happens when you die outside of the arena }