QuizMe:Logo TV Edition (iOS - free to play)
Sparkyidr
Member Posts: 2,033
Just a heads up. Our free game Quiz:Me Logo TV Edition is out today.
It's totally free, supported by ads, and iap for hints, and ad-removal (although there is also a paid version with no ads too)
It's a logo quiz game, but rather then being a load of logos from obscure foreign banks etc, the logos are all from TV shows
Much more fun
Thanks to the power and ease of use of writable tables, we managed to create a fairly robust, scaleable, changeable logo guessing engine. Boom! cheers Gamesalad
(Although searchable tables would have been a bit of a help...lol)
Also, massive props to @tshirtbooth for his coverflow(ish) system that I tweaked a bit for the main parts of this game
Enjoy...and as always, feedback from you guys is most welcome.
http://itunes.apple.com/gb/app/quizme-logo-tv-edition/id553484411?mt=8
It's totally free, supported by ads, and iap for hints, and ad-removal (although there is also a paid version with no ads too)
It's a logo quiz game, but rather then being a load of logos from obscure foreign banks etc, the logos are all from TV shows
Much more fun
Thanks to the power and ease of use of writable tables, we managed to create a fairly robust, scaleable, changeable logo guessing engine. Boom! cheers Gamesalad
(Although searchable tables would have been a bit of a help...lol)
Also, massive props to @tshirtbooth for his coverflow(ish) system that I tweaked a bit for the main parts of this game
Enjoy...and as always, feedback from you guys is most welcome.
http://itunes.apple.com/gb/app/quizme-logo-tv-edition/id553484411?mt=8
Comments
So you swipe around, then when you choose a logo, it sets all sorts of live attributes from the data in a table, and brings on the other bits and bobs that were hidden offscreen.
So there is some loading (masked by playhaven ads) but only when you switch between the levels, and the level selection.
My GameSalad Academy Courses! ◦ Check out my quality templates! ◦ Add me on Skype: braydon_sfx
or stay in and watch more TV
My GameSalad Academy Courses! ◦ Check out my quality templates! ◦ Add me on Skype: braydon_sfx
I've got some ideas and feedback if you are keen to hear, I'll PM you @Sparkyidr if you wish me to. Let me know.
I am trying to make a quiz game with similar mechanics to yours. but without logo's.
Is it possible you could give me a heads up on how you set up the keyboard?
And how it knows you've typed the right word?
Any help would be appreciated!
It’s not a bug – it’s an undocumented feature
The best thing to do (rather than me prattle on about it here), is watch T-shirt's Boggle tutorial video series. It's fairly long, but pretty much everything I know about word checking I learned from those.
Slightly amended on this game, as I used a table for the letters rather than attributes.
Basically you want some way to record each letter, as well as how many letters you have typed.
Once you have a list of your letters, connect them all together, and pass the result to an attribute. Then check that attribute against whatever you need to check it against to see if its correct or not.
Hope thats a pointer in the right direction. It's a fairly simple (if a little fiddly) process.
But really.. go watch those videos and you will get it.
I'll check them out.
It’s not a bug – it’s an undocumented feature
Sorry to bother you again but i'm tearing out what's left of my hair!
I've got as far as checking that the typed word is the same as the intended word, and it works fine so long as you type it in right first time.
However if you make a mistake and backspace to correct it, it won't recognise it as the right word.
How did you set up your word checker?
Cheers
It’s not a bug – it’s an undocumented feature
it's basically this
I have a table - TB_Typing
I have an attribute - how many letters
I have an attribute - current guess
Each time a key is pressed it fills in a cell in "TB_Typing"
so it sets a table value for TB_Typing for whatever the letter is at column howmanyletters
Then set - howmanyletters = howmanyletters+1
when I backspace, howmanyletters becomes howmanyletters-1
When I hit my check/enter button
current guess = letter1..letter2..letter3.. etc etc from the table.
Then check current guess against whatever you need to check against.
In my case, I pull the correct answer from a table and pass it to an attribute called "current_answer"
If they match, thats a correct answer. And I go back to my selection screen, and I initialise everything back to being blank.
Hope that made some sort of sense.
It's this part.
"When I hit my check/enter button
current guess = letter1..letter2..letter3.. etc etc from the table."
That I'm having trouble with. How do you extract the letters info from the table?
I've tried- eg. if-NAME CHECK -tom cruise-is- tablecellvalue(game.lettersTB,1,1)..tablecellvalue(game.lettersTB,1,2)..etc
Att RIGHT NAME is TRUE.
But it doesn't work.
It’s not a bug – it’s an undocumented feature