10.10.2010, 11:47
Quote:
Uhm, it says error 035: argument type mismatch for
Код:
GetPlayerScore(i) |
What you need to do, is formatting a string to output the value of GetPlayerScore:
pawn Код:
new szScore[ 20 ]; //19 decimals is more than enough, probably..
format(szScore, sizeof(szScore), "%i", GetPlayerScore(i)); // %d and %i is the same
TextDrawSetString(/*your textdraw*/, szScore);