Author Topic: Code Bank  (Read 14488 times)

0 Members and 1 Guest are viewing this topic.

Offline Trop

  • Hero Member
  • *****
  • Posts: 849
Code Bank
« on: May 29, 2014, 10:55:24 pm »
Codes for mapping.  Need a code?  Got a code?  Post or request them here.
For posting codes start your post with the Game's Name and System in bold then the type of code, such as Code Breaker, Game Genie, etc, and other details under it.
For requests start your post with "Request" in bold then the details and replace the post later with "Filled" once it has been.
You can also post things like Lua scripts, special code patches, or similar hacking to make mapping easier.
I'll start with some examples:
« Last Edit: May 30, 2014, 09:47:10 am by Trop »

Offline Trop

  • Hero Member
  • *****
  • Posts: 849
Re: Code Bank
« Reply #1 on: May 29, 2014, 10:55:42 pm »
Lodoss Tou Senki (Record of Lodoss War)

Cash
7E122EE8
7E122FFD

Kill enemy in the back middle row in one hit
7E137900
7E137A00

Kill enemy in the back right row in one hit
7E13A800
7E13A900

Kill enemy in the back left row in one hit
7E13D700
7E13D800

Offline Trop

  • Hero Member
  • *****
  • Posts: 849
Re: Code Bank
« Reply #2 on: May 29, 2014, 10:56:21 pm »
Request: Cyber Knight

Walk through walls code
   

Offline TerraEsperZ

  • Hero Member
  • *****
  • Posts: 2314
Re: Code Bank
« Reply #3 on: May 30, 2014, 06:07:56 am »
Please also include the system the game is for and the type of code if any (Code Breaker, Game Genie, etc). Also, for emulators that support Lua scripts, do share any interesting script you might have come up with. I should have a few to share later today.
Current project that are on hold because job burnout :
-Drill Dozer (GBA)
-Sonic 3D Blast (Genesis)
-Naya's Quest (PC)

Offline Trop

  • Hero Member
  • *****
  • Posts: 849
Re: Code Bank
« Reply #4 on: May 30, 2014, 09:40:07 am »
Oops, I'll add all that.

Offline KungFuFurby

  • Newbie
  • *
  • Posts: 7
Re: Code Bank
« Reply #5 on: May 30, 2014, 10:42:12 am »
These codes are Pro Action Replay codes.

Ardy Lightfoot (SNES)
Level Modifier
7E0060xx
00-04, 06-09, 0B-0E, 15-19 are all working levels using this code.
12 is the password screen.
13 is the Game Over screen.
14 is the password screen already set up.
1A is the title screen.
1B-1C, 21-24, 27-28, 2B work OK. They are quick cutscene sequences. The catch is that they're not meant to loop.
1F, 26, 33 partially works... it's another cutscene. However, the graphics are a bit glitched in at least one section.
20 is the opening.
29-2A accidentally lets the camera follow the main character, although it's a functional cutscene otherwise.
I don't think anything above 37 works at all.
Any value I did not mention should not be tried, mainly because of graphical glitches.

Congo the Movie - Secret of Zinj (SNES)
Level Modifier
D158D1xx
D158D2xx
Safe-cracking is required. That means only certain values will work, and they don't really follow a consistent pattern. Here are the valid values (left byte goes into D158D1xx, right byte goes into D158D2xx):
96 A6
38 A7
DF A7
5F A8
D9 A8
59 A9
D3 A9
5A AA
F0 AA
77 AB
FE AB
7F AC
17 AD
A8 AD
39 AE
C9 AE
7D AF
3D B0
D9 B0
61 B1
E9 B1
C4 B2
C5 B3
4F B4
D9 B4
Select Start from the menu. The level you select will substitute the first shooting stage, and actually allows you to start later in the game than usual.
There might be graphical glitches because the graphics aren't properly loaded.
« Last Edit: May 30, 2014, 10:46:27 am by KungFuFurby »

Offline TerraEsperZ

  • Hero Member
  • *****
  • Posts: 2314
Re: Code Bank
« Reply #6 on: May 30, 2014, 04:25:12 pm »
This is a Lua script for VBA-ReRecording.

Changing background color to purple (almost all games)

Quote
while true do
  memory.writeword(0x05000000, 0x7C1F) --Palette
  emu.frameadvance()
end

If you have trouble separating layers because the "empty" color is one that's also used in the game's graphics, this script will instead replace it with purple (you can change the color yourself if you're knowledgeable about how the GBA stores color values in hexadecimal). This will work for all games except for those that alter the background color mid-frame since the script only changes it once per frame and even then, using the Next Frame command will usually show the purple color one frame out of two.

Do note that since this essentially changes the value of the first entry on the background color palette, if the back-most layer uses this color for its graphics, it will look wrong. To capture it properly, simply stop the script.
« Last Edit: May 30, 2014, 04:29:32 pm by TerraEsperZ »
Current project that are on hold because job burnout :
-Drill Dozer (GBA)
-Sonic 3D Blast (Genesis)
-Naya's Quest (PC)

Offline dark_lord_zagato@yahoo.co

  • Jr. Member
  • **
  • Posts: 61
Re: Code Bank
« Reply #7 on: May 31, 2014, 11:45:32 am »
Narc (NES)
(codes made specifically for VirtuaNES emulator)

P1 is invisible (infinite invincibility frames)
005E-01-FF   

Places P1 at the top of the screen (in the menu, above the actual map)
00C1-01-20

Enemies stay at the top of the screen
00C3-04-20202020