I'm node-red stupid and need help

I have a plethora of problems. My largest is I have a gauge that I want to track the amount of hints given to someone (in an escape room) and I can't figure out how to progress the gauge by one with the click of a button.

the import data:

[{"id":"5e29b817.d4c428","type":"tab","label":"Escape Room","disabled":false,"info":"Contains elements related to the overall game flow; Timer, TV, Clues, etc."},{"id":"d25a80d0.08b9d","type":"ui_template","z":"5e29b817.d4c428","group":"491a180e.3ad668","name":"","order":0,"width":0,"height":0,"format":"\n    <span class=\"value\" style=\"color:{{msg.timeColour}}; font-size:xxx-large; text-align:center;\">\n        {{msg.formattedTimeRemaining}}\n    </span>","storeOutMessages":true,"fwdInMessages":true,"resendOnRefresh":true,"templateScope":"local","x":980,"y":280,"wires":[[]]},{"id":"b660c811.219ec8","type":"ui_text_input","z":"5e29b817.d4c428","name":"","label":"","tooltip":"","group":"62e6c708.07cc78","order":1,"width":0,"height":0,"passthru":false,"mode":"text","delay":300,"topic":"hint","topicType":"global","x":960,"y":400,"wires":[["536cdae1.f962e4"]]},{"id":"37eb3bf5.406924","type":"inject","z":"5e29b817.d4c428","name":"Setup","props":[{"p":"payload"},{"p":"topic","vt":"str"}],"repeat":"","crontab":"","once":true,"onceDelay":0.1,"topic":"","payload":"","payloadType":"date","x":300,"y":220,"wires":[["72f6f7a7.8c6728"]]},{"id":"cd10a7bf.5c6eb8","type":"inject","z":"5e29b817.d4c428","name":"loop","props":[{"p":"payload"},{"p":"topic","vt":"str"}],"repeat":"1","crontab":"","once":true,"onceDelay":0.1,"topic":"","payload":"","payloadType":"date","x":320,"y":280,"wires":[["1d12aea6.3bf661"]]},{"id":"72f6f7a7.8c6728","type":"change","z":"5e29b817.d4c428","name":"","rules":[{"t":"set","p":"gameState","pt":"global","to":"stopped","tot":"str"},{"t":"set","p":"timeRemaining","pt":"global","to":"3600000","tot":"num"},{"t":"set","p":"currentTime","pt":"global","to":"payload","tot":"msg"}],"action":"","property":"","from":"","to":"","reg":false,"x":470,"y":220,"wires":[[]]},{"id":"1d12aea6.3bf661","type":"function","z":"5e29b817.d4c428","name":"","func":"var currentTime = msg.payload;\nvar lastTickTime = global.get(\"lastTickTime\") || currentTime;\nvar timeRemaining = global.get(\"timeRemaining\") || 0;\nvar gameState = global.get(\"gameState\");\n\nif (gameState == \"playing\"){  \n\n    timeRemaining -= (currentTime - lastTickTime);\n\n    global.set(\"timeRemaining\",timeRemaining);\n}\n\nmsg.timeRemaining = timeRemaining;\nglobal.set(\"lastTickTime\",currentTime);\n\nnode.status({fill:\"green\",shape:\"dot\",text:timeRemaining});\n\n\nreturn msg;","outputs":1,"noerr":0,"initialize":"","finalize":"","x":490,"y":280,"wires":[["eb656b50.6333e8"]]},{"id":"89c67c42.7642a","type":"inject","z":"5e29b817.d4c428","name":"Play","props":[{"p":"payload"},{"p":"topic","vt":"str"}],"repeat":"","crontab":"","once":false,"onceDelay":0.1,"topic":"","payload":"","payloadType":"date","x":300,"y":380,"wires":[["ffa6754c.b97008"]]},{"id":"f6ab8768.d93698","type":"inject","z":"5e29b817.d4c428","name":"Stop","props":[{"p":"payload"},{"p":"topic","vt":"str"}],"repeat":"","crontab":"","once":false,"onceDelay":0.1,"topic":"","payload":"","payloadType":"date","x":290,"y":460,"wires":[["accfa413.995d88"]]},{"id":"ffa6754c.b97008","type":"change","z":"5e29b817.d4c428","name":"","rules":[{"t":"set","p":"gameState","pt":"global","to":"playing","tot":"str"}],"action":"","property":"","from":"","to":"","reg":false,"x":510,"y":380,"wires":[[]]},{"id":"accfa413.995d88","type":"change","z":"5e29b817.d4c428","name":"","rules":[{"t":"set","p":"gameState","pt":"global","to":"stopped","tot":"str"}],"action":"","property":"","from":"","to":"","reg":false,"x":520,"y":460,"wires":[[]]},{"id":"af5f575e.6c7688","type":"change","z":"5e29b817.d4c428","name":"","rules":[{"t":"set","p":"timeRemaining","pt":"global","to":"3600000","tot":"str"}],"action":"","property":"","from":"","to":"","reg":false,"x":530,"y":540,"wires":[[]]},{"id":"7a00753f.d49e0c","type":"inject","z":"5e29b817.d4c428","name":"Reset","props":[{"p":"payload"},{"p":"topic","vt":"str"}],"repeat":"","crontab":"","once":false,"onceDelay":0.1,"topic":"","payload":"","payloadType":"date","x":290,"y":540,"wires":[["af5f575e.6c7688"]]},{"id":"34647f99.9b66","type":"ui_text","z":"5e29b817.d4c428","group":"c6c81e60.c68ef","order":0,"width":"6","height":"3","name":"","label":"Time Remaining","format":"{{msg.formattedTimeRemaining}}","layout":"col-center","x":1020,"y":240,"wires":[]},{"id":"9a45cced.fd4a2","type":"ui_button","z":"5e29b817.d4c428","name":"","group":"c6c81e60.c68ef","order":1,"width":0,"height":0,"passthru":false,"label":"Start","tooltip":"","color":"black","bgcolor":"light green","icon":"","payload":"","payloadType":"str","topic":"topic","topicType":"msg","x":290,"y":340,"wires":[["ffa6754c.b97008"]]},{"id":"600f7eb9.fa218","type":"ui_button","z":"5e29b817.d4c428","name":"","group":"c6c81e60.c68ef","order":2,"width":0,"height":0,"passthru":false,"label":"Pause","tooltip":"","color":"black","bgcolor":"yellow","icon":"","payload":"","payloadType":"str","topic":"topic","topicType":"msg","x":280,"y":420,"wires":[["accfa413.995d88"]]},{"id":"bf7ebec8.db518","type":"ui_button","z":"5e29b817.d4c428","name":"","group":"c6c81e60.c68ef","order":3,"width":0,"height":0,"passthru":false,"label":"Reset","tooltip":"","color":"white","bgcolor":"black","icon":"","payload":"","payloadType":"str","topic":"topic","topicType":"msg","x":280,"y":500,"wires":[["af5f575e.6c7688"]]},{"id":"eb656b50.6333e8","type":"function","z":"5e29b817.d4c428","name":"Format time as hh:mm:ss","func":"\nvar t = msg.timeRemaining/ 1000;\nvar h = Math.floor(t/3600);\nvar m = Math.floor(t%3600 / 60);\nvar s = Math.floor(t%3600 % 60);\n\n// ensure leading zeros\nmsg.formattedTimeRemaining = (\"0\" + h).slice(-2) + \":\" + (\"0\" + m).slice(-2) + \":\" + (\"0\" + s).slice(-2);\n\n\n\nreturn msg;","outputs":1,"noerr":0,"initialize":"","finalize":"","x":730,"y":280,"wires":[["d25a80d0.08b9d","34647f99.9b66"]]},{"id":"536cdae1.f962e4","type":"ui_text_input","z":"5e29b817.d4c428","name":"","label":"{{msg.clue}}","tooltip":"","group":"491a180e.3ad668","order":0,"width":"6","height":"2","passthru":true,"mode":"text","delay":300,"topic":"clue","topicType":"msg","x":1120,"y":400,"wires":[["9ddd8302.b58ec"]]},{"id":"c459466b.a2c028","type":"ui_audio","z":"5e29b817.d4c428","name":"","group":"2bf34bb3.6727c4","voice":"","always":"","x":620,"y":940,"wires":[]},{"id":"bc8e30be.91fef","type":"inject","z":"5e29b817.d4c428","name":"Play","props":[{"p":"payload"},{"p":"topic","vt":"str"}],"repeat":"","crontab":"","once":false,"onceDelay":0.1,"topic":"","payload":"","payloadType":"date","x":390,"y":720,"wires":[["4e858e8d.69739"]]},{"id":"ef8666c0.50a118","type":"inject","z":"5e29b817.d4c428","name":"Stop","props":[{"p":"payload"},{"p":"topic","vt":"str"}],"repeat":"","crontab":"","once":false,"onceDelay":0.1,"topic":"","payload":"","payloadType":"date","x":370,"y":800,"wires":[["d2479b19.12efc8"]]},{"id":"4c29963e.f7aa58","type":"inject","z":"5e29b817.d4c428","name":"Reset","props":[{"p":"payload"},{"p":"topic","vt":"str"}],"repeat":"","crontab":"","once":false,"onceDelay":0.1,"topic":"","payload":"","payloadType":"date","x":380,"y":880,"wires":[["2bd1fbb3.b3eb84"]]},{"id":"1baba770.ec60e9","type":"ui_button","z":"5e29b817.d4c428","name":"","group":"3346acfc.8202b4","order":1,"width":0,"height":0,"passthru":false,"label":"Start","tooltip":"","color":"Black","bgcolor":"light green","icon":"","payload":"","payloadType":"str","topic":"topic","topicType":"msg","x":380,"y":680,"wires":[["4e858e8d.69739"]]},{"id":"8b7be3ba.68768","type":"ui_button","z":"5e29b817.d4c428","name":"","group":"3346acfc.8202b4","order":2,"width":0,"height":0,"passthru":false,"label":"Pause","tooltip":"","color":"Black","bgcolor":"Yellow","icon":"","payload":"","payloadType":"str","topic":"topic","topicType":"msg","x":370,"y":760,"wires":[["d2479b19.12efc8"]]},{"id":"33f12f47.0e565","type":"ui_button","z":"5e29b817.d4c428","name":"","group":"3346acfc.8202b4","order":3,"width":0,"height":0,"passthru":false,"label":"Reset","tooltip":"","color":"White","bgcolor":"Black","icon":"","payload":"","payloadType":"str","topic":"topic","topicType":"msg","x":370,"y":840,"wires":[["2bd1fbb3.b3eb84"]]},{"id":"4e858e8d.69739","type":"change","z":"5e29b817.d4c428","name":"","rules":[{"t":"set","p":"payload","pt":"msg","to":"","tot":"str"}],"action":"","property":"","from":"","to":"","reg":false,"x":630,"y":720,"wires":[[]]},{"id":"d2479b19.12efc8","type":"change","z":"5e29b817.d4c428","name":"","rules":[{"t":"set","p":"payload","pt":"msg","to":"","tot":"str"}],"action":"","property":"","from":"","to":"","reg":false,"x":640,"y":780,"wires":[[]]},{"id":"2bd1fbb3.b3eb84","type":"change","z":"5e29b817.d4c428","name":"","rules":[{"t":"set","p":"payload","pt":"msg","to":"","tot":"str"}],"action":"","property":"","from":"","to":"","reg":false,"x":640,"y":860,"wires":[[]]},{"id":"f3fe8e86.6c0e9","type":"comment","z":"5e29b817.d4c428","name":"Music","info":"","x":510,"y":640,"wires":[]},{"id":"7ab4cceb.6f3a64","type":"comment","z":"5e29b817.d4c428","name":"Timer","info":"","x":370,"y":180,"wires":[]},{"id":"66cf977d.4979d8","type":"comment","z":"5e29b817.d4c428","name":"Hint","info":"","x":890,"y":340,"wires":[]},{"id":"501bcd6b.46c1a4","type":"ui_form","z":"5e29b817.d4c428","name":"","label":"","group":"970bebfa.e5ca08","order":0,"width":0,"height":0,"options":[{"label":"Name","value":"Group Name","type":"text","required":true,"rows":null},{"label":"Time","value":"Time Remaining","type":"text","required":true,"rows":null},{"label":"Clues","value":"Clues Used","type":"number","required":true,"rows":null},{"label":"Date","value":"Date","type":"date","required":true,"rows":null},{"label":"Escaped?","value":"Did they escape?","type":"checkbox","required":true,"rows":null}],"formValue":{"Group Name":"","Time Remaining":"","Clues Used":"","Date":"","Did they escape?":false},"payload":"","submit":"submit","cancel":"cancel","topic":"topic","topicType":"msg","splitLayout":"","x":970,"y":700,"wires":[["6a40be50.95396"]]},{"id":"23051269.a5479e","type":"comment","z":"5e29b817.d4c428","name":"Leaderboard","info":"","x":960,"y":660,"wires":[]},{"id":"967b13ab.763dc","type":"ui_table","z":"5e29b817.d4c428","group":"fc893c6c.aaeff","name":"Leaderboard","order":1,"width":0,"height":0,"columns":[],"outputs":1,"cts":true,"x":1290,"y":700,"wires":[[]]},{"id":"6a40be50.95396","type":"ui_ui_control","z":"5e29b817.d4c428","name":"","events":"all","x":1120,"y":700,"wires":[["967b13ab.763dc"]]},{"id":"cf69cd12.a1fab","type":"file in","z":"5e29b817.d4c428","name":"","filename":"","format":"utf8","chunk":false,"sendError":false,"encoding":"none","x":490,"y":940,"wires":[["c459466b.a2c028"]]},{"id":"365b795d.91a556","type":"function","z":"5e29b817.d4c428","name":"","func":"\nreturn msg;","outputs":1,"noerr":0,"initialize":"","finalize":"","x":350,"y":940,"wires":[["cf69cd12.a1fab"]]},{"id":"452c4c7a.0bf3d4","type":"ui_button","z":"5e29b817.d4c428","name":"","group":"62e6c708.07cc78","order":0,"width":0,"height":0,"passthru":false,"label":"Hint 3","tooltip":"","color":"black","bgcolor":"red","icon":"","payload":"","payloadType":"str","topic":"hintCount","topicType":"msg","x":890,"y":540,"wires":[["3d90ee1a.918262"]]},{"id":"c07c0237.b25c1","type":"ui_button","z":"5e29b817.d4c428","name":"","group":"62e6c708.07cc78","order":2,"width":0,"height":0,"passthru":true,"label":"Hint 1","tooltip":"","color":"Black","bgcolor":"forest green","icon":"","payload":"payload","payloadType":"global","topic":"","topicType":"str","x":850,"y":460,"wires":[["a82f6540.efe2a8"]]},{"id":"45fc503.1b33db","type":"ui_button","z":"5e29b817.d4c428","name":"","group":"62e6c708.07cc78","order":3,"width":0,"height":0,"passthru":false,"label":"Hint 2","tooltip":"","color":"black","bgcolor":"yellow","icon":"","payload":"","payloadType":"str","topic":"hintCount","topicType":"msg","x":870,"y":500,"wires":[["66f7c5ae.6af9fc"]]},{"id":"f89884e2.c64778","type":"ui_gauge","z":"5e29b817.d4c428","name":"Hints allowed","group":"59b49b1a.fdf564","order":0,"width":0,"height":0,"gtype":"gage","title":"Hints Permitted","label":"","format":"Hints","min":"1","max":"3","colors":["#00b500","#e6e600","#ca3838"],"seg1":"","seg2":"2","x":1330,"y":520,"wires":[]},{"id":"bc54804.b359e8","type":"ui_button","z":"5e29b817.d4c428","name":"","group":"62e6c708.07cc78","order":7,"width":0,"height":0,"passthru":false,"label":"Reset","tooltip":"","color":"White","bgcolor":"Black","icon":"","payload":"","payloadType":"str","topic":"hintCount","topicType":"global","x":910,"y":580,"wires":[["4f3a2eec.b52f7"]]},{"id":"66f7c5ae.6af9fc","type":"change","z":"5e29b817.d4c428","name":"","rules":[{"t":"set","p":"hintCount","pt":"msg","to":"2","tot":"num"}],"action":"","property":"","from":"","to":"","reg":false,"x":1070,"y":500,"wires":[[]]},{"id":"3d90ee1a.918262","type":"change","z":"5e29b817.d4c428","name":"","rules":[{"t":"set","p":"hintCount","pt":"msg","to":"3","tot":"num"}],"action":"","property":"","from":"","to":"","reg":false,"x":1090,"y":540,"wires":[[]]},{"id":"4f3a2eec.b52f7","type":"change","z":"5e29b817.d4c428","name":"","rules":[{"t":"set","p":"hintCount","pt":"msg","to":"0","tot":"num"}],"action":"","property":"","from":"","to":"","reg":false,"x":1130,"y":580,"wires":[[]]},{"id":"9ddd8302.b58ec","type":"ui_template","z":"5e29b817.d4c428","group":"491a180e.3ad668","name":"","order":0,"width":0,"height":0,"format":"    <span class=\"me.item.value\" style=\"color:{{msg.clue}}; font-size:xxx-large; text-align:center;\">\n        {{msg.clue}}\n    </span>\n","storeOutMessages":true,"fwdInMessages":true,"resendOnRefresh":true,"templateScope":"local","x":1300,"y":400,"wires":[[]]},{"id":"a82f6540.efe2a8","type":"function","z":"5e29b817.d4c428","name":"","func":"IDK what i'm doing\nreturn msg;","outputs":1,"noerr":7,"initialize":"","finalize":"","x":1090,"y":460,"wires":[["f89884e2.c64778"]]},{"id":"491a180e.3ad668","type":"ui_group","name":"","tab":"f976c216.1eb41","order":1,"disp":true,"width":"6","collapse":false},{"id":"62e6c708.07cc78","type":"ui_group","name":"Clues","tab":"5c030594.084acc","order":2,"disp":true,"width":"6","collapse":false},{"id":"c6c81e60.c68ef","type":"ui_group","name":"Timer","tab":"5c030594.084acc","order":1,"disp":true,"width":"6","collapse":false},{"id":"2bf34bb3.6727c4","type":"ui_group","name":"Clues","tab":"f976c216.1eb41","order":2,"disp":true,"width":"6","collapse":false},{"id":"3346acfc.8202b4","type":"ui_group","name":"Music","tab":"5c030594.084acc","order":5,"disp":true,"width":"6","collapse":false},{"id":"970bebfa.e5ca08","type":"ui_group","name":"LeaderBoard","tab":"5c030594.084acc","order":3,"disp":true,"width":"6","collapse":false},{"id":"fc893c6c.aaeff","type":"ui_group","name":"Leaderboard","tab":"c79bed56.dc9bd","order":1,"disp":true,"width":"6","collapse":false},{"id":"59b49b1a.fdf564","type":"ui_group","name":"","tab":"f976c216.1eb41","order":3,"disp":true,"width":"6","collapse":false},{"id":"f976c216.1eb41","type":"ui_tab","name":"Escape Room","icon":"dashboard","order":2,"disabled":false,"hidden":false},{"id":"5c030594.084acc","type":"ui_tab","name":"Game Master","icon":"dashboard","disabled":false,"hidden":false},{"id":"c79bed56.dc9bd","type":"ui_tab","name":"LeaderBoard","icon":"dashboard","order":3,"disabled":false,"hidden":false}]

