please refrain from creating a post for each individual questions. It looks like you have lots of questions about the software, please round them all up and post them in a single thread.
Here is a question: How do I make it go to a random scene while excluding 1 scene (the menu)?
tatiangMember, Sous Chef, PRO, Senior Sous-ChefPosts: 11,949
@ds1239 The only way to change scenes is with the Change Scene behavior, so you'll need to create rules for how you want it to work.
Let's say you have 4 scenes: menu, instructions, gameplay, and store. You would generate a random number for the scenes you want to choose from and then change the scene based on that value.
Change Attribute game.random to random(1,3) When game.random = 1 .....Change Scene [instructions] When game.random = 2 .....Change Scene [gameplay] When game.random=3 .....Change Scene [store]
Comments
New to GameSalad? (FAQs) | Tutorials | Templates | Greenleaf Games | Educator & Certified GameSalad User
please refrain from creating a post for each individual questions. It looks like you have lots of questions about the software, please round them all up and post them in a single thread.
Send and Receive Data using your own Server Tutorial! | Vote for A Long Way Home on Steam Greenlight! | Ten Years Left
Let's say you have 4 scenes: menu, instructions, gameplay, and store. You would generate a random number for the scenes you want to choose from and then change the scene based on that value.
Change Attribute game.random to random(1,3)
When game.random = 1
.....Change Scene [instructions]
When game.random = 2
.....Change Scene [gameplay]
When game.random=3
.....Change Scene [store]
New to GameSalad? (FAQs) | Tutorials | Templates | Greenleaf Games | Educator & Certified GameSalad User