29.09.2013, 20:19
Today I learned how to craete an "inverted" loop by that I mean it starts for example from 300 and goes down.
pawn Код:
for(new i=2;i<13;i++)
{
format(FdStr[i-12],55,"%s",FdStr[i-11]);
TextDrawSetString(FeedBox[i-12],FdStr[i-12]);
}