use this as definition:
pawn Код:
new Text: Textdraw2[MAX_PLAYERS];
and on your gamemode or filterscript init where you create the textdraw, etc...
pawn Код:
for(new i=0; i<MAX_PLAYERS; i++)
{
Textdraw2[i] = TextDrawCreate....
}
and later on your code:
pawn Код:
TextDrawSetString(Textdraw2[playerid], "You Typed /cmd"");
*Note: remind to add a [playerid] behind each "Textdraw2"^^