Charades GameSalad Game?
FallingBoxStudios
Freelance Graphic DesignerMember Posts: 822
Hi, I'm thinking of creating a charades GameSalad game, but I would like to know, whats the best/easiest way to create a GameSalad charades game? Thanks
- Hunter
- Hunter
Comments
There are trivia templates available that you can re-purpose for this. And there are plenty of timer tutorials and videos.
The basic idea would be to store your phrases in a table, one per row. Then pick a random row and after retrieving the data from that cell and displaying it, delete the row.
What else are you trying to do?
New to GameSalad? (FAQs) | Tutorials | Templates | Greenleaf Games | Educator & Certified GameSalad User
New to GameSalad? (FAQs) | Tutorials | Templates | Greenleaf Games | Educator & Certified GameSalad User
- Hunter
* One table with all of your words in. One blank table.
* At the beginning of the game copy the words table into the blank table with the "Copy Table" behavior.
* Randomly select a word from the copy table with random(1, tableRowCount(your copy table name))
* Store the random number in an attribute so that you can delete the row from the copy table. This will stop the word coming up again in the same game.
* Repeat the last two steps above until they quit the game or there's no more words left in the copy table. i.e. tableRowCount(your copy table name) = 0
It's a great practice app, so go for it!