If you appreciate the work done within the wiki, please consider supporting The Cutting Room Floor on Patreon. Thanks for all your support!
This article is marked as NSFW!
This article has a talk page!

Strider (Arcade)

From The Cutting Room Floor
Jump to navigation Jump to search

Title Screen

Strider

Also known as: Strider Hiryu (JP)
Developer: Capcom
Publisher: Capcom
Platform: Arcade (CP System)
Released in JP: March 7, 1989[1]
Released in US: April 1989[2]


CopyrightIcon.png This game has hidden developer credits.
DevTextIcon.png This game has hidden development-related text.
GraphicsIcon.png This game has unused graphics.
MusicIcon.png This game has unused music.
SoundIcon.png This game has unused sounds.
DebugIcon.png This game has debugging material.
RegionIcon.png This game has regional differences.
Carts.png This game has revisional differences.


PrereleaseIcon.png This game has a prerelease article

And you were just a scroll away from being fired too...
Oh dear, I do believe I have the vapors.
This page contains content that is not safe for work or other locations with the potential for personal embarrassment.
Such as: About four pixels' worth of dystopian Amazonian future nipple.

Strider Hiryu is here to overthrow an evil dictatorship and defeat Palpatine, mostly by swinging his sword very fast at anything that moves.

Vw-vw-vw-vw-vw-vw-vw-vw-vw-vw-vwee! Vw-vw-vw-vw-vw-vwee!

Sub-Page

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

Tile Viewer

StriderArcTestMenuFull.png
There's code at 0x71E10 (offset is for the strider set in MAME) that would enable an extra option, "CHARACTER", on the test menu if input 0x04 was held down before the menu popped up. Unfortunately, 0x04 corresponds to 1P Coin, and both 1P and 2P Coin inputs are disabled in the test menu. Put the following code in MAME's strider.xml cheat file to change 1P Coin to 1P Start:

  <cheat desc="Fix Full Test Menu Access">
    <script state="run">
      <action>maincpu.mw@071E16=0040</action>
    </script>
    <script state="off">
      <action>maincpu.mw@071E16=0004</action>
    </script>
  </cheat>

StriderArcTileMenu.png
From there, just choose "CHARACTER" to access the tile viewer menu. Pick "OBJECT" for sprites, "SCROLL1" for the game's font, "SCROLL2" for the foreground tiles, and "SCROLL3" for background tiles.

StriderArcTileViewer.png
Controls:

  • Up: Scroll down.
  • Down: Scroll up.
  • Left / Right: Scroll through available palettes.
  • Button 1: Toggle vertical flipping.
  • Button 2: Toggle horizontal flipping.
  • 1P Start: Toggle between a simple and complex tile display.
  • 2P Start: Loads the next level's palette group.

Unused Graphics

Uncensored Censored (in-game)
StriderArcAmazoness1a.pngStriderArcAmazoness2a.png StriderArcAmazoness1b.pngStriderArcAmazoness2b.png

The Amazon enemies have their left breasts exposed in the stored graphics. This is covered in the actual game with a separately-stored green leaf sprite. Add the code in strider.xml to check it out.

 <cheat desc="Uncensored">
   <script state="on">
     <action>maincpu.mw@02E46A=0888</action>
     <action>maincpu.mw@02E470=0888</action>
     <action>maincpu.mw@02E476=0888</action>
     <action>maincpu.mw@02E47C=0888</action>
     <action>maincpu.mw@02F2EA=0888</action>
     <action>maincpu.mw@02F2F0=0888</action>
     <action>maincpu.mw@02F2F6=0888</action>
     <action>maincpu.mw@02F2FC=0888</action>
   </script>
   <script state="off">
     <action>maincpu.mw@02E46A=16F0</action>
     <action>maincpu.mw@02E470=16F1</action>
     <action>maincpu.mw@02E476=16F2</action>
     <action>maincpu.mw@02E47C=1E84</action>
     <action>maincpu.mw@02F2EA=16F0</action>
     <action>maincpu.mw@02F2F0=16F1</action>
     <action>maincpu.mw@02F2F6=16F2</action>
     <action>maincpu.mw@02F2FC=1E84</action>
   </script>
 </cheat>

StriderArcTestTileset.png StriderArcTestTileset2.png
What appears to be graphics for a test tileset. Includes every possible surface type and hexadecimal 16×16 blocks.

StriderArcTheFalconLogo.png
32×32 tiles for a logo of "The Falcon", the name with which the game was first revealed in western gaming magazines. In an interview with game planner Kouichi "Isuke" Yotsui, he explained that this title was initially chosen because Capcom USA wasn't convinced with the Strider name until they changed their minds later.

Put the following code in the striderj.xml cheat file to replace the normal title screen logo with this one:

<cheat desc="Restore old title screen">
    <script state="on">
      <!-- repoint the tilemaps to the old ones-->
      <action>temp8=maincpu.md@5cac</action>
      <action>maincpu.md@5cac=cd9de</action>
      <action>temp9=maincpu.md@5cf0</action>
      <action>maincpu.md@5cf0=cdac2</action>
      <!-- the lower half tileset is a bit off, need to remap it a bit -->
      <action>temp0=maincpu.mb@5cbd</action>
      <action>maincpu.mb@5cbd=24</action>
      <action>temp1=maincpu.mb@5cc3</action>
      <action>maincpu.mb@5cc3=4a</action>
      <action>temp2=maincpu.mb@5cc9</action>
      <action>maincpu.mb@5cc9=70</action>
      <action>temp3=maincpu.mb@5ccf</action>
      <action>maincpu.mb@5ccf=96</action>
      <action>temp4=maincpu.mb@5cd5</action>
      <action>maincpu.mb@5cd5=bc</action>
      <action>temp5=maincpu.mb@5cdb</action>
      <action>maincpu.mb@5cdb=e2</action>
      <!-- also, the loops are one too small, which results in missing the last tiles on the bottom of both the upper and lower half-->
      <action>temp6=maincpu.mb@5cb5</action>
      <action>maincpu.mb@5cb5=10</action>
      <action>temp7=maincpu.mb@5cf9</action>
      <action>maincpu.mb@5cf9=4</action>
    </script>
    <script state="off">
      <action>maincpu.md@5cac=temp8</action>
      <action>maincpu.md@5cf0=temp9</action>
      <action>maincpu.mb@5cbd=temp0</action>
      <action>maincpu.mb@5cc3=temp1</action>
      <action>maincpu.mb@5cc9=temp2</action>
      <action>maincpu.mb@5ccf=temp3</action>
      <action>maincpu.mb@5cd5=temp4</action>
      <action>maincpu.mb@5cdb=temp5</action>
      <action>maincpu.mb@5cb5=temp6</action>
      <action>maincpu.mb@5cf9=temp7</action>
    </script>
  </cheat> 
(Source: sudden-desu)

Unused Sounds

ID Track Name Sound
17 3ST ST3

Seems to be an alternate version of the intro tune for Stage 4.

ID Track Name Purpose?
1E 4ST DEMO Stage 3 cutscene track.
21 ENDING Ending credits track.
23 TIMEOVER Music for when time is running out.

These music tracks do not exist in the ROM, but have unique IDs and track names in the Output Test. They all point to Track 00, the Stage 1-1 music. A Stage 3 cutscene track and an ending credits track were eventually recorded for the Sega Genesis and Sharp X68000 ports. A time running out song was recorded for the Sharp X68000. The sharp X68000 would get an arrangement of the Genesis credits song for the Name Entry screen.

ID Sound
82
83
84
85

Various utterances and grunts from Hiryu that aren't used in any version of the game.

Unused Text

Two pieces of text giving the full names of the game's programmers can be found in the game memory.

The first is at 0x0039AA:

Porgrammed by Yamauchi & Komatsu

The second starts at 0x004542:

Programing by

Tae       Komatsu
Toshihiro Yamauchi
Toshihiko Miki

In the credits, these three are listed as "TAE 250R", "T+MARUCHI", and "MIKKUN" respectively.

Text exists for a Scroll Test (like the one found in Ghouls 'n Ghosts) but there's no known way to access it.

Text starts at 0x00407D in memory.

     SCROLL TEST
   1. SCROLL
   2. MAPPING
   ENTER A SHOT
   EXIT  C SHOT
     MAPPING
   1. SCROLL1
   2. SCROLL2
   3. SCROLL3
   ENTER A SHOT
   EXIT  C SHOT
     SELECT STAGE
   1. STAGE1
   2. STAGE2
   3. STAGE3
   4. STAGE4
   5. STAGE5
   ENTER A SHOT

Regional Differences

ID Sound
81

In the Japanese sets, Hiryu makes a "Hah!" sound every time he swings his sword. This sound is not used in US sets.

Revisional Differences

ID Track Name Purpose
18 4ST BGM1 The first section of Stage 3.
19 4ST BGM2 Second section of Stage 3 - Inside the Ballog.
1A 4ST BIG The final section of Stage 3.
1B 5ST BGM1 The first section of Stage 5 - Outside of Third Moon.
1C 5ST BGM1 The second section of Stage 5 - Inside Third Moon.
1D 5ST BIG Music for the final boss.
1F 5ST DEMO Intro to Stage 5.
20 CLEAR Stage 5 Clear music.
22 RANKING High Score theme.

The earliest Japanese and US sets are missing many pieces of music, with Stage 1-1's music used in their place. This mostly affects the 3rd and 5th stages.

(Source: Original TCRF research)