If you appreciate the work done within the wiki, please consider supporting The Cutting Room Floor on Patreon. Thanks for all your support!

MFP: My Friend Pedro

From The Cutting Room Floor
Jump to navigation Jump to search

Title Screen

MFP: My Friend Pedro

Developer: DeadToast Entertainment
Publishers: Adult Swim Games, Addicting Games
Platform: Adobe Flash
Released internationally: June 2014


CodeIcon.png This game has unused code.
TextIcon.png This game has unused text.


PrereleaseIcon.png This game has a prerelease article

Sub-Page

Read about prerelease information and/or media for this game.
Prerelease Info

Text

As a placeholder for the achievement text, the developers put in "You should not see this".

Disabled Cheat

Code in the game suggests that holding down the U key would have unlocked all levels, yet all releases of the game have this disabled.

This code can be found inside Sprite 584, the main sprite used for the title screen:

on(release){
   if(!Key.isDown(85))
   {
      _root.savedData.clear();
      _root.killsAfterWallJump = 0;
      _root.midAirKills = 0;
      _root.knifeKills = 0;
      _root.nrOfHeadShots = 0;
      _root.nrOfGibs = 0;
      _parent.continueButton.onEnterFrame = undefined;
      _parent.continueButton.onRelease = undefined;
      _parent.continueButton._alpha = 10;
      _root.cheatUnlockAllLevels = false;
   }
   else
   {
      _root.cheatUnlockAllLevels = true;
   }
}