Just a heads-up to anyone interested that I'm working on moving the borg.txt file away from RPN notation to infix notation. So lines like:
the config can look something a bit more like:
Dunno when I'll be done. I should probably be spending time in 3.1.1 beta instead...
Code:
744 # ((max_level >= 30) || ((ccw+csw) >= 2)) 745 FORMULA000=_CLEVEL 30 >= _ACCW _ACSW + 2 >= || 746 # ((max_level >= 30) || ((ccw+csw) >= 3)) 747 FORMULA001=_CLEVEL 30 >= _ACCW _ACSW + 3 >= ||
Code:
745 FORMULA000 = (_CLEVEL >= 30) || (_ACCW + _ACSW) >= 2 747 FORMULA001 = (_CLEVEL >= 30) || (_ACCW + _ACSW) >= 3
Comment