0 of 0

File information

Last updated

Original upload

Created by

Afevis

Uploaded by

Afevis

Virus scan

Safe to use

Tags for this mod

About this mod

Enables the radar in Snake Tales

Permissions and credits
Changelogs
Donations
Turns on the radar which is normally disabled in Snake Tales.

(Credit to eol from the Hackers of Liberty discord for providing the necessary GCX code to enable the radar)


From eol:
In mgs2, the display and hiding of radar elements is controlled by the GCX command [944E11].
Replacing the following hexadecimal value (in the relevant GCX) reenables it
118000061180000601FFF7B2B6A06D0FC92B080406114E94556E0626C901
with
118000061180000601FFF7B2B6A06D0FC92B080406114E94556E064E0E00


switch ($b:0:0062) \
   - case 11 \
      ...
      $w:8:0006 = $w:8:0006 & -2049 \
      command [944E11] -n off
$b:0:0062 - mission number, 11 = snake tales
$w:8:0006 = $w:8:0006 & -2049 - the easiest way to find a command in the right case is by this expression
replace with `command [944E11] -n on`