Hello and welcome to the forum

First lesson... Go back to your post and edit it so that your flow is formatted between the triple backticks.

Use the </> key in the editing panel.

[Note: I formated your flow]

as it is, you could just have a change node after each button setting msg.payload to 1, 2,3 or 4 and feed tat right to the gauge...BUT, what do you want to happen if someone press hint 1, then hint 2 then hint 1 again?

The Hint buttons could be disabled after each press... reenabled upon Reset

This could negate the need for a gauge to count the allowed hints as it becomes obvious to the player.

image

[{"id":"452c4c7a.0bf3d4","type":"ui_button","z":"5e29b817.d4c428","name":"","group":"62e6c708.07cc78","order":0,"width":0,"height":0,"passthru":false,"label":"Hint 3","tooltip":"","color":"black","bgcolor":"red","icon":"","payload":"","payloadType":"str","topic":"hintCount","topicType":"msg","x":670,"y":480,"wires":[["9a38440a.74c1c8","b50f15fb.ed1e68"]]},{"id":"c07c0237.b25c1","type":"ui_button","z":"5e29b817.d4c428","name":"","group":"62e6c708.07cc78","order":2,"width":0,"height":0,"passthru":false,"label":"Hint 1","tooltip":"","color":"Black","bgcolor":"forest green","icon":"","payload":"payload","payloadType":"global","topic":"","topicType":"str","x":670,"y":280,"wires":[["769adfdf.ddd37","d8c40aee.9231b8"]]},{"id":"45fc503.1b33db","type":"ui_button","z":"5e29b817.d4c428","name":"","group":"62e6c708.07cc78","order":3,"width":0,"height":0,"passthru":false,"label":"Hint 2","tooltip":"","color":"black","bgcolor":"yellow","icon":"","payload":"","payloadType":"str","topic":"hintCount","topicType":"msg","x":670,"y":380,"wires":[["a2bf12a4.d06ec","f6507e13.28ec5"]]},{"id":"bc54804.b359e8","type":"ui_button","z":"5e29b817.d4c428","name":"","group":"62e6c708.07cc78","order":7,"width":0,"height":0,"passthru":false,"label":"Reset","tooltip":"","color":"White","bgcolor":"Black","icon":"","payload":"","payloadType":"str","topic":"hintCount","topicType":"global","x":670,"y":580,"wires":[["fb14b33.c62f05"]]},{"id":"a2bf12a4.d06ec","type":"change","z":"5e29b817.d4c428","name":"msg.enabled FALSE","rules":[{"t":"set","p":"enabled","pt":"msg","to":"false","tot":"bool"}],"action":"","property":"","from":"","to":"","reg":false,"x":720,"y":340,"wires":[["45fc503.1b33db"]]},{"id":"9a38440a.74c1c8","type":"change","z":"5e29b817.d4c428","name":"msg.enabled FALSE","rules":[{"t":"set","p":"enabled","pt":"msg","to":"false","tot":"bool"}],"action":"","property":"","from":"","to":"","reg":false,"x":720,"y":440,"wires":[["452c4c7a.0bf3d4"]]},{"id":"769adfdf.ddd37","type":"change","z":"5e29b817.d4c428","name":"msg.enabled FALSE","rules":[{"t":"set","p":"enabled","pt":"msg","to":"false","tot":"bool"}],"action":"","property":"","from":"","to":"","reg":false,"x":720,"y":240,"wires":[["c07c0237.b25c1"]]},{"id":"fb14b33.c62f05","type":"change","z":"5e29b817.d4c428","name":"msg.enabled TRUE","rules":[{"t":"set","p":"enabled","pt":"msg","to":"true","tot":"bool"}],"action":"","property":"","from":"","to":"","reg":false,"x":710,"y":540,"wires":[["452c4c7a.0bf3d4","45fc503.1b33db","c07c0237.b25c1"]]},{"id":"d8c40aee.9231b8","type":"function","z":"5e29b817.d4c428","name":"Do something","func":"\nreturn msg;","outputs":1,"noerr":0,"initialize":"","finalize":"","libs":[],"x":840,"y":280,"wires":[[]]},{"id":"f6507e13.28ec5","type":"function","z":"5e29b817.d4c428","name":"Do something","func":"\nreturn msg;","outputs":1,"noerr":0,"initialize":"","finalize":"","libs":[],"x":840,"y":380,"wires":[[]]},{"id":"b50f15fb.ed1e68","type":"function","z":"5e29b817.d4c428","name":"Do something","func":"\nreturn msg;","outputs":1,"noerr":0,"initialize":"","finalize":"","libs":[],"x":840,"y":480,"wires":[[]]},{"id":"62e6c708.07cc78","type":"ui_group","name":"Clues","tab":"5c030594.084acc","order":2,"disp":true,"width":"6","collapse":false},{"id":"5c030594.084acc","type":"ui_tab","name":"Game Master","icon":"dashboard","disabled":false,"hidden":false}]

that may put you into a loop. When you press button 'Hint 1' it will 'Do something' AND send a msg to 'msg enabled False' which will send a msg to button 'Hint 1' which will send a msg...

You need to uncheck the If msg arrives on input, emulate a button click: option in the buttons

I thought I did? It has been working fine for me whilst I play around with gauge options.

It looked like button 1 had it on.

try this:

[ { "id": "452c4c7a.0bf3d4", "type": "ui_button", "z": "5e29b817.d4c428", "name": "", "group": "62e6c708.07cc78", "order": 4, "width": 0, "height": 0, "passthru": false, "label": "Hint 3", "tooltip": "", "color": "black", "bgcolor": "red", "icon": "", "payload": "", "payloadType": "str", "topic": "hintCount", "topicType": "msg", "x": 990, "y": 660, "wires": [ [ "3d90ee1a.918262", "f814920.2215df" ] ] }, { "id": "c07c0237.b25c1", "type": "ui_button", "z": "5e29b817.d4c428", "name": "", "group": "62e6c708.07cc78", "order": 2, "width": 0, "height": 0, "passthru": false, "label": "Hint 1", "tooltip": "", "color": "Black", "bgcolor": "forest green", "icon": "", "payload": "payload", "payloadType": "global", "topic": "", "topicType": "str", "x": 990, "y": 460, "wires": [ [ "caa3104c.9c701", "a43d78f0.af7018" ] ] }, { "id": "45fc503.1b33db", "type": "ui_button", "z": "5e29b817.d4c428", "name": "", "group": "62e6c708.07cc78", "order": 3, "width": 0, "height": 0, "passthru": false, "label": "Hint 2", "tooltip": "", "color": "black", "bgcolor": "yellow", "icon": "", "payload": "", "payloadType": "str", "topic": "hintCount", "topicType": "msg", "x": 990, "y": 560, "wires": [ [ "66f7c5ae.6af9fc", "26afc572.e6958a" ] ] }, { "id": "f89884e2.c64778", "type": "ui_gauge", "z": "5e29b817.d4c428", "name": "Hints allowed", "group": "59b49b1a.fdf564", "order": 0, "width": 0, "height": 0, "gtype": "gage", "title": "Hints Permitted", "label": "", "format": "Hints", "min": "0", "max": "3", "colors": [ "#00b500", "#e6e600", "#ca3838" ], "seg1": "", "seg2": "2", "x": 1560, "y": 600, "wires": [] }, { "id": "bc54804.b359e8", "type": "ui_button", "z": "5e29b817.d4c428", "name": "", "group": "62e6c708.07cc78", "order": 5, "width": 0, "height": 0, "passthru": false, "label": "Reset", "tooltip": "", "color": "White", "bgcolor": "Black", "icon": "", "payload": "", "payloadType": "str", "topic": "hintCount", "topicType": "global", "x": 990, "y": 760, "wires": [ [ "4f3a2eec.b52f7", "53bffb36.43e12c" ] ] }, { "id": "66f7c5ae.6af9fc", "type": "change", "z": "5e29b817.d4c428", "name": "", "rules": [ { "t": "set", "p": "payload", "pt": "msg", "to": "2", "tot": "num" } ], "action": "", "property": "", "from": "", "to": "", "reg": false, "x": 1220, "y": 560, "wires": [ [ "f89884e2.c64778" ] ] }, { "id": "3d90ee1a.918262", "type": "change", "z": "5e29b817.d4c428", "name": "", "rules": [ { "t": "set", "p": "payload", "pt": "msg", "to": "3", "tot": "num" } ], "action": "", "property": "", "from": "", "to": "", "reg": false, "x": 1220, "y": 660, "wires": [ [ "f89884e2.c64778" ] ] }, { "id": "4f3a2eec.b52f7", "type": "change", "z": "5e29b817.d4c428", "name": "", "rules": [ { "t": "set", "p": "payload", "pt": "msg", "to": "0", "tot": "num" } ], "action": "", "property": "", "from": "", "to": "", "reg": false, "x": 1220, "y": 760, "wires": [ [ "f89884e2.c64778" ] ] }, { "id": "caa3104c.9c701", "type": "change", "z": "5e29b817.d4c428", "name": "", "rules": [ { "t": "set", "p": "payload", "pt": "msg", "to": "1", "tot": "num" } ], "action": "", "property": "", "from": "", "to": "", "reg": false, "x": 1220, "y": 460, "wires": [ [ "f89884e2.c64778" ] ] }, { "id": "a43d78f0.af7018", "type": "change", "z": "5e29b817.d4c428", "name": "msg.enabled FALSE", "rules": [ { "t": "set", "p": "enabled", "pt": "msg", "to": "false", "tot": "bool" } ], "action": "", "property": "", "from": "", "to": "", "reg": false, "x": 1240, "y": 500, "wires": [ [ "c07c0237.b25c1" ] ] }, { "id": "26afc572.e6958a", "type": "change", "z": "5e29b817.d4c428", "name": "msg.enabled FALSE", "rules": [ { "t": "set", "p": "enabled", "pt": "msg", "to": "false", "tot": "bool" } ], "action": "", "property": "", "from": "", "to": "", "reg": false, "x": 1240, "y": 600, "wires": [ [ "45fc503.1b33db" ] ] }, { "id": "f814920.2215df", "type": "change", "z": "5e29b817.d4c428", "name": "msg.enabled FALSE", "rules": [ { "t": "set", "p": "enabled", "pt": "msg", "to": "false", "tot": "bool" } ], "action": "", "property": "", "from": "", "to": "", "reg": false, "x": 1240, "y": 700, "wires": [ [ "452c4c7a.0bf3d4" ] ] }, { "id": "53bffb36.43e12c", "type": "change", "z": "5e29b817.d4c428", "name": "msg.enabled TRUE", "rules": [ { "t": "set", "p": "enabled", "pt": "msg", "to": "true", "tot": "bool" } ], "action": "", "property": "", "from": "", "to": "", "reg": false, "x": 1230, "y": 800, "wires": [ [ "1d8673f8.6b3c3c" ] ] }, { "id": "1d8673f8.6b3c3c", "type": "link out", "z": "5e29b817.d4c428", "name": "", "links": [ "55c65d5.3966624", "ea62d568.cbeb5", "4cae31a1.d046f8" ], "x": 1375, "y": 800, "wires": [] }, { "id": "55c65d5.3966624", "type": "link in", "z": "5e29b817.d4c428", "name": "", "links": [ "1d8673f8.6b3c3c" ], "x": 855, "y": 460, "wires": [ [ "c07c0237.b25c1" ] ] }, { "id": "ea62d568.cbeb5", "type": "link in", "z": "5e29b817.d4c428", "name": "", "links": [ "1d8673f8.6b3c3c" ], "x": 855, "y": 560, "wires": [ [ "45fc503.1b33db" ] ] }, { "id": "4cae31a1.d046f8", "type": "link in", "z": "5e29b817.d4c428", "name": "", "links": [ "1d8673f8.6b3c3c" ], "x": 855, "y": 660, "wires": [ [ "452c4c7a.0bf3d4" ] ] }, { "id": "62e6c708.07cc78", "type": "ui_group", "name": "Clues", "tab": "5c030594.084acc", "order": 2, "disp": true, "width": "6", "collapse": false }, { "id": "59b49b1a.fdf564", "type": "ui_group", "name": "", "tab": "f976c216.1eb41", "order": 3, "disp": true, "width": "6", "collapse": false }, { "id": "5c030594.084acc", "type": "ui_tab", "name": "Game Master", "icon": "dashboard", "disabled": false, "hidden": false }, { "id": "f976c216.1eb41", "type": "ui_tab", "name": "Escape Room", "icon": "dashboard", "order": 2, "disabled": false, "hidden": false } ]```
1 Like

At least your gauge is displaying the proper data... however, if the user goes out of order, so does the gauge.

My attempt is simple incrementing... however, the gauge (or more likely my variable) is acting strange.
Hint 1 does nothing (well actually it seems to clear the value), Hint2 & 3 max out the gauge.
image

[{"id":"452c4c7a.0bf3d4","type":"ui_button","z":"5e29b817.d4c428","d":true,"name":"","group":"62e6c708.07cc78","order":0,"width":0,"height":0,"passthru":false,"label":"Hint 3","tooltip":"","color":"black","bgcolor":"red","icon":"","payload":"","payloadType":"str","topic":"payload","topicType":"msg","x":670,"y":480,"wires":[["9a38440a.74c1c8","b50f15fb.ed1e68"]]},{"id":"c07c0237.b25c1","type":"ui_button","z":"5e29b817.d4c428","d":true,"name":"","group":"62e6c708.07cc78","order":2,"width":0,"height":0,"passthru":false,"label":"Hint 1","tooltip":"","color":"Black","bgcolor":"forest green","icon":"","payload":"","payloadType":"str","topic":"payload","topicType":"msg","x":670,"y":280,"wires":[["769adfdf.ddd37","d8c40aee.9231b8"]]},{"id":"45fc503.1b33db","type":"ui_button","z":"5e29b817.d4c428","d":true,"name":"","group":"62e6c708.07cc78","order":3,"width":0,"height":0,"passthru":false,"label":"Hint 2","tooltip":"","color":"black","bgcolor":"yellow","icon":"","payload":"","payloadType":"str","topic":"payload","topicType":"msg","x":670,"y":380,"wires":[["a2bf12a4.d06ec","f6507e13.28ec5"]]},{"id":"f89884e2.c64778","type":"ui_gauge","z":"5e29b817.d4c428","d":true,"name":"Hints allowed","group":"62e6c708.07cc78","order":0,"width":0,"height":0,"gtype":"gage","title":"Hints Permitted","label":"","format":"{{hintcount}}","min":"0","max":"3","colors":["#00b500","#e6e600","#ca3838"],"seg1":"","seg2":"","x":1110,"y":420,"wires":[]},{"id":"bc54804.b359e8","type":"ui_button","z":"5e29b817.d4c428","d":true,"name":"","group":"62e6c708.07cc78","order":7,"width":0,"height":0,"passthru":false,"label":"Reset","tooltip":"","color":"White","bgcolor":"Black","icon":"","payload":"","payloadType":"str","topic":"payload","topicType":"msg","x":670,"y":580,"wires":[["fb14b33.c62f05","e30bb085.f9176"]]},{"id":"a2bf12a4.d06ec","type":"change","z":"5e29b817.d4c428","d":true,"name":"msg.enabled FALSE","rules":[{"t":"set","p":"enabled","pt":"msg","to":"false","tot":"bool"}],"action":"","property":"","from":"","to":"","reg":false,"x":720,"y":340,"wires":[["45fc503.1b33db"]]},{"id":"9a38440a.74c1c8","type":"change","z":"5e29b817.d4c428","d":true,"name":"msg.enabled FALSE","rules":[{"t":"set","p":"enabled","pt":"msg","to":"false","tot":"bool"}],"action":"","property":"","from":"","to":"","reg":false,"x":720,"y":440,"wires":[["452c4c7a.0bf3d4"]]},{"id":"769adfdf.ddd37","type":"change","z":"5e29b817.d4c428","d":true,"name":"msg.enabled FALSE","rules":[{"t":"set","p":"enabled","pt":"msg","to":"false","tot":"bool"}],"action":"","property":"","from":"","to":"","reg":false,"x":720,"y":240,"wires":[["c07c0237.b25c1"]]},{"id":"fb14b33.c62f05","type":"change","z":"5e29b817.d4c428","d":true,"name":"msg.enabled TRUE","rules":[{"t":"set","p":"enabled","pt":"msg","to":"true","tot":"bool"}],"action":"","property":"","from":"","to":"","reg":false,"x":710,"y":540,"wires":[["452c4c7a.0bf3d4","45fc503.1b33db","c07c0237.b25c1"]]},{"id":"d8c40aee.9231b8","type":"function","z":"5e29b817.d4c428","d":true,"name":"Increment Hint Count","func":"var hintcount = hintcount +1;\nreturn msg;","outputs":1,"noerr":0,"initialize":"","finalize":"","libs":[],"x":860,"y":280,"wires":[["f89884e2.c64778"]]},{"id":"f6507e13.28ec5","type":"function","z":"5e29b817.d4c428","d":true,"name":"Increment Hint Count","func":"var hintcount = hintcount +1;\nreturn msg;","outputs":1,"noerr":0,"initialize":"","finalize":"","libs":[],"x":860,"y":380,"wires":[["f89884e2.c64778"]]},{"id":"b50f15fb.ed1e68","type":"function","z":"5e29b817.d4c428","d":true,"name":"Increment Hint Count","func":"var hintcount = hintcount +1;\nreturn msg;","outputs":1,"noerr":0,"initialize":"","finalize":"","libs":[],"x":860,"y":480,"wires":[["f89884e2.c64778"]]},{"id":"e30bb085.f9176","type":"function","z":"5e29b817.d4c428","d":true,"name":"Clear Hint Count","func":"var hintcount = 0;\nreturn msg;","outputs":1,"noerr":0,"initialize":"","finalize":"","libs":[],"x":850,"y":580,"wires":[["f89884e2.c64778"]]},{"id":"62e6c708.07cc78","type":"ui_group","name":"Clues","tab":"5c030594.084acc","order":2,"disp":true,"width":"6","collapse":false},{"id":"5c030594.084acc","type":"ui_tab","name":"Game Master","icon":"dashboard","disabled":false,"hidden":false}]

Another possibility?
You can hit the buttons in any order but only see the hint and change the gauge if the hint hasn't been used.

[{"id":"562c987d51725725","type":"ui_button","z":"a66c4cd6b8070e2f","name":"","group":"b8e5da905d0a4650","order":4,"width":0,"height":0,"passthru":false,"label":"Hint 3","tooltip":"","color":"black","bgcolor":"red","icon":"","payload":"","payloadType":"str","topic":"hintCount","topicType":"msg","x":110,"y":300,"wires":[["b5a0478ef9e2e67f"]]},{"id":"5af263e9872b483c","type":"ui_button","z":"a66c4cd6b8070e2f","name":"","group":"b8e5da905d0a4650","order":2,"width":0,"height":0,"passthru":true,"label":"Hint 1","tooltip":"","color":"Black","bgcolor":"forest green","icon":"","payload":"payload","payloadType":"global","topic":"","topicType":"str","x":110,"y":220,"wires":[["8f8317d086418afd"]]},{"id":"a66b8edca3ff7233","type":"ui_button","z":"a66c4cd6b8070e2f","name":"","group":"b8e5da905d0a4650","order":3,"width":0,"height":0,"passthru":false,"label":"Hint 2","tooltip":"","color":"black","bgcolor":"yellow","icon":"","payload":"","payloadType":"str","topic":"hintCount","topicType":"msg","x":110,"y":260,"wires":[["885f5bb4b8cecb2b"]]},{"id":"2afa11eaee08057b","type":"ui_gauge","z":"a66c4cd6b8070e2f","name":"Hints left","group":"b8e5da905d0a4650","order":5,"width":0,"height":0,"gtype":"gage","title":"Hints Permitted","label":"","format":"Hints","min":"0","max":"3","colors":["#ff0000","#e6e600","#00ff40"],"seg1":"","seg2":"2","x":540,"y":120,"wires":[]},{"id":"7fd6395cd51102e2","type":"inject","z":"a66c4cd6b8070e2f","name":"Setup","props":[{"p":"payload"}],"repeat":"","crontab":"","once":true,"onceDelay":0.1,"topic":"","payloadType":"date","x":120,"y":60,"wires":[["d4b87502c1a6392d"]]},{"id":"d8337a6e1b6bb00f","type":"change","z":"a66c4cd6b8070e2f","name":"Define hints","rules":[{"t":"set","p":"hintsleft","pt":"flow","to":"3","tot":"num"},{"t":"set","p":"hints","pt":"flow","to":"{\"hint1\":\"Venus and Mars\",\"hint2\":\"Eat Cookies\",\"hint3\":\"Another hint\"}","tot":"json"},{"t":"set","p":"payload","pt":"msg","to":"hintsleft","tot":"flow"},{"t":"set","p":"thishint","pt":"msg","to":"","tot":"str"}],"action":"","property":"","from":"","to":"","reg":false,"x":550,"y":60,"wires":[["2afa11eaee08057b","95e4c012f4491792"]]},{"id":"a9b423f1be77ca3a","type":"function","z":"a66c4cd6b8070e2f","name":"Decrement counter","func":"var hintsleft = flow.get('hintsleft') -1;\nflow.set('hintsleft', hintsleft);\nmsg.payload = hintsleft;\nreturn msg;","outputs":1,"noerr":0,"initialize":"","finalize":"","libs":[],"x":570,"y":180,"wires":[["2afa11eaee08057b"]]},{"id":"95e4c012f4491792","type":"ui_text","z":"a66c4cd6b8070e2f","group":"b8e5da905d0a4650","order":1,"width":0,"height":0,"name":"","label":"Hint","format":"{{msg.thishint}}","layout":"row-spread","x":830,"y":60,"wires":[]},{"id":"181dc2101d325636","type":"change","z":"a66c4cd6b8070e2f","name":"Show this hint","rules":[{"t":"set","p":"thishint","pt":"msg","to":"hints.hint1","tot":"flow"},{"t":"set","p":"hints.hint1","pt":"flow","to":"used","tot":"str"}],"action":"","property":"","from":"","to":"","reg":false,"x":560,"y":220,"wires":[["95e4c012f4491792"]]},{"id":"241716dd81672ae8","type":"change","z":"a66c4cd6b8070e2f","name":"Show this hint","rules":[{"t":"set","p":"thishint","pt":"msg","to":"hints.hint2","tot":"flow"},{"t":"set","p":"hints.hint2","pt":"flow","to":"used","tot":"str"}],"action":"","property":"","from":"","to":"","reg":false,"x":560,"y":260,"wires":[["95e4c012f4491792"]]},{"id":"e879041d592df4e5","type":"change","z":"a66c4cd6b8070e2f","name":"Show this hint","rules":[{"t":"set","p":"thishint","pt":"msg","to":"hints.hint3","tot":"flow"},{"t":"set","p":"hints.hint3","pt":"flow","to":"used","tot":"str"}],"action":"","property":"","from":"","to":"","reg":false,"x":560,"y":300,"wires":[["95e4c012f4491792"]]},{"id":"8f8317d086418afd","type":"switch","z":"a66c4cd6b8070e2f","name":"Hint available?","property":"hints.hint1","propertyType":"flow","rules":[{"t":"neq","v":"used","vt":"str"}],"checkall":"true","repair":false,"outputs":1,"x":300,"y":220,"wires":[["181dc2101d325636","a9b423f1be77ca3a"]]},{"id":"b5a0478ef9e2e67f","type":"switch","z":"a66c4cd6b8070e2f","name":"Hint available?","property":"hints.hint3","propertyType":"flow","rules":[{"t":"neq","v":"used","vt":"str"}],"checkall":"true","repair":false,"outputs":1,"x":300,"y":300,"wires":[["e879041d592df4e5","a9b423f1be77ca3a"]]},{"id":"885f5bb4b8cecb2b","type":"switch","z":"a66c4cd6b8070e2f","name":"Hint available?","property":"hints.hint2","propertyType":"flow","rules":[{"t":"neq","v":"used","vt":"str"}],"checkall":"true","repair":false,"outputs":1,"x":300,"y":260,"wires":[["241716dd81672ae8","a9b423f1be77ca3a"]]},{"id":"d4b87502c1a6392d","type":"ui_button","z":"a66c4cd6b8070e2f","name":"","group":"b8e5da905d0a4650","order":4,"width":0,"height":0,"passthru":true,"label":"Reset","tooltip":"","color":"white","bgcolor":"black","icon":"","payload":"","payloadType":"str","topic":"hintCount","topicType":"msg","x":270,"y":60,"wires":[["d8337a6e1b6bb00f"]]},{"id":"b8e5da905d0a4650","type":"ui_group","name":"Demo","tab":"b52c7efe31b9abbe","order":1,"disp":true,"width":"6","collapse":false},{"id":"b52c7efe31b9abbe","type":"ui_tab","name":"Demo","icon":"dashboard","disabled":false,"hidden":false}]

Nice!

But the real question is... have any of use escaped this room yet? :laughing:

Using your logic, there should just be one hint button that increments the hint and when you get to three you get no more.

But this is something for @Jackob25 to decide and we don’t know if the platers will be pressing the hint button or the game master.

So the Game Masters will be using this hint system to communicate the amount of hints used. I'm not sure what exactly I did wrong before but your (zenofmud) system worked perfectly! Thank you. Now that the system is up and running I just gotta get it to look good and then can work on the other things (leaderboard mechanism and audio player).

Here is a thought for you. Create a second NR flow on a second device that will have a dashboard for the players. On this dashboard they could request a hint.

When they do, it sent the request via MQTT to the game-masters node-red. It in turn sends back the hint and alerts them to how many hints they have left.

This way, the players could use a phone to get to the dashboard and see the count down timer and how many hints they have left and they couldn’t get the the game-masters flow that is controlling everything.

I would love that, but we don't have access to any MQTT tools. This is all being thrown through an HDMI connection to a TV. I'd love to have a button they'd press that communicated that they need a hint, any suggestions are certainly welcomed.

What platform are you running on?
I’ve installed mosquito on a pi zero w and use it to transfer messages from arduino, pi’s and my Mac and NR comes with mqtt in and out nodes! I even use an external broker to send and receive data from a friend in the UK.

It takes a little bit to learn mqtt but once you do you will wonder why you didn’t know about it a long time ago.

My most used use of it is to control a coffee pot. I have a SonOff S20 switchable plug that I put EspEasy on and have a flow set up with a dashboard. When I wake in the morning I open my phone and press the coffee cup icon that is on the dashboard and it sends a mqtt message to the switch and it turns on the coffee pot and a 20 minute timer. At the end of the 20 minutes, it turns off the switch/coffee pot. No more baked coffee on the bottom of the pot.

Many, many node-red users use mqtt so there are a lot of people that can help you out if you get stuck.

There are many ways I can think of accomplishing this depending on how much effort you want to put into it and how much you want to learn and the timeframe for getting it done. Of course you could create multiple iterations as time goes by.

Personally, I would use two pi’s one being the controller that the game master would access and the other would be use to present a dashboard to the players. The players would use a smart phone to access the dashboard and you would have the ‘hint’ button, a text block to display the hint and a timer showing them how much time they have.

You would install. Mosquitto on the game-masters pi. (With mqtt you have a broker and clients. Clients can publish messages (with a topic) and subscribe to different topics.) so the player pi would publish a message (using an mqtt-out node) with the topic ‘help’ and would have a mqtt-in node subscribed to a topic of ‘hint’.

Meanwhile< the game master pi would have an mqtt-in node subscribed to the topic ‘help’ and would publish messages using the topic ‘hint’

When the player presses the hint button player pi’s flow would publish a msg using the topic ‘help’.

The mqtt broker would see that message and look to see if anyone was subscribed to it. When is sees the game master pi has subscribed, it will send the message to it.

The game masters NR mqtt-in node is sitting there waiting and suddenly it receives a message so it pass it on in the flow. Your brilliant code will grab the next hint and increment the hint counter and publish them using the topic ‘hint’

The broker gets the message and looks to see if anyone is subscribed to the topic ‘hint’ and sees the players NR is subscribed to it so it shoots off the message to it.

The players NR mqtt-in node receives the message and your outstanding code sends the hint to the text node on the dashboard and the player sees it show up on their phone.

That is a high level view of how I would do it. Just remember to start small and get it working, then you can add in the bells and whistles.

And remember to make backups of your flows so when you make a mistake you can go back to the prior version and start over.

I know you have your solution on this, but here is my final interpretation of a possible method... I didn't want to waste it :stuck_out_tongue:

You can't pick the hints out of order, nor click same button more than once.

image

[{"id":"66cf977d.4979d8","type":"comment","z":"5e29b817.d4c428","name":"Clues","info":"","x":130,"y":60,"wires":[]},{"id":"452c4c7a.0bf3d4","type":"ui_button","z":"5e29b817.d4c428","name":"","group":"62e6c708.07cc78","order":7,"width":0,"height":0,"passthru":false,"label":"Hint 3","tooltip":"","color":"black","bgcolor":"#FF0000","icon":"","payload":"0","payloadType":"num","topic":"hintcount","topicType":"msg","x":130,"y":340,"wires":[["9a38440a.74c1c8","f89884e2.c64778"]]},{"id":"c07c0237.b25c1","type":"ui_button","z":"5e29b817.d4c428","name":"","group":"62e6c708.07cc78","order":2,"width":0,"height":0,"passthru":false,"label":"Hint 1","tooltip":"","color":"Black","bgcolor":"#00FF00","icon":"","payload":"2","payloadType":"num","topic":"hintcount","topicType":"msg","x":130,"y":100,"wires":[["769adfdf.ddd37","77152b59.32b984","f89884e2.c64778"]]},{"id":"45fc503.1b33db","type":"ui_button","z":"5e29b817.d4c428","name":"","group":"62e6c708.07cc78","order":4,"width":0,"height":0,"passthru":false,"label":"Hint 2","tooltip":"","color":"black","bgcolor":"#E69D00","icon":"","payload":"1","payloadType":"num","topic":"hintcount","topicType":"msg","x":130,"y":220,"wires":[["a2bf12a4.d06ec","3a767ab3.986fb6","f89884e2.c64778"]]},{"id":"f89884e2.c64778","type":"ui_gauge","z":"5e29b817.d4c428","name":"Hints Remaining","group":"62e6c708.07cc78","order":10,"width":0,"height":0,"gtype":"gage","title":"Hints Remaining","label":"","format":"{{value}}","min":"0","max":"3","colors":["#ff0000","#e69d00","#00ff00"],"seg1":"1","seg2":"2","x":460,"y":280,"wires":[]},{"id":"bc54804.b359e8","type":"ui_button","z":"5e29b817.d4c428","name":"","group":"62e6c708.07cc78","order":8,"width":0,"height":0,"passthru":false,"label":"Reset","tooltip":"","color":"White","bgcolor":"Black","icon":"","payload":"3","payloadType":"num","topic":"hintcount","topicType":"msg","x":130,"y":460,"wires":[["fb14b33.c62f05","f89884e2.c64778"]]},{"id":"a2bf12a4.d06ec","type":"change","z":"5e29b817.d4c428","name":"msg.enabled FALSE","rules":[{"t":"set","p":"enabled","pt":"msg","to":"false","tot":"bool"}],"action":"","property":"","from":"","to":"","reg":false,"x":180,"y":260,"wires":[["45fc503.1b33db"]]},{"id":"9a38440a.74c1c8","type":"change","z":"5e29b817.d4c428","name":"msg.enabled FALSE","rules":[{"t":"set","p":"enabled","pt":"msg","to":"false","tot":"bool"}],"action":"","property":"","from":"","to":"","reg":false,"x":180,"y":380,"wires":[["452c4c7a.0bf3d4"]]},{"id":"769adfdf.ddd37","type":"change","z":"5e29b817.d4c428","name":"msg.enabled FALSE","rules":[{"t":"set","p":"enabled","pt":"msg","to":"false","tot":"bool"}],"action":"","property":"","from":"","to":"","reg":false,"x":180,"y":140,"wires":[["c07c0237.b25c1"]]},{"id":"fb14b33.c62f05","type":"change","z":"5e29b817.d4c428","name":"msg.enabled TRUE","rules":[{"t":"set","p":"enabled","pt":"msg","to":"true","tot":"bool"}],"action":"","property":"","from":"","to":"","reg":false,"x":170,"y":420,"wires":[["c07c0237.b25c1","a2bf12a4.d06ec","9a38440a.74c1c8"]]},{"id":"3a767ab3.986fb6","type":"change","z":"5e29b817.d4c428","name":"msg.enabled TRUE","rules":[{"t":"set","p":"enabled","pt":"msg","to":"true","tot":"bool"}],"action":"","property":"","from":"","to":"","reg":false,"x":170,"y":300,"wires":[["452c4c7a.0bf3d4"]]},{"id":"77152b59.32b984","type":"change","z":"5e29b817.d4c428","name":"msg.enabled TRUE","rules":[{"t":"set","p":"enabled","pt":"msg","to":"true","tot":"bool"}],"action":"","property":"","from":"","to":"","reg":false,"x":170,"y":180,"wires":[["45fc503.1b33db"]]},{"id":"62e6c708.07cc78","type":"ui_group","name":"Clues","tab":"5c030594.084acc","order":2,"disp":true,"width":"6","collapse":false},{"id":"5c030594.084acc","type":"ui_tab","name":"Game Master","icon":"dashboard","disabled":false,"hidden":false}]
1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.