From StrategyWiki, the video game walkthrough and strategy guide wiki
Jump to navigation Jump to search
mNo edit summary
(wikified)
Line 1: Line 1:
{{wikify}}
{{All Game Nav|game=Hellboy: Asylum Seeker}}
{{All Game Nav|game=Hellboy: Asylum Seeker}}
<pre>
Luckily the savegames are tiny, and it has not been difficult to find out where health and ammo are storedHowever these locations change with each episode, so i have a made a few batch files for save points where you probably need it most.
    Because I am playing this game for the story - and not the
    gameplay - I have decided to cheatNormally I do not enjoy
    cheating in a computer game, but in this case I feel it is a
    neccesary evil :)


    Now that I have finished the game, I can conclude that most fights
For each of the next sections copy the text of the section verbatim to a dos batch file (copy & paste it in notepad, then choose save as..., find the hellboy save game directory and save it as `hell_e2.bat' or `hell_e4.bat', etc... ).
    are not at all difficult. So you might want to try the game
    without cheating - then again, having lots of health can be quite
    comforting :)


    Luckily the savegames are tiny, and it has not been difficult to
Then open a dos box and `cd' into your savegame directory and execute the appropriate batch fileThis should patch your last savegame.  You can also supply a filename on the command line.
    find out where health and ammo are storedHowever these
    locations change with each episode, so i have a made a few batch
    files for save points where you probably need it most.  


    For each of the next sections copy the text of the section
WARNING: this might damage your savegame if you have a different version of the hellboy game, it will certainly damage your savegame if you use it on a savegame for a different episode. So make sure you make a backup first.  
    verbatim to a dos batch file (copy & paste it in notepad, then
    choose save as..., find the hellboy save game directory and save
    it as `hell_e2.bat' or `hell_e4.bat', etc... ).  


    Then open a dos box and `cd' into your savegame directory and
WARNING: the autosaves are special, find a proper [SAVE] point before attempting to cheat.
    execute the appropriate batch file.  This should patch your last
    savegame.  You can also supply a filename on the command line.
   
    WARNING: this might damage your savegame if you have a different
    version of the hellboy game, it will certainly damage your
    savegame if you use it on a savegame for a different episode.
    So make sure you make a backup first.  


    WARNING: the autosaves are special, find a proper [SAVE] point
==hell_e2.bat==
    before attempting to cheat. 
<pre>
 
======================================================================
5.1.  hell_e2.bat
======================================================================
@echo off
@echo off


Line 59: Line 34:
debug %FILE% < cheat.deb > nul
debug %FILE% < cheat.deb > nul
echo done.
echo done.
 
</pre>
======================================================================
==hell_e4.bat==
5.2.  hell_e4.bat
<pre>
======================================================================
@echo off
@echo off



Revision as of 21:21, 6 December 2006

Template:All Game Nav Luckily the savegames are tiny, and it has not been difficult to find out where health and ammo are stored. However these locations change with each episode, so i have a made a few batch files for save points where you probably need it most.

For each of the next sections copy the text of the section verbatim to a dos batch file (copy & paste it in notepad, then choose save as..., find the hellboy save game directory and save it as `hell_e2.bat' or `hell_e4.bat', etc... ).

Then open a dos box and `cd' into your savegame directory and execute the appropriate batch file. This should patch your last savegame. You can also supply a filename on the command line.

WARNING: this might damage your savegame if you have a different version of the hellboy game, it will certainly damage your savegame if you use it on a savegame for a different episode. So make sure you make a backup first.

WARNING: the autosaves are special, find a proper [SAVE] point before attempting to cheat.

hell_e2.bat

@echo off

: Ammo + Health trainer for Episode One and Two of Hellboy.

if %1_==_ goto default
set FILE=%1
goto skip

:default
for %%i in (save*.hbs) do set FILE=%%i

:skip
echo e 4ca > cheat.deb
echo 00 44 >> cheat.deb
echo e 554 >> cheat.deb
echo 63    >> cheat.deb
echo w     >> cheat.deb
echo q     >> cheat.deb

echo patching %FILE% ...
debug %FILE% < cheat.deb > nul
echo done.

hell_e4.bat

@echo off

: Use this batch file ONLY for Hellboy savegames at E4 - Sewer.

if %1_==_ goto default
set FILE=%1
goto skip

:default
for %%i in (save*.hbs) do set FILE=%%i

:skip
echo e 4ba > cheat.deb
echo 00 44 >> cheat.deb
echo e 504 >> cheat.deb
echo 63    >> cheat.deb
echo w     >> cheat.deb
echo q     >> cheat.deb

echo patching %FILE% ...
debug %FILE% < cheat.deb > nul
echo done.