[RMVX ACE] [SOLVED] SCRIPT FOR MARKING PROGRESS ON A PATH?

Posts

Pages: 1
Sooz
They told me I was mad when I said I was going to create a spidertable. Who’s laughing now!!!
5354
OK so I'm in VX Ace wanting to do a little path that lights up if you walk on it in the correct sequence. Is there a script to do this easily, or am I going to be stuck in a nightmare of switches?
If you want a pure event solution, rather than a nightmare of switches use a single variable.
* add 1 when you step on a correct tile
* reset to zero when you step on a wrong tile
* use the "variable is X or above" to show the correct event page for each tile

(assuming there's only one correct path)
Sooz
They told me I was mad when I said I was going to create a spidertable. Who’s laughing now!!!
5354
author=coelocanth
If you want a pure event solution, rather than a nightmare of switches use a single variable.
* add 1 when you step on a correct tile
* reset to zero when you step on a wrong tile
* use the "variable is X or above" to show the correct event page for each tile

(assuming there's only one correct path)


BRILLIANT. I'll do this, thanks! :D
Pages: 1