En till: https://tipsrundan.se/

FluxGameNG aka. mapque.st

Views

Game is strucured as JSON

See: Old Flux for inspiration

Question

Answer

Game state

Answer actions

Sample

questions: [
    {
    	id: 1,
        state: "active", 
    	location: {
            latitude: "lat",
            longitude: "long",
            visible: true,
        }
    	: 20,
    	activation-radius: 20,
    	question: "Is markdown supported?"
    	answers: [
    		{
    			option-text: "yes",
    			action: {
    				kind: "activate"
    				question: 2,
    			},
                        message: "yes, of course it is ...",
    		},
    		{
    			option-text: "no",
    			action: {},
    		},
    	],
    },
    {
    	id: 2,
    	question: "Yes of course. Lets continue ..."
    	answers: [
    		{
    			option-text: "yes",
    			action: {
    				kind: "show"
    				question: 3,
    			},
    		},
    	],
    },
    ...
]

Open questions

Names

QuizQuest

References