10.02.2012, 00:52
Yes and you also need to put the format(string, sizeof(string) above the start of the textdraw so that it can draw the information from it, with it below it can confuse it. You might also want to change new string to new textdraw or something. it doesnt matter what you use as the new as long as you have [#] after it. For example.
new string[128];
=
new textdrawstring[128];
just makes it more unique. And Jefff is right, you have to make it Textdraw1[MAX_PLAYERS] for it to call for each person instead of everyone at once.
new string[128];
=
new textdrawstring[128];
just makes it more unique. And Jefff is right, you have to make it Textdraw1[MAX_PLAYERS] for it to call for each person instead of everyone at once.