18.11.2013, 17:38
You don't need to create extra variable for the cords.
pawn Код:
new Text:TD[5];
public OnGameModeInit()
{
new Float: x, Float: y;
for(new i = 0; i < sizeof(TD); i++)
{
TD[i] = TextDrawCreate(156.0, 166.0, "Text");
}
return 1;
}

