18.11.2013, 18:21
Yes it's possible, try this:
pawn Код:
new Text:TD[5];
OnGameModeInit()
{
new Float: x = 146.0, Float: y = 156.0;
for(new i = 0; i < sizeof(TD); i++)
{
TD[i] = TextDrawCreate(x, y, "Text");
x += 10, y += 10;
}
}