Chaosy
Tutorial Reviewer
- Joined
- Jun 9, 2011
- Messages
- 13,219
1. I have seen a few scripts using private nad public stuff is that a big deal? example why use private integer i insted of integer i. also public integer must be the most pointless line ever since it's allready global no need to make it public? (if it aint a local variable ofc)
I know that a private only works within the block but when is that something importment?
2. can i set loop speed into jass? Id want something like
that would be supposed to loop every second (1.00) is there something like that in jass or do I need to use a loop event for that?
I know that a private only works within the block but when is that something importment?
2. can i set loop speed into jass? Id want something like
JASS:
loop 1.00
exitwhen i = 10
set i = i +1
endloop
that would be supposed to loop every second (1.00) is there something like that in jass or do I need to use a loop event for that?