29.10.2015, 06:07
What I mean is, Which is better?
OR
Keep in mind both timers are doing the same thing, per se.
Код:
public Timer() { for(new i=0; i<MAX_PLAYERS; i++) { SetPlayerHealth(i,100); } }
Код:
public Timer(playerid) { SetPlayerHealth(playerid,100); }