How to properly write if else statements with multiple actions.
if I write it this way the code executes.
why do I sometimes see instructions in the if condition in quotes?
Where can I play the openBeken simulator in the Windows executable version.
Does it have some kind of syntax editor etc known from programming environments.
addEventHandler OnClick 14 backlog if $CH11>0 then POWER1 OFF; setChannel 11 0 else POWER1 ON; setChannel 11 15
if I write it this way the code executes.
alias warunekIF backlog POWER1 OFF; setChannel 11 0
alias warunekELSE backlog POWER1 ON; setChannel 11 15
addEventHandler OnClick 14 backlog if $CH11>0 then warunekIF else warunekELSE
why do I sometimes see instructions in the if condition in quotes?
Where can I play the openBeken simulator in the Windows executable version.
Does it have some kind of syntax editor etc known from programming environments.