Posts: 71
Threads: 27
Joined: Apr 2010
Reputation:
0
Well i have a problem, i have a mode with stats. This stats get shown after every round.
The problem is that if i use it with a clientmessage it shows all players, but when i use it in a textdraw it only shows the first id.. How to fix this? thanks..
Posts: 508
Threads: 34
Joined: Feb 2011
Reputation:
0
did you loop through all the players?
Posts: 71
Threads: 27
Joined: Apr 2010
Reputation:
0
I guess, else it wouldn't show each player by SendClientMessage, or am i wrong?
Posts: 124
Threads: 32
Joined: Oct 2010
Reputation:
0
for(new i; i < MAX_PLAYERS; i++)
{
// SendClientMessage(i,color,message);
}
Posts: 71
Threads: 27
Joined: Apr 2010
Reputation:
0
Lol, read my question again..
Posts: 124
Threads: 32
Joined: Oct 2010
Reputation:
0
loop the textdraws. the sendmessage was a exemple of a loop.
Posts: 71
Threads: 27
Joined: Apr 2010
Reputation:
0
how to? can u give me an better example? thanks..