Arcade Prehacks

Results 1 to 3 of 3

Thread: Rainbow Blitz

  1. #1
    Senior Member
    Join Date
    May 2010
    Location
    Pen Island
    Posts
    3,838

    Rainbow Blitz

    I need help on a key hack on a game called rainbow blitz.I changed this:
    Code:
    loadMovieNum("manhattanp.swf", 0);
    //loadMovieNum("http://www.arcadeprehacks.com/unhacked_swf/manhattanp-loader.swf", 0);
    
    
    /////////// START KEY LISTENER CODE BLOCK //////////////////
    // Set the keys you want to listen for here.
    // Get key codes here http://people.uncw.edu/tompkinsj/112...t/keyCodes.htm
    keylistener = new Object();
    keylistener.onKeyDown = function() {
    	
       if (Key.getCode() == 49)
       {
    	   _level0.Mc_Interface.T_Value1.value = 9999999999; // All code here between {} will excecute when key is pressed.
    	   
       }
      
    }
    
    Key.addListener(keylistener);
    /////////// END KEY LISTENER CODE BLOCK //////////////////
    Into this:
    Code:
    loadMovieNum("rainbowb.swf", 0);
    //loadMovieNum("http://www.arcadeprehacks.com/unhacked_swf/rainbowb-loader.swf", 0);
    
    
    /////////// START KEY LISTENER CODE BLOCK //////////////////
    // Set the keys you want to listen for here.
    // Get key codes here http://people.uncw.edu/tompkinsj/112...t/keyCodes.htm
    keylistener = new Object();
    keylistener.onKeyDown = function() {
    	
       if (Key.getCode() == 49)
       {
    	   _level0.health = 9999999999; // All code here between {} will excecute when key is pressed.
    	   
       }
      
    }
    
    Key.addListener(keylistener);
    /////////// END KEY LISTENER CODE BLOCK //////////////////
    Then when I play the game with the hack,and press 1,I get a screen full of green.What am I doing wrong?

  2. #2
    Banned
    Join Date
    Jul 2009
    Posts
    67

    Re: Rainbow Blitz

    I told you guys to post these stuff in the tutorial sticky but anyway...
    Change 999999999 to 200 or lower value,maybe the healthbar is going all over the screen with that giant value

  3. #3
    Senior Member
    Join Date
    May 2010
    Location
    Pen Island
    Posts
    3,838

    Re: Rainbow Blitz

    Thnx,that's solved my prob.Request lock.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •