a webgame to play wheel of fortune with friends
Go to file
2025-03-12 04:12:42 -05:00
sounds fixed server typeError bug, added clipboard and made it pretty 2025-03-08 20:22:48 -06:00
tests add css framework, testing framework, autoNameAssignment 2024-11-28 09:08:38 -06:00
.eslintrc.js added eslint,turn logic, and spin logic, need to add guess logic 2025-01-09 08:42:00 -06:00
.gitignore Initial commit 2024-11-07 10:56:53 +00:00
arrow-down-bold.png adds cool spinny wheel that doesn't stop for some reason lol 2024-11-29 19:05:50 -06:00
assignedNames.json add css framework, testing framework, autoNameAssignment 2024-11-28 09:08:38 -06:00
clipboard.svg fixed server typeError bug, added clipboard and made it pretty 2025-03-08 20:22:48 -06:00
clipboardCheckmark.svg fixed server typeError bug, added clipboard and made it pretty 2025-03-08 20:22:48 -06:00
index.html fixed the backend server dying when someone leaves... kind of shipping anyway 2025-03-12 04:12:42 -05:00
LICENSE Initial commit 2024-11-07 10:56:53 +00:00
mflx.min.css add css framework, testing framework, autoNameAssignment 2024-11-28 09:08:38 -06:00
package-lock.json added eslint,turn logic, and spin logic, need to add guess logic 2025-01-09 08:42:00 -06:00
package.json added eslint,turn logic, and spin logic, need to add guess logic 2025-01-09 08:42:00 -06:00
puzzles2.json puzzle visualized, added puzzle validator on server, and uploading before storm wrecks my shit 2025-01-05 04:32:57 -06:00
puzzles.json puzzle visualized, added puzzle validator on server, and uploading before storm wrecks my shit 2025-01-05 04:32:57 -06:00
README.md puzzle visualized, added puzzle validator on server, and uploading before storm wrecks my shit 2025-01-05 04:32:57 -06:00
server.js fixed the backend server dying when someone leaves... kind of shipping anyway 2025-03-12 04:12:42 -05:00
thingstotest.txt working on gameflow added turnState logic, basic puzzle solving logic 2025-01-18 21:08:50 -06:00

WheelOfFortune

a webgame to play wheel of fortune with friends

when creating puzzles make sure there are no words greater than 12 characters. make sure you specify 4 slots on the answer property in array format like so:

{
    "given": ["a", "b", "r"],
    "answer": ["", "Andy and", "the Backs", ""],
    "category": "alternative names"
}

not doing this will give you an error.

you can see the format in puzzles.json

if you have a one line puzzle you can shorten it:

{
    "given": ["a", "b", "r"],
    "answer": "Amerimutt",
    "category": "alternative names"
}