Author Topic: Help with modifications on Rampage!  (Read 509 times)

Ok, so I set the number of levels on Rampage to 15, but there are 2 glitches I need help with.

1.) When you lose, it doesn't go back to the beginning which I want it to do, it restarts the level.

2.) On level 6 and I think beyond, it glitches and says Level Failed the second after it starts.

Please help! Thanks!

Here's the server.cs:

Why are you repeating the same levels over and over again in the level data? Instead, just make it repeat the levels.

In server.cs (from your post) on line 308 (in MiniGameSO::gStartPhase1), replace the contents of the if block with this:
%minigame.gMap = 1;

Make sure to remove all those repeated levels in your level data afterwards.
« Last Edit: August 12, 2012, 12:15:10 PM by Port »

Why are you repeating the same levels over and over again in the level data? Instead, just make it repeat the levels.

In server.cs (from your post) on line 308 (in MiniGameSO::gStartPhase1), replace the contents of the if block with this:
%minigame.gMap = 1;

Make sure to remove all those repeated levels in your level data afterwards.

Will it say like Level 4 and then so on and so on?

Wait, at line 308, I don't see it, is it
Code: [Select]
function MiniGameSO::gStartPhase1( %minigame )
{
// clear old bricks
// if( getBrickCount() > 0 )

if( %minigame.gMap > $RampageModeLevels.levelCount )
{
« Last Edit: August 12, 2012, 12:31:44 PM by ScratchTehEPICSpaceDude »

It's not working. Please help!

I would also want the timer to deecrease by 15 so it gets harder and harder after each round.