08.12.2013, 12:05
(
Последний раз редактировалось Nero_3D; 08.12.2013 в 18:41.
)
Pretty simple code which puts a textdraw in each row
Maybe someone can reproduce this ?, and show me if he gets 480 canvas
pawn Код:
new
Text: gText
;
public OnFilterScriptInit() {
for(new i, tmp[8] = "~r~"; i != 480; ++i) {
valstr(tmp[3], i, false);
gText = TextDrawCreate((i * 31) % 620 + 20, i, tmp);
TextDrawLetterSize(gText, 0.20, 0.70);
TextDrawAlignment(gText, 2);
TextDrawSetOutline(gText, 1);
TextDrawFont(gText, 1);
TextDrawShowForAll(gText);
}
}
public OnFilterScriptExit() {
for(new i; i != 480; ++i) {
TextDrawDestroy(gText - Text: i);
}
}