Hey,
Does anyone have some suggestions to alternate a boolean result?
Currently I use something this:
But I would like to alternate a true and false (camera north and south).Simba Code:minimap.clickCompass(random(2));
I suppose I could store it globally? But unsure how to do it without using 10+ lines.
Ended up using this:
Simba Code:minimap.clickCompass(Compass);
if Compass then
Compass := false
else
compass := true;

