- Joined
- Dec 16, 2017
- Messages
- 320
- Reaction score
- 1,380
- First Language
- English
- Primarily Uses
- RMMZ
Mods, not sure if this is the right place to post this request.
I'm looking for help with developing a question database builder for this plugin:
forums.rpgmakerweb.com
The gist is, I want to be able to read out / display from a list of JSON objects, edit those fields, and then save the updated version of the question database.
Example:
There's more detailed information on the plugin page. I currently have a primitive question builder system that uses forms to build the individual questions -- the user then has to manually insert each question object into the database file. I want to streamline and improve this for ease of use.
Wishlist:
1. Someone who would make a tool that does what I mentioned above.
2. Failing that, someone who can help point me in the right direction on how to proceed with making such a tool. I have limited JS experience beyond making a few plugins, but am happy to learn.
I'm looking for help with developing a question database builder for this plugin:
MZQuizzer - Quiz Engine Plugin
MZQuizzer v0.5 by Starbird Basic Quiz Engine for RPG Maker MZ. This is a replacement for the MVQuizzer plugin, which is no longer supported. Note: This plugin is NOT plug-and-play, but it is fairly simple. Detailed instructions are included and no technical knowledge is necessary beyond what...

The gist is, I want to be able to read out / display from a list of JSON objects, edit those fields, and then save the updated version of the question database.
Example:
JavaScript:
var questionDatabase = {"Questions" : [
{"Note":"Question 2 - multiple choice with picture ",
"GUID":"MZQ-8b3e-168b-c65d",
"E":0,
"Q_T":4
,"Q":"What is the name of a shape that has three sides?",
"T":0,
"I":1,
"A":0,
"C_A":"Triangle",
"A2":"Square",
"A2_Why":"A square has four sides, not three.",
"A3":"Pentagon",
"A3_Why":"A pentagon has five sides, not three.",
"A4":"Hexagon",
"A4_Why":"A Hexagon has six sides, not three.",
"A5":"",
"A5_Why":"",
"S":"",
"R_T":"Gold",
"R_I":0,
"R_A":100,
"P_T":"HP",
"P_I":0,
"P_A":20,
"O_L":0},
]}
There's more detailed information on the plugin page. I currently have a primitive question builder system that uses forms to build the individual questions -- the user then has to manually insert each question object into the database file. I want to streamline and improve this for ease of use.
Wishlist:
1. Someone who would make a tool that does what I mentioned above.
2. Failing that, someone who can help point me in the right direction on how to proceed with making such a tool. I have limited JS experience beyond making a few plugins, but am happy to learn.