- Joined
- Sep 19, 2006
- Messages
- 152
Consider the following 2 fictitious triggers:
and
Is there any resource-difference between determining if "a" is equal to 11 and determining if "a" is greater than 10?
JASS:
set a = 1
loop
exitwhen a == 11
call (blah, blah, blah)
set a = a + 1
endloop
and
JASS:
set a = 1
loop
exitwhen a > 10
call (blah, blah, blah)
set a = a + 1
endloop
Is there any resource-difference between determining if "a" is equal to 11 and determining if "a" is greater than 10?