Hi there,
1) does that leak:
2) How to do multiple conditions in a "if" with booleans, since And() only works for boolexpr.
1) does that leak:
JASS:
set tempu = RandomUnit(...)
set newu = AnotherRandomUnit(...)
...
set tempu = newu // in fact here i dont know if i should null tempu before i assign another value to it.
...
set newu = null
set tempu = null
2) How to do multiple conditions in a "if" with booleans, since And() only works for boolexpr.