that line says that
Code:
IF
~button //if the button has changed, try it witout this line to see the effect
& //last condition and next condition are true
button //button is logical true (i.e. 1, 0 being false)
THEN:
concmd('say hello') //Run console command 'say hello', which makes you say hello in the chat in english, it means: if the button has changed and it is putting out a 1, then run console command 'say hello'
if you want an entire expression:
Code:
N@Hello
I@Button
O@Dummy
~button&button -> concmd('say Hello') Please note that the Dummy output isn't used, but the expression chip will have a heartattack if there is no output.
Bookmarks