Charas-Project

Game Creation => Requests => RPG Maker Programming => Topic started by: Zerlina on August 26, 2006, 02:39:59 AM

Title: Sort of a looping question
Post by: Zerlina on August 26, 2006, 02:39:59 AM
Ok new question ^^.


I have a part where you can read a book and there are choices for which chapter to read from. After the chapter, I want it to go back to the index, but I'm not sure how. Because it's done with choices, I don't see how I could use a loop
Title:
Post by: DragonBlaze on August 26, 2006, 02:49:49 AM
Don't use a loop for this, use a label. So right before the index, add a label (1). Then when you want to go back to the index, jump to label 1.

In any computer programming class you  take, they'll tell you to use loops instead of labels, but in rm2k3 its best to use labels in most cases.