Page 1 of 1

Looking for a in depth game tutorial for ios

Posted: Tue Apr 05, 2011 10:05 pm
by unclewayne
I did the Bulls-i tutorial game and found it very informative. I would love to find something that teaches me how to take it further (levels, menus, music, etc...). if anyone has any info, please let me know.

Re: Looking for a in depth game tutorial for ios

Posted: Tue Apr 05, 2011 11:56 pm
by unclewayne
Let me explain what i am looking to do:
I have a bulls-i game (same as the tutorial on youtube). Instead of it just starting the game, i would like a menu where you can choose what game you want to play. Then it would go to a rules screen explain the object of the game with a play button. then to the game. After you hit the 20 bulls-i's it would take you to a score page (not the default iphone alert), where you could choose to replay the same game/level or go to the next level.
I guess the main thing i need to know how to do is go from one screen to another. I am thinking is done with "stacks" but i am still not sure.
Any help would be greatly appreciated.

Re: Looking for a in depth game tutorial for ios

Posted: Wed Apr 06, 2011 1:18 am
by JosepM
Hi,

The basic to move is:

on mouseup
visual effect push left
go card 2
end mouseup

Check the Dictionary for "go" and "visual effect"

Salut,
Josep

Re: Looking for a in depth game tutorial for ios

Posted: Wed Apr 06, 2011 5:19 pm
by unclewayne
Thank you Josep.
What I meant was the not the code, but more in the LiveCode environment.
So i have stack1 open and card1 is controlling the elements in stack1. How do i create a new "page" for it to go to? so when someone completes a level it will go to a results page. Does that make sense?

Re: Looking for a in depth game tutorial for ios

Posted: Thu Apr 07, 2011 12:22 am
by jstarkman
You can create the different "levels" on different cards, and when you want to display another "level/card" use the 'go' command.

Joel