Posts: 109
Threads: 19
Joined: Jun 2015
Reputation:
0
i saw this function in other programming tools but i don't know how it work in pawno
any help?
'For'
Posts: 455
Threads: 29
Joined: Apr 2014
you use 'for', for looping throw array or create some amount of elements.
for(new i; i < 100; i++) //it will loop to 99 and then it will stop. At same time, looping gives values to i like 1,2,3,4,5 etc.