29.02.2012, 06:47
search for TextDrawCreate() function, the first and second parameter are X and Y.
pawn Код:
new Text:someText;
public OnGameModeInit()
{
someText = TextDrawCreate(240.0,580.0,"This is a TD");
return 1;
}