Level jump?

IS there a cheat or a command that will take you to any level for instance in case you are editing a part that takes places well into the game but you don't want to have to play all the way to that point to test your work and see how it is going? The only cheats I know of are the unlimited hp, ammo and lives that you can activate from the main menu





Thanks
 
just change the level ordering in the levels.txt file
example level order
Code:
z	190 272 0
file	data/levels/area1.txt
z	190 272 0
file	data/levels/area2.txt
z	190 272 0
file	data/levels/area3.txt
z	190 272 0
file	data/levels/area4.txt

changes to

Code:
z	190 272 0
file	data/levels/area4.txt
z	190 272 0
file	data/levels/area1.txt
z	190 272 0
file	data/levels/area2.txt
z	190 272 0
file	data/levels/area3.txt
now level 4 loads first

or make a new mode with those levels, in this example, you will have 2 modes of play when you press start, story and endlevels, story will be the normal order, endlevels will start with level 4

Code:
set	story
lives 4
nosame 1
z	190 272 0
file	data/levels/area1.txt
z	190 272 0
file	data/levels/area2.txt
z	190 272 0
file	data/levels/area3.txt
z	190 272 0
file	data/levels/area4.txt

set	endlevels
lives 4
nosame 1
z	190 272 0
file	data/levels/area4.txt
z	190 272 0
file	data/levels/area1.txt
z	190 272 0
file	data/levels/area2.txt
z	190 272 0
file	data/levels/area3.txt
 
There's no such cheat.

I usually have test level set with all to be tested levels there, similar to one posted by DatKofGuy above. To be tested level is placed first so it will be run first

In other mods, I have level set with its own hub level. This hub level has controllable exit which can go to any level
 
this game is hard to figure out its numbering systems with all the branches but it sounds like their would be no reason to continue trying to add to it......thanks anyway all the best to everyone.
 
Back
Top Bottom