11.01.2014, 20:30
Good idea for a script, never saw this anywhere I think .
Tho, you can change this:
to this:
and change the rest of the code appropiately, ofc.
Since there are not 500 textdraws needed (if we assume that MAX_PLAYERS is 500), if every textdraw is the same, this is a waste of 499 textdraws.
You can show one textdraw to many players.
Tho, you can change this:
Код:
new Text:Player_lights[MAX_PLAYERS];
Код:
new Text:Player_lights;
Since there are not 500 textdraws needed (if we assume that MAX_PLAYERS is 500), if every textdraw is the same, this is a waste of 499 textdraws.
You can show one textdraw to many players.