Faltaban archivos
This commit is contained in:
Executable
+244
@@ -0,0 +1,244 @@
|
||||
#!/bin/bash
|
||||
|
||||
readonly USAGE="
|
||||
USAGE:
|
||||
$(basename "$0") [SYSTEM]"
|
||||
|
||||
function help_message() {
|
||||
echo "$USAGE"
|
||||
echo
|
||||
echo "Where [SYSTEM] are:"
|
||||
for WORD in $SYSTEMS; do
|
||||
echo -e "\t$WORD"
|
||||
done
|
||||
}
|
||||
|
||||
SYSTEMS="apple2 arcade atari2600 atari7800 atarilynx coleco gamegear gb gba gbc mastersystem megadrive msx n64 nes ngpc pcengine sega32x sg1000 snes vectrex virtualboy wonderswan wonderswancolor"
|
||||
|
||||
# check if there is any parameter
|
||||
if [ "$#" -ne 1 ]; then
|
||||
echo "You must enter a system name."
|
||||
help_message
|
||||
exit 0
|
||||
fi
|
||||
|
||||
# check if the parameter is valid
|
||||
if ! echo "$SYSTEMS" | grep -w "$1" >/dev/null; then
|
||||
echo "You must enter a valid system name."
|
||||
help_message
|
||||
exit 0
|
||||
fi
|
||||
|
||||
# variables
|
||||
readonly SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"
|
||||
readonly DATA_DIR="$SCRIPT_DIR/data"
|
||||
readonly GAME_LIST_DIR="$SCRIPT_DIR/webdata"
|
||||
readonly SYSTEM_NAME="$1"
|
||||
readonly SYSTEM_HTML="$GAME_LIST_DIR/$SYSTEM_NAME".html
|
||||
readonly URL_LIST="$SCRIPT_DIR/${SYSTEM_NAME}.url"
|
||||
readonly COOKIE_FILE="$SCRIPT_DIR/cookie.txt"
|
||||
readonly HASCHEEVOS_TXT="${DATA_DIR}/$1_hascheevos.txt"
|
||||
readonly HASHLIBRARY_JSON="${DATA_DIR}/$1_hashlibrary.json"
|
||||
readonly BLUE_COLOR=$( tput setaf 4 ) ;
|
||||
readonly RESET_COLOR=$( tput sgr0 ) ;
|
||||
|
||||
case $SYSTEM_NAME in
|
||||
|
||||
apple2)
|
||||
readonly URL="https://retroachievements.org/gameList.php?c=38"
|
||||
;;
|
||||
|
||||
arcade)
|
||||
readonly URL="https://retroachievements.org/gameList.php?c=27"
|
||||
;;
|
||||
|
||||
atari2600)
|
||||
readonly URL="https://retroachievements.org/gameList.php?c=25"
|
||||
;;
|
||||
|
||||
atari7800)
|
||||
readonly URL="https://retroachievements.org/gameList.php?c=51"
|
||||
;;
|
||||
|
||||
atarijaguar)
|
||||
readonly URL="https://retroachievements.org/gameList.php?c=17"
|
||||
;;
|
||||
|
||||
atarilynx)
|
||||
readonly URL="https://retroachievements.org/gameList.php?c=13"
|
||||
;;
|
||||
|
||||
coleco)
|
||||
readonly URL="https://retroachievements.org/gameList.php?c=44"
|
||||
;;
|
||||
|
||||
gba)
|
||||
readonly URL="https://retroachievements.org/gameList.php?c=5"
|
||||
;;
|
||||
|
||||
gbc)
|
||||
readonly URL="https://retroachievements.org/gameList.php?c=6"
|
||||
;;
|
||||
|
||||
gb)
|
||||
readonly URL="https://retroachievements.org/gameList.php?c=4"
|
||||
;;
|
||||
|
||||
gamegear)
|
||||
readonly URL="https://retroachievements.org/gameList.php?c=15"
|
||||
;;
|
||||
|
||||
mastersystem)
|
||||
readonly URL="https://retroachievements.org/gameList.php?c=11"
|
||||
;;
|
||||
|
||||
megadrive)
|
||||
readonly URL="https://retroachievements.org/gameList.php?c=1"
|
||||
;;
|
||||
|
||||
msx)
|
||||
readonly URL="https://retroachievements.org/gameList.php?c=29"
|
||||
;;
|
||||
|
||||
ngpc)
|
||||
readonly URL="https://retroachievements.org/gameList.php?c=14"
|
||||
;;
|
||||
|
||||
nes)
|
||||
readonly URL="https://retroachievements.org/gameList.php?c=7"
|
||||
;;
|
||||
|
||||
n64)
|
||||
readonly URL="https://retroachievements.org/gameList.php?c=2"
|
||||
;;
|
||||
|
||||
nds)
|
||||
readonly URL="https://retroachievements.org/gameList.php?c=18"
|
||||
;;
|
||||
|
||||
panasonic3do)
|
||||
readonly URL="https://retroachievements.org/gameList.php?c=43"
|
||||
;;
|
||||
|
||||
pc8000)
|
||||
readonly URL="https://retroachievements.org/gameList.php?c=47"
|
||||
;;
|
||||
|
||||
pcengine)
|
||||
readonly URL="https://retroachievements.org/gameList.php?c=8"
|
||||
;;
|
||||
|
||||
pcfx)
|
||||
readonly URL="https://retroachievements.org/gameList.php?c=49"
|
||||
;;
|
||||
|
||||
psx)
|
||||
readonly URL="https://retroachievements.org/gameList.php?c=12"
|
||||
;;
|
||||
|
||||
pokemonmini)
|
||||
readonly URL="https://retroachievements.org/gameList.php?c=24"
|
||||
;;
|
||||
|
||||
sega32x)
|
||||
readonly URL="https://retroachievements.org/gameList.php?c=10"
|
||||
;;
|
||||
|
||||
segacd)
|
||||
readonly URL="https://retroachievements.org/gameList.php?c=9"
|
||||
;;
|
||||
|
||||
segasaturn)
|
||||
readonly URL="https://retroachievements.org/gameList.php?c=39"
|
||||
;;
|
||||
|
||||
sg1000)
|
||||
readonly URL="https://retroachievements.org/gameList.php?c=33"
|
||||
;;
|
||||
|
||||
snes)
|
||||
readonly URL="https://retroachievements.org/gameList.php?c=3"
|
||||
;;
|
||||
|
||||
vectrex)
|
||||
readonly URL="https://retroachievements.org/gameList.php?c=46"
|
||||
;;
|
||||
|
||||
virtualboy)
|
||||
readonly URL="https://retroachievements.org/gameList.php?c=28"
|
||||
;;
|
||||
|
||||
wonderswan)
|
||||
readonly URL="https://retroachievements.org/gameList.php?c=53"
|
||||
;;
|
||||
|
||||
esac
|
||||
|
||||
wget "$URL" -O "$SYSTEM_HTML"
|
||||
|
||||
# process system html to get game url list
|
||||
printf "%s\r" "${BLUE_COLOR}Processing $SYSTEM_NAME. ${RESET_COLOR}"
|
||||
grep -E "Game/[0-9]+" -Eo "$SYSTEM_HTML" | sort -u | sed 's,Game/,https://retroachievements.org/linkedhashes.php?g=,' > "$URL_LIST"
|
||||
echo "Found $(wc -l <"$URL_LIST") games."
|
||||
|
||||
# create system folder for webpages with hashes
|
||||
if test -d "./${GAME_LIST_DIR}/$SYSTEM_NAME"; then
|
||||
rm -rdf "./${GAME_LIST_DIR}/$SYSTEM_NAME"
|
||||
echo "Deleting ${GAME_LIST_DIR}/$SYSTEM_NAME folder."
|
||||
fi
|
||||
if ! test -d "./${GAME_LIST_DIR}/$SYSTEM_NAME"; then
|
||||
mkdir -p "./${GAME_LIST_DIR}/$SYSTEM_NAME"
|
||||
echo "Create ${GAME_LIST_DIR}/$SYSTEM_NAME folder."
|
||||
fi
|
||||
|
||||
# download webpages with hashes form url list
|
||||
echo "Downloading game info ..."
|
||||
wget --random-wait --no-verbose --load-cookies "${COOKIE_FILE}" -i "${URL_LIST}" -P "${GAME_LIST_DIR}/${SYSTEM_NAME}"
|
||||
|
||||
# remove tempfiles
|
||||
if test -f "$URL_LIST"; then
|
||||
rm "$URL_LIST"
|
||||
fi
|
||||
|
||||
# extract hashes from files on data/system folder
|
||||
|
||||
echo "Processing $SYSTEM_NAME system."
|
||||
echo "Working folder: $GAME_LIST_DIR"
|
||||
|
||||
# if file exists, delete it
|
||||
if test -f "${HASCHEEVOS_TXT}"; then
|
||||
rm "${HASCHEEVOS_TXT}"
|
||||
fi
|
||||
|
||||
# if file exists, delete it
|
||||
if test -f "${HASHLIBRARY_JSON}"; then
|
||||
rm "${HASHLIBRARY_JSON}"
|
||||
fi
|
||||
|
||||
# check if folder exists
|
||||
if ! test -d "${GAME_LIST_DIR}/${SYSTEM_NAME}"; then
|
||||
echo "Folder ${GAME_LIST_DIR}/${SYSTEM_NAME} does not exist."
|
||||
exit 0
|
||||
fi
|
||||
|
||||
# create HASCHEEVOS_TXT file
|
||||
grep -E "title=\"(.*?)\"" -Eo "${GAME_LIST_DIR}/${SYSTEM_NAME}/"* >> "${HASCHEEVOS_TXT}"
|
||||
sed -i -E 's,^\/(.*?)g=,,g' "${HASCHEEVOS_TXT}"
|
||||
sed -i -E 's,title=,true:,g' "${HASCHEEVOS_TXT}"
|
||||
echo "File $HASCHEEVOS_TXT created."
|
||||
|
||||
# create HASHLIBRARY_JSON
|
||||
echo "{" > "${HASHLIBRARY_JSON}"
|
||||
echo " \"Success\": true," >> "${HASHLIBRARY_JSON}"
|
||||
echo " \"MD5List\": {" >> "${HASHLIBRARY_JSON}"
|
||||
for i in "${GAME_LIST_DIR}/${SYSTEM_NAME}/"*; do
|
||||
# catch hash and append to file
|
||||
printf "%s\n" "$(grep -E "[A-Fa-f0-9]{32}" -Ho "$i")" >> "${HASHLIBRARY_JSON}"
|
||||
printf "%s\r" "${BLUE_COLOR}Parsing $(basename "$i") ... ${RESET_COLOR}"
|
||||
done
|
||||
perl -i -pe 's/(^\/.*?=)([0-9]+):([0-9A-Za-z]{32})/ "$3": $2,/' "${HASHLIBRARY_JSON}"
|
||||
echo " }" >> "${HASHLIBRARY_JSON}"
|
||||
echo "}" >> "${HASHLIBRARY_JSON}"
|
||||
perl -i -00pe 's/,(?!.*,)//s' "${HASHLIBRARY_JSON}"
|
||||
printf "%s\n" "Parsed $(wc -l < "${HASHLIBRARY_JSON}") hashes from $(find "${GAME_LIST_DIR}"/"$1" -type f | wc -l) games. "
|
||||
echo "File: $HASHLIBRARY_JSON created."
|
||||
Executable
+2
@@ -0,0 +1,2 @@
|
||||
#!/bin/bash
|
||||
lynx https://www.retroachievements.org
|
||||
File diff suppressed because one or more lines are too long
@@ -0,0 +1,36 @@
|
||||
<!doctype html><html xmlns='https://www.w3.org/1999/xhtml' lang='en' xml:lang='en' >
|
||||
<head><link rel='stylesheet' href='/css/styles.css?v=1.67.0' media='screen'>
|
||||
<link rel='icon' type='image/png' href='/favicon.png'>
|
||||
<link rel='image_src' href='/Images/RA_Logo10.png'>
|
||||
<meta http-equiv='content-type' content='text/html; charset=UTF-8'>
|
||||
<meta name='robots' content='all'>
|
||||
<meta name='description' content='Adding achievements to your favourite retro games since 2012'>
|
||||
<meta name='keywords' content='games, retro, computer games, mega drive, genesis, rom, emulator, achievements'>
|
||||
<meta property="fb:app_id" content="490904194261313"><meta name='viewport' content='width=device-width,user-scalable = no'/>
|
||||
<meta name="theme-color" content="#2C2E30"><meta name="msapplication-TileColor" content="#2C2E30"><meta name="msapplication-TileImage" content="/favicon.png"><link rel="shortcut icon" type="image/png" href="/favicon.png" sizes="16x16 32x32 64x64"><link rel="apple-touch-icon" sizes="120x120" href="/favicon.png"><link rel='stylesheet' href='https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.23/themes/sunny/jquery-ui.css'>
|
||||
<script src='https://ajax.googleapis.com/ajax/libs/jquery/1.8.1/jquery.js'></script>
|
||||
<script src='https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.23/jquery-ui.js'></script>
|
||||
<script src='/vendor/watermark.js?v=1.67.0'></script>
|
||||
<script src='/js/all.js?v=1.67.0'></script>
|
||||
<script>window.assetUrl='https://s3-eu-west-1.amazonaws.com/i.retroachievements.org'</script>
|
||||
<title>Linked Hashes - RetroAchievements</title><script>
|
||||
var _gaq = _gaq || [];
|
||||
_gaq.push(['_setAccount', 'UA-37462159-1']);
|
||||
_gaq.push(['_trackPageview']);
|
||||
(function() {
|
||||
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
|
||||
ga.src = ('https:' == document.location.protocol ? 'https://' : 'http://') + 'stats.g.doubleclick.net/dc.js';
|
||||
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
|
||||
})();
|
||||
</script></head><body>
|
||||
<script src='/vendor/wz_tooltip.js'></script><div id='topborder'><span id='preload-01'></span><span id='preload-02'></span><span id='preload-03'></span></div>
|
||||
<div id='title'><div id='logocontainer'><a id='logo' href='/'><img src='/Images/RA_Logo10.png' alt='Retro Achievements logo'></a></div><div class='login'><p><img src='/UserPic/JailDesigner.png' alt='JailDesigner' style='float:right' align='right' width='64' height='64' class='userpic'><strong><a href='/user/JailDesigner'>JailDesigner</a></strong> (29088) <span class='TrueRatio'>(67289)</span><br><a href='/request/auth/logout.php?Redir=/linkedhashes.php?g=13352'>logout</a><br><a href='/inbox.php'><img id='mailboxicon' style='float:left' src='https://s3-eu-west-1.amazonaws.com/i.retroachievements.org/Images/_Mail.png' width='20' height='20'/> (<span id='mailboxcount'>0</span>)</a></p><br></div></div><div id='innermenu'><ul id='menuholder'><li><a href='#'>Games</a><div><ul><li class='dropdown-header'>Nintendo</li><li><a href='/gameList.php?c=4'>Game Boy</a></li><li><a href='/gameList.php?c=6'>Game Boy Color</a></li><li><a href='/gameList.php?c=5'>Game Boy Advance</a></li><li><a href='/gameList.php?c=7'>NES/Famicom</a></li><li><a href='/gameList.php?c=3'>SNES/Super Famicom</a></li><li><a href='/gameList.php?c=2'>Nintendo 64</a></li><li><a href='/gameList.php?c=18'>Nintendo DS</a></li><li><a href='/gameList.php?c=24'>Pokemon Mini</a></li><li><a href='/gameList.php?c=28'>Virtual Boy</a></li><li class='dropdown-header'>Atari</li><li><a href='/gameList.php?c=25'>Atari 2600</a></li><li><a href='/gameList.php?c=51'>Atari 7800</a></li><li><a href='/gameList.php?c=17'>Atari Jaguar</a></li><li><a href='/gameList.php?c=13'>Atari Lynx</a></li><li class='dropdown-header'>NEC</li><li><a href='/gameList.php?c=8'>PC Engine/TurboGrafx-16</a></li><li><a href='/gameList.php?c=47'>PC-8000/8800</a></li><li><a href='/gameList.php?c=49'>PC-FX</a></li></ul><ul><li class='dropdown-header'>Sega</li><li><a href='/gameList.php?c=33'>SG-1000</a></li><li><a href='/gameList.php?c=11'>Master System</a></li><li><a href='/gameList.php?c=15'>Game Gear</a></li><li><a href='/gameList.php?c=1'>Genesis/Mega Drive</a></li><li><a href='/gameList.php?c=9'>Sega CD</a></li><li><a href='/gameList.php?c=10'>Sega 32X</a></li><li><a href='/gameList.php?c=39'>Sega Saturn</a></li><li class='dropdown-header'>Sony</li><li><a href='/gameList.php?c=12'>PlayStation</a></li><li class='dropdown-header'>Other</li><li><a href='/gameList.php?c=43'>3DO Interactive Multiplayer</a></li><li><a href='/gameList.php?c=27'>Arcade</a></li><li><a href='/gameList.php?c=38'>Apple II</a></li><li><a href='/gameList.php?c=44'>ColecoVision</a></li><li><a href='/gameList.php?c=29'>MSX</a></li><li><a href='/gameList.php?c=14'>Neo Geo Pocket</a></li><li><a href='/gameList.php?c=46'>Vectrex</a></li><li><a href='/gameList.php?c=53'>WonderSwan</a></li><li><a href='/gameList.php?c=23'>Magnavox Odyssey 2</a></li></ul><ul><li><a href='/gameList.php'>All Games</a></li></ul></li><li><a href='#'>Achievements</a><div><ul><li><a href='/achievementList.php'>All Achievements</a></li><li class='divider'></li><li><a href='/achievementList.php?s=4&p=2'>Easy Achievements</a></li><li><a href='/gameSearch.php?p=0'>Hardest Achievements</a></li></ul></div></li><li><a href='#'>Community</a><div><ul><li><a href='/forum.php'>Forums</a></li><li><a href='/forum.php?c=1'>- Community</a></li><li><a href='/viewforum.php?f=25'>+- Competitions</a></li><li><a href='/forum.php?c=7'>- Developers</a></li><li><a href='/forumposthistory.php'>Recent Posts</a></li><li class='divider'></li><li><a href='/userList.php'>Users</a></li><li><a href='/developerstats.php'>Developers</a></li><li><a href='/globalRanking.php'>Global Ranking</a></li><li class='divider'></li><li><a href='https://docs.retroachievements.org/'>User Documentation</a></li><li><a href='https://docs.retroachievements.org/Developer-docs/'>Developer Documentation</a></li></ul></div></li><li><a href='/download.php'>Download</a></li><li><a href='#'>My Pages</a><div><ul><li><a href='/User/JailDesigner'>Profile</a></li><li><a href='/achievementList.php?s=14&p=1'>Achievements</a></li><li><a href='/friends.php'>Friends</a></li><li><a href='/history.php'>History</a></li><li><a href='/inbox.php'>Messages</a></li><li><a href='/setRequestList.php?u=JailDesigner'>Requested Sets</a></li><li class='divider'></li><li><a href='/controlpanel.php'>Settings</a></li><li class='divider'></li><li><a href='/request/auth/logout.php'>Log Out</a></li></ul></div></li><form action='/searchresults.php' method='get'><div class='searchbox'><input size='24' name='s' type='text' class='searchboxinput' value=''> <input type='submit' value='Search'></div></form><div class='searchbox'><select id='themeselect' onchange='ResetTheme(); return false;'><option selected value='/css/rac_blank.css'>blank</option><option value='/css/rac_green.css'>green</option><option value='/css/rac_red.css'>red</option><option value='/css/rac_white.css'>white</option></select></div><br style="clear:both;"></div><div style='clear:both;'></div></ul><div id="mainpage">
|
||||
<div id='fullcontainer'>
|
||||
|
||||
<h2>List of Linked Hashes</h2>
|
||||
|
||||
<div class='bb_inline' onmouseover="Tip('<div id=\'objtooltip\' style=\'display:flex;max-width:400px\'><img style=\'margin-right:5px\' src=\'/Images/019885.png\' width=\'64\' height=\'64\' /><div><b>Ninja Golf</b><br>(Atari 7800)</div></div>')" onmouseout="UnTip()" ><a href='/Game/13352'><img loading='lazy' alt='' title="Ninja Golf" src='https://s3-eu-west-1.amazonaws.com/i.retroachievements.org/Images/019885.png' width='96' height='96' class='badgeimg' />Ninja Golf (Atari 7800)</a></div><br><br><p><b>Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.</b></p>Currently this game has <b>2</b> unique ROM(s) registered for it with the following MD5s:<br><br><ul><li><code>220121f771fc4b98cef97dc040e8d378</code></li><li><code>bb551483d114dcc5bae7aaa892ee856a</code></li></ul><br> <br>
|
||||
</div>
|
||||
</div>
|
||||
<div style='clear:both;'></div><footer id='footer'><div><h4>RetroAchievements</h4><div><a href='/achievementList.php'>Achievements</a></div><div><a href='/leaderboardList.php'>Leaderboards</a></div><div><a href='/gameList.php'>Games</a></div></div><div><h4>Documentation</h4><div><a href='https://docs.retroachievements.org/Developers-Code-of-Conduct/' target='_blank'>Developers Code of Conduct</a></div><div><a href='https://docs.retroachievements.org/Users-Code-of-Conduct/' target='_blank'>Users Code of Conduct</a></div><div><a href='https://docs.retroachievements.org/FAQ/' target='_blank'>FAQ</a></div><div><a href='/APIDemo.php'>API</a></div></div><div><h4>Community</h4><div><a href='/forum.php'>Forums</a></div><div><a href='/userList.php'>Users</a></div><div><a href='/developerstats.php'>Developers</a></div></div><div><h4>Connect</h4><div><a href='https://www.patreon.com/bePatron?u=5403777' target='_blank'>Patreon</a></div><div><a href='https://discord.gg/dq2E4hE' target='_blank'>Discord</a></div><div><a href='https://github.com/RetroAchievements' target='_blank'>GitHub</a></div><div><a href='https://twitch.tv/retroachievementsorg' target='_blank'>Twitch</a></div><div><a href='https://facebook.com/RetroAchievementsPC/' target='_blank'>Facebook</a></div><div><a href='https://twitter.com/retrocheevos' target='_blank'>Twitter</a></div><div><a href='/rss.php'>RSS</a></div></div></footer></body>
|
||||
</html>
|
||||
@@ -0,0 +1,36 @@
|
||||
<!doctype html><html xmlns='https://www.w3.org/1999/xhtml' lang='en' xml:lang='en' >
|
||||
<head><link rel='stylesheet' href='/css/styles.css?v=1.67.0' media='screen'>
|
||||
<link rel='icon' type='image/png' href='/favicon.png'>
|
||||
<link rel='image_src' href='/Images/RA_Logo10.png'>
|
||||
<meta http-equiv='content-type' content='text/html; charset=UTF-8'>
|
||||
<meta name='robots' content='all'>
|
||||
<meta name='description' content='Adding achievements to your favourite retro games since 2012'>
|
||||
<meta name='keywords' content='games, retro, computer games, mega drive, genesis, rom, emulator, achievements'>
|
||||
<meta property="fb:app_id" content="490904194261313"><meta name='viewport' content='width=device-width,user-scalable = no'/>
|
||||
<meta name="theme-color" content="#2C2E30"><meta name="msapplication-TileColor" content="#2C2E30"><meta name="msapplication-TileImage" content="/favicon.png"><link rel="shortcut icon" type="image/png" href="/favicon.png" sizes="16x16 32x32 64x64"><link rel="apple-touch-icon" sizes="120x120" href="/favicon.png"><link rel='stylesheet' href='https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.23/themes/sunny/jquery-ui.css'>
|
||||
<script src='https://ajax.googleapis.com/ajax/libs/jquery/1.8.1/jquery.js'></script>
|
||||
<script src='https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.23/jquery-ui.js'></script>
|
||||
<script src='/vendor/watermark.js?v=1.67.0'></script>
|
||||
<script src='/js/all.js?v=1.67.0'></script>
|
||||
<script>window.assetUrl='https://s3-eu-west-1.amazonaws.com/i.retroachievements.org'</script>
|
||||
<title>Linked Hashes - RetroAchievements</title><script>
|
||||
var _gaq = _gaq || [];
|
||||
_gaq.push(['_setAccount', 'UA-37462159-1']);
|
||||
_gaq.push(['_trackPageview']);
|
||||
(function() {
|
||||
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
|
||||
ga.src = ('https:' == document.location.protocol ? 'https://' : 'http://') + 'stats.g.doubleclick.net/dc.js';
|
||||
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
|
||||
})();
|
||||
</script></head><body>
|
||||
<script src='/vendor/wz_tooltip.js'></script><div id='topborder'><span id='preload-01'></span><span id='preload-02'></span><span id='preload-03'></span></div>
|
||||
<div id='title'><div id='logocontainer'><a id='logo' href='/'><img src='/Images/RA_Logo10.png' alt='Retro Achievements logo'></a></div><div class='login'><p><img src='/UserPic/JailDesigner.png' alt='JailDesigner' style='float:right' align='right' width='64' height='64' class='userpic'><strong><a href='/user/JailDesigner'>JailDesigner</a></strong> (29088) <span class='TrueRatio'>(67289)</span><br><a href='/request/auth/logout.php?Redir=/linkedhashes.php?g=13354'>logout</a><br><a href='/inbox.php'><img id='mailboxicon' style='float:left' src='https://s3-eu-west-1.amazonaws.com/i.retroachievements.org/Images/_Mail.png' width='20' height='20'/> (<span id='mailboxcount'>0</span>)</a></p><br></div></div><div id='innermenu'><ul id='menuholder'><li><a href='#'>Games</a><div><ul><li class='dropdown-header'>Nintendo</li><li><a href='/gameList.php?c=4'>Game Boy</a></li><li><a href='/gameList.php?c=6'>Game Boy Color</a></li><li><a href='/gameList.php?c=5'>Game Boy Advance</a></li><li><a href='/gameList.php?c=7'>NES/Famicom</a></li><li><a href='/gameList.php?c=3'>SNES/Super Famicom</a></li><li><a href='/gameList.php?c=2'>Nintendo 64</a></li><li><a href='/gameList.php?c=18'>Nintendo DS</a></li><li><a href='/gameList.php?c=24'>Pokemon Mini</a></li><li><a href='/gameList.php?c=28'>Virtual Boy</a></li><li class='dropdown-header'>Atari</li><li><a href='/gameList.php?c=25'>Atari 2600</a></li><li><a href='/gameList.php?c=51'>Atari 7800</a></li><li><a href='/gameList.php?c=17'>Atari Jaguar</a></li><li><a href='/gameList.php?c=13'>Atari Lynx</a></li><li class='dropdown-header'>NEC</li><li><a href='/gameList.php?c=8'>PC Engine/TurboGrafx-16</a></li><li><a href='/gameList.php?c=47'>PC-8000/8800</a></li><li><a href='/gameList.php?c=49'>PC-FX</a></li></ul><ul><li class='dropdown-header'>Sega</li><li><a href='/gameList.php?c=33'>SG-1000</a></li><li><a href='/gameList.php?c=11'>Master System</a></li><li><a href='/gameList.php?c=15'>Game Gear</a></li><li><a href='/gameList.php?c=1'>Genesis/Mega Drive</a></li><li><a href='/gameList.php?c=9'>Sega CD</a></li><li><a href='/gameList.php?c=10'>Sega 32X</a></li><li><a href='/gameList.php?c=39'>Sega Saturn</a></li><li class='dropdown-header'>Sony</li><li><a href='/gameList.php?c=12'>PlayStation</a></li><li class='dropdown-header'>Other</li><li><a href='/gameList.php?c=43'>3DO Interactive Multiplayer</a></li><li><a href='/gameList.php?c=27'>Arcade</a></li><li><a href='/gameList.php?c=38'>Apple II</a></li><li><a href='/gameList.php?c=44'>ColecoVision</a></li><li><a href='/gameList.php?c=29'>MSX</a></li><li><a href='/gameList.php?c=14'>Neo Geo Pocket</a></li><li><a href='/gameList.php?c=46'>Vectrex</a></li><li><a href='/gameList.php?c=53'>WonderSwan</a></li><li><a href='/gameList.php?c=23'>Magnavox Odyssey 2</a></li></ul><ul><li><a href='/gameList.php'>All Games</a></li></ul></li><li><a href='#'>Achievements</a><div><ul><li><a href='/achievementList.php'>All Achievements</a></li><li class='divider'></li><li><a href='/achievementList.php?s=4&p=2'>Easy Achievements</a></li><li><a href='/gameSearch.php?p=0'>Hardest Achievements</a></li></ul></div></li><li><a href='#'>Community</a><div><ul><li><a href='/forum.php'>Forums</a></li><li><a href='/forum.php?c=1'>- Community</a></li><li><a href='/viewforum.php?f=25'>+- Competitions</a></li><li><a href='/forum.php?c=7'>- Developers</a></li><li><a href='/forumposthistory.php'>Recent Posts</a></li><li class='divider'></li><li><a href='/userList.php'>Users</a></li><li><a href='/developerstats.php'>Developers</a></li><li><a href='/globalRanking.php'>Global Ranking</a></li><li class='divider'></li><li><a href='https://docs.retroachievements.org/'>User Documentation</a></li><li><a href='https://docs.retroachievements.org/Developer-docs/'>Developer Documentation</a></li></ul></div></li><li><a href='/download.php'>Download</a></li><li><a href='#'>My Pages</a><div><ul><li><a href='/User/JailDesigner'>Profile</a></li><li><a href='/achievementList.php?s=14&p=1'>Achievements</a></li><li><a href='/friends.php'>Friends</a></li><li><a href='/history.php'>History</a></li><li><a href='/inbox.php'>Messages</a></li><li><a href='/setRequestList.php?u=JailDesigner'>Requested Sets</a></li><li class='divider'></li><li><a href='/controlpanel.php'>Settings</a></li><li class='divider'></li><li><a href='/request/auth/logout.php'>Log Out</a></li></ul></div></li><form action='/searchresults.php' method='get'><div class='searchbox'><input size='24' name='s' type='text' class='searchboxinput' value=''> <input type='submit' value='Search'></div></form><div class='searchbox'><select id='themeselect' onchange='ResetTheme(); return false;'><option selected value='/css/rac_blank.css'>blank</option><option value='/css/rac_green.css'>green</option><option value='/css/rac_red.css'>red</option><option value='/css/rac_white.css'>white</option></select></div><br style="clear:both;"></div><div style='clear:both;'></div></ul><div id="mainpage">
|
||||
<div id='fullcontainer'>
|
||||
|
||||
<h2>List of Linked Hashes</h2>
|
||||
|
||||
<div class='bb_inline' onmouseover="Tip('<div id=\'objtooltip\' style=\'display:flex;max-width:400px\'><img style=\'margin-right:5px\' src=\'/Images/024839.png\' width=\'64\' height=\'64\' /><div><b>Donkey Kong</b><br>(Atari 7800)</div></div>')" onmouseout="UnTip()" ><a href='/Game/13354'><img loading='lazy' alt='' title="Donkey Kong" src='https://s3-eu-west-1.amazonaws.com/i.retroachievements.org/Images/024839.png' width='96' height='96' class='badgeimg' />Donkey Kong (Atari 7800)</a></div><br><br><p><b>Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.</b></p>Currently this game has <b>2</b> unique ROM(s) registered for it with the following MD5s:<br><br><ul><li><code>19f1ee292a23636bd57d408b62de79c7</code></li><li><code>35eabe5b952a4f733b904f73511f884d</code></li></ul><br> <br>
|
||||
</div>
|
||||
</div>
|
||||
<div style='clear:both;'></div><footer id='footer'><div><h4>RetroAchievements</h4><div><a href='/achievementList.php'>Achievements</a></div><div><a href='/leaderboardList.php'>Leaderboards</a></div><div><a href='/gameList.php'>Games</a></div></div><div><h4>Documentation</h4><div><a href='https://docs.retroachievements.org/Developers-Code-of-Conduct/' target='_blank'>Developers Code of Conduct</a></div><div><a href='https://docs.retroachievements.org/Users-Code-of-Conduct/' target='_blank'>Users Code of Conduct</a></div><div><a href='https://docs.retroachievements.org/FAQ/' target='_blank'>FAQ</a></div><div><a href='/APIDemo.php'>API</a></div></div><div><h4>Community</h4><div><a href='/forum.php'>Forums</a></div><div><a href='/userList.php'>Users</a></div><div><a href='/developerstats.php'>Developers</a></div></div><div><h4>Connect</h4><div><a href='https://www.patreon.com/bePatron?u=5403777' target='_blank'>Patreon</a></div><div><a href='https://discord.gg/dq2E4hE' target='_blank'>Discord</a></div><div><a href='https://github.com/RetroAchievements' target='_blank'>GitHub</a></div><div><a href='https://twitch.tv/retroachievementsorg' target='_blank'>Twitch</a></div><div><a href='https://facebook.com/RetroAchievementsPC/' target='_blank'>Facebook</a></div><div><a href='https://twitter.com/retrocheevos' target='_blank'>Twitter</a></div><div><a href='/rss.php'>RSS</a></div></div></footer></body>
|
||||
</html>
|
||||
@@ -0,0 +1,36 @@
|
||||
<!doctype html><html xmlns='https://www.w3.org/1999/xhtml' lang='en' xml:lang='en' >
|
||||
<head><link rel='stylesheet' href='/css/styles.css?v=1.67.0' media='screen'>
|
||||
<link rel='icon' type='image/png' href='/favicon.png'>
|
||||
<link rel='image_src' href='/Images/RA_Logo10.png'>
|
||||
<meta http-equiv='content-type' content='text/html; charset=UTF-8'>
|
||||
<meta name='robots' content='all'>
|
||||
<meta name='description' content='Adding achievements to your favourite retro games since 2012'>
|
||||
<meta name='keywords' content='games, retro, computer games, mega drive, genesis, rom, emulator, achievements'>
|
||||
<meta property="fb:app_id" content="490904194261313"><meta name='viewport' content='width=device-width,user-scalable = no'/>
|
||||
<meta name="theme-color" content="#2C2E30"><meta name="msapplication-TileColor" content="#2C2E30"><meta name="msapplication-TileImage" content="/favicon.png"><link rel="shortcut icon" type="image/png" href="/favicon.png" sizes="16x16 32x32 64x64"><link rel="apple-touch-icon" sizes="120x120" href="/favicon.png"><link rel='stylesheet' href='https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.23/themes/sunny/jquery-ui.css'>
|
||||
<script src='https://ajax.googleapis.com/ajax/libs/jquery/1.8.1/jquery.js'></script>
|
||||
<script src='https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.23/jquery-ui.js'></script>
|
||||
<script src='/vendor/watermark.js?v=1.67.0'></script>
|
||||
<script src='/js/all.js?v=1.67.0'></script>
|
||||
<script>window.assetUrl='https://s3-eu-west-1.amazonaws.com/i.retroachievements.org'</script>
|
||||
<title>Linked Hashes - RetroAchievements</title><script>
|
||||
var _gaq = _gaq || [];
|
||||
_gaq.push(['_setAccount', 'UA-37462159-1']);
|
||||
_gaq.push(['_trackPageview']);
|
||||
(function() {
|
||||
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
|
||||
ga.src = ('https:' == document.location.protocol ? 'https://' : 'http://') + 'stats.g.doubleclick.net/dc.js';
|
||||
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
|
||||
})();
|
||||
</script></head><body>
|
||||
<script src='/vendor/wz_tooltip.js'></script><div id='topborder'><span id='preload-01'></span><span id='preload-02'></span><span id='preload-03'></span></div>
|
||||
<div id='title'><div id='logocontainer'><a id='logo' href='/'><img src='/Images/RA_Logo10.png' alt='Retro Achievements logo'></a></div><div class='login'><p><img src='/UserPic/JailDesigner.png' alt='JailDesigner' style='float:right' align='right' width='64' height='64' class='userpic'><strong><a href='/user/JailDesigner'>JailDesigner</a></strong> (29088) <span class='TrueRatio'>(67289)</span><br><a href='/request/auth/logout.php?Redir=/linkedhashes.php?g=13364'>logout</a><br><a href='/inbox.php'><img id='mailboxicon' style='float:left' src='https://s3-eu-west-1.amazonaws.com/i.retroachievements.org/Images/_Mail.png' width='20' height='20'/> (<span id='mailboxcount'>0</span>)</a></p><br></div></div><div id='innermenu'><ul id='menuholder'><li><a href='#'>Games</a><div><ul><li class='dropdown-header'>Nintendo</li><li><a href='/gameList.php?c=4'>Game Boy</a></li><li><a href='/gameList.php?c=6'>Game Boy Color</a></li><li><a href='/gameList.php?c=5'>Game Boy Advance</a></li><li><a href='/gameList.php?c=7'>NES/Famicom</a></li><li><a href='/gameList.php?c=3'>SNES/Super Famicom</a></li><li><a href='/gameList.php?c=2'>Nintendo 64</a></li><li><a href='/gameList.php?c=18'>Nintendo DS</a></li><li><a href='/gameList.php?c=24'>Pokemon Mini</a></li><li><a href='/gameList.php?c=28'>Virtual Boy</a></li><li class='dropdown-header'>Atari</li><li><a href='/gameList.php?c=25'>Atari 2600</a></li><li><a href='/gameList.php?c=51'>Atari 7800</a></li><li><a href='/gameList.php?c=17'>Atari Jaguar</a></li><li><a href='/gameList.php?c=13'>Atari Lynx</a></li><li class='dropdown-header'>NEC</li><li><a href='/gameList.php?c=8'>PC Engine/TurboGrafx-16</a></li><li><a href='/gameList.php?c=47'>PC-8000/8800</a></li><li><a href='/gameList.php?c=49'>PC-FX</a></li></ul><ul><li class='dropdown-header'>Sega</li><li><a href='/gameList.php?c=33'>SG-1000</a></li><li><a href='/gameList.php?c=11'>Master System</a></li><li><a href='/gameList.php?c=15'>Game Gear</a></li><li><a href='/gameList.php?c=1'>Genesis/Mega Drive</a></li><li><a href='/gameList.php?c=9'>Sega CD</a></li><li><a href='/gameList.php?c=10'>Sega 32X</a></li><li><a href='/gameList.php?c=39'>Sega Saturn</a></li><li class='dropdown-header'>Sony</li><li><a href='/gameList.php?c=12'>PlayStation</a></li><li class='dropdown-header'>Other</li><li><a href='/gameList.php?c=43'>3DO Interactive Multiplayer</a></li><li><a href='/gameList.php?c=27'>Arcade</a></li><li><a href='/gameList.php?c=38'>Apple II</a></li><li><a href='/gameList.php?c=44'>ColecoVision</a></li><li><a href='/gameList.php?c=29'>MSX</a></li><li><a href='/gameList.php?c=14'>Neo Geo Pocket</a></li><li><a href='/gameList.php?c=46'>Vectrex</a></li><li><a href='/gameList.php?c=53'>WonderSwan</a></li><li><a href='/gameList.php?c=23'>Magnavox Odyssey 2</a></li></ul><ul><li><a href='/gameList.php'>All Games</a></li></ul></li><li><a href='#'>Achievements</a><div><ul><li><a href='/achievementList.php'>All Achievements</a></li><li class='divider'></li><li><a href='/achievementList.php?s=4&p=2'>Easy Achievements</a></li><li><a href='/gameSearch.php?p=0'>Hardest Achievements</a></li></ul></div></li><li><a href='#'>Community</a><div><ul><li><a href='/forum.php'>Forums</a></li><li><a href='/forum.php?c=1'>- Community</a></li><li><a href='/viewforum.php?f=25'>+- Competitions</a></li><li><a href='/forum.php?c=7'>- Developers</a></li><li><a href='/forumposthistory.php'>Recent Posts</a></li><li class='divider'></li><li><a href='/userList.php'>Users</a></li><li><a href='/developerstats.php'>Developers</a></li><li><a href='/globalRanking.php'>Global Ranking</a></li><li class='divider'></li><li><a href='https://docs.retroachievements.org/'>User Documentation</a></li><li><a href='https://docs.retroachievements.org/Developer-docs/'>Developer Documentation</a></li></ul></div></li><li><a href='/download.php'>Download</a></li><li><a href='#'>My Pages</a><div><ul><li><a href='/User/JailDesigner'>Profile</a></li><li><a href='/achievementList.php?s=14&p=1'>Achievements</a></li><li><a href='/friends.php'>Friends</a></li><li><a href='/history.php'>History</a></li><li><a href='/inbox.php'>Messages</a></li><li><a href='/setRequestList.php?u=JailDesigner'>Requested Sets</a></li><li class='divider'></li><li><a href='/controlpanel.php'>Settings</a></li><li class='divider'></li><li><a href='/request/auth/logout.php'>Log Out</a></li></ul></div></li><form action='/searchresults.php' method='get'><div class='searchbox'><input size='24' name='s' type='text' class='searchboxinput' value=''> <input type='submit' value='Search'></div></form><div class='searchbox'><select id='themeselect' onchange='ResetTheme(); return false;'><option selected value='/css/rac_blank.css'>blank</option><option value='/css/rac_green.css'>green</option><option value='/css/rac_red.css'>red</option><option value='/css/rac_white.css'>white</option></select></div><br style="clear:both;"></div><div style='clear:both;'></div></ul><div id="mainpage">
|
||||
<div id='fullcontainer'>
|
||||
|
||||
<h2>List of Linked Hashes</h2>
|
||||
|
||||
<div class='bb_inline' onmouseover="Tip('<div id=\'objtooltip\' style=\'display:flex;max-width:400px\'><img style=\'margin-right:5px\' src=\'/Images/034262.png\' width=\'64\' height=\'64\' /><div><b>Joust</b><br>(Atari 7800)</div></div>')" onmouseout="UnTip()" ><a href='/Game/13364'><img loading='lazy' alt='' title="Joust" src='https://s3-eu-west-1.amazonaws.com/i.retroachievements.org/Images/034262.png' width='96' height='96' class='badgeimg' />Joust (Atari 7800)</a></div><br><br><p><b>Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.</b></p>Currently this game has <b>1</b> unique ROM(s) registered for it with the following MD5s:<br><br><ul><li><code>6acb6db87bd24ab7eecdbef2f206b384</code></li></ul><br> <br>
|
||||
</div>
|
||||
</div>
|
||||
<div style='clear:both;'></div><footer id='footer'><div><h4>RetroAchievements</h4><div><a href='/achievementList.php'>Achievements</a></div><div><a href='/leaderboardList.php'>Leaderboards</a></div><div><a href='/gameList.php'>Games</a></div></div><div><h4>Documentation</h4><div><a href='https://docs.retroachievements.org/Developers-Code-of-Conduct/' target='_blank'>Developers Code of Conduct</a></div><div><a href='https://docs.retroachievements.org/Users-Code-of-Conduct/' target='_blank'>Users Code of Conduct</a></div><div><a href='https://docs.retroachievements.org/FAQ/' target='_blank'>FAQ</a></div><div><a href='/APIDemo.php'>API</a></div></div><div><h4>Community</h4><div><a href='/forum.php'>Forums</a></div><div><a href='/userList.php'>Users</a></div><div><a href='/developerstats.php'>Developers</a></div></div><div><h4>Connect</h4><div><a href='https://www.patreon.com/bePatron?u=5403777' target='_blank'>Patreon</a></div><div><a href='https://discord.gg/dq2E4hE' target='_blank'>Discord</a></div><div><a href='https://github.com/RetroAchievements' target='_blank'>GitHub</a></div><div><a href='https://twitch.tv/retroachievementsorg' target='_blank'>Twitch</a></div><div><a href='https://facebook.com/RetroAchievementsPC/' target='_blank'>Facebook</a></div><div><a href='https://twitter.com/retrocheevos' target='_blank'>Twitter</a></div><div><a href='/rss.php'>RSS</a></div></div></footer></body>
|
||||
</html>
|
||||
@@ -0,0 +1,36 @@
|
||||
<!doctype html><html xmlns='https://www.w3.org/1999/xhtml' lang='en' xml:lang='en' >
|
||||
<head><link rel='stylesheet' href='/css/styles.css?v=1.67.0' media='screen'>
|
||||
<link rel='icon' type='image/png' href='/favicon.png'>
|
||||
<link rel='image_src' href='/Images/RA_Logo10.png'>
|
||||
<meta http-equiv='content-type' content='text/html; charset=UTF-8'>
|
||||
<meta name='robots' content='all'>
|
||||
<meta name='description' content='Adding achievements to your favourite retro games since 2012'>
|
||||
<meta name='keywords' content='games, retro, computer games, mega drive, genesis, rom, emulator, achievements'>
|
||||
<meta property="fb:app_id" content="490904194261313"><meta name='viewport' content='width=device-width,user-scalable = no'/>
|
||||
<meta name="theme-color" content="#2C2E30"><meta name="msapplication-TileColor" content="#2C2E30"><meta name="msapplication-TileImage" content="/favicon.png"><link rel="shortcut icon" type="image/png" href="/favicon.png" sizes="16x16 32x32 64x64"><link rel="apple-touch-icon" sizes="120x120" href="/favicon.png"><link rel='stylesheet' href='https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.23/themes/sunny/jquery-ui.css'>
|
||||
<script src='https://ajax.googleapis.com/ajax/libs/jquery/1.8.1/jquery.js'></script>
|
||||
<script src='https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.23/jquery-ui.js'></script>
|
||||
<script src='/vendor/watermark.js?v=1.67.0'></script>
|
||||
<script src='/js/all.js?v=1.67.0'></script>
|
||||
<script>window.assetUrl='https://s3-eu-west-1.amazonaws.com/i.retroachievements.org'</script>
|
||||
<title>Linked Hashes - RetroAchievements</title><script>
|
||||
var _gaq = _gaq || [];
|
||||
_gaq.push(['_setAccount', 'UA-37462159-1']);
|
||||
_gaq.push(['_trackPageview']);
|
||||
(function() {
|
||||
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
|
||||
ga.src = ('https:' == document.location.protocol ? 'https://' : 'http://') + 'stats.g.doubleclick.net/dc.js';
|
||||
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
|
||||
})();
|
||||
</script></head><body>
|
||||
<script src='/vendor/wz_tooltip.js'></script><div id='topborder'><span id='preload-01'></span><span id='preload-02'></span><span id='preload-03'></span></div>
|
||||
<div id='title'><div id='logocontainer'><a id='logo' href='/'><img src='/Images/RA_Logo10.png' alt='Retro Achievements logo'></a></div><div class='login'><p><img src='/UserPic/JailDesigner.png' alt='JailDesigner' style='float:right' align='right' width='64' height='64' class='userpic'><strong><a href='/user/JailDesigner'>JailDesigner</a></strong> (29088) <span class='TrueRatio'>(67289)</span><br><a href='/request/auth/logout.php?Redir=/linkedhashes.php?g=13368'>logout</a><br><a href='/inbox.php'><img id='mailboxicon' style='float:left' src='https://s3-eu-west-1.amazonaws.com/i.retroachievements.org/Images/_Mail.png' width='20' height='20'/> (<span id='mailboxcount'>0</span>)</a></p><br></div></div><div id='innermenu'><ul id='menuholder'><li><a href='#'>Games</a><div><ul><li class='dropdown-header'>Nintendo</li><li><a href='/gameList.php?c=4'>Game Boy</a></li><li><a href='/gameList.php?c=6'>Game Boy Color</a></li><li><a href='/gameList.php?c=5'>Game Boy Advance</a></li><li><a href='/gameList.php?c=7'>NES/Famicom</a></li><li><a href='/gameList.php?c=3'>SNES/Super Famicom</a></li><li><a href='/gameList.php?c=2'>Nintendo 64</a></li><li><a href='/gameList.php?c=18'>Nintendo DS</a></li><li><a href='/gameList.php?c=24'>Pokemon Mini</a></li><li><a href='/gameList.php?c=28'>Virtual Boy</a></li><li class='dropdown-header'>Atari</li><li><a href='/gameList.php?c=25'>Atari 2600</a></li><li><a href='/gameList.php?c=51'>Atari 7800</a></li><li><a href='/gameList.php?c=17'>Atari Jaguar</a></li><li><a href='/gameList.php?c=13'>Atari Lynx</a></li><li class='dropdown-header'>NEC</li><li><a href='/gameList.php?c=8'>PC Engine/TurboGrafx-16</a></li><li><a href='/gameList.php?c=47'>PC-8000/8800</a></li><li><a href='/gameList.php?c=49'>PC-FX</a></li></ul><ul><li class='dropdown-header'>Sega</li><li><a href='/gameList.php?c=33'>SG-1000</a></li><li><a href='/gameList.php?c=11'>Master System</a></li><li><a href='/gameList.php?c=15'>Game Gear</a></li><li><a href='/gameList.php?c=1'>Genesis/Mega Drive</a></li><li><a href='/gameList.php?c=9'>Sega CD</a></li><li><a href='/gameList.php?c=10'>Sega 32X</a></li><li><a href='/gameList.php?c=39'>Sega Saturn</a></li><li class='dropdown-header'>Sony</li><li><a href='/gameList.php?c=12'>PlayStation</a></li><li class='dropdown-header'>Other</li><li><a href='/gameList.php?c=43'>3DO Interactive Multiplayer</a></li><li><a href='/gameList.php?c=27'>Arcade</a></li><li><a href='/gameList.php?c=38'>Apple II</a></li><li><a href='/gameList.php?c=44'>ColecoVision</a></li><li><a href='/gameList.php?c=29'>MSX</a></li><li><a href='/gameList.php?c=14'>Neo Geo Pocket</a></li><li><a href='/gameList.php?c=46'>Vectrex</a></li><li><a href='/gameList.php?c=53'>WonderSwan</a></li><li><a href='/gameList.php?c=23'>Magnavox Odyssey 2</a></li></ul><ul><li><a href='/gameList.php'>All Games</a></li></ul></li><li><a href='#'>Achievements</a><div><ul><li><a href='/achievementList.php'>All Achievements</a></li><li class='divider'></li><li><a href='/achievementList.php?s=4&p=2'>Easy Achievements</a></li><li><a href='/gameSearch.php?p=0'>Hardest Achievements</a></li></ul></div></li><li><a href='#'>Community</a><div><ul><li><a href='/forum.php'>Forums</a></li><li><a href='/forum.php?c=1'>- Community</a></li><li><a href='/viewforum.php?f=25'>+- Competitions</a></li><li><a href='/forum.php?c=7'>- Developers</a></li><li><a href='/forumposthistory.php'>Recent Posts</a></li><li class='divider'></li><li><a href='/userList.php'>Users</a></li><li><a href='/developerstats.php'>Developers</a></li><li><a href='/globalRanking.php'>Global Ranking</a></li><li class='divider'></li><li><a href='https://docs.retroachievements.org/'>User Documentation</a></li><li><a href='https://docs.retroachievements.org/Developer-docs/'>Developer Documentation</a></li></ul></div></li><li><a href='/download.php'>Download</a></li><li><a href='#'>My Pages</a><div><ul><li><a href='/User/JailDesigner'>Profile</a></li><li><a href='/achievementList.php?s=14&p=1'>Achievements</a></li><li><a href='/friends.php'>Friends</a></li><li><a href='/history.php'>History</a></li><li><a href='/inbox.php'>Messages</a></li><li><a href='/setRequestList.php?u=JailDesigner'>Requested Sets</a></li><li class='divider'></li><li><a href='/controlpanel.php'>Settings</a></li><li class='divider'></li><li><a href='/request/auth/logout.php'>Log Out</a></li></ul></div></li><form action='/searchresults.php' method='get'><div class='searchbox'><input size='24' name='s' type='text' class='searchboxinput' value=''> <input type='submit' value='Search'></div></form><div class='searchbox'><select id='themeselect' onchange='ResetTheme(); return false;'><option selected value='/css/rac_blank.css'>blank</option><option value='/css/rac_green.css'>green</option><option value='/css/rac_red.css'>red</option><option value='/css/rac_white.css'>white</option></select></div><br style="clear:both;"></div><div style='clear:both;'></div></ul><div id="mainpage">
|
||||
<div id='fullcontainer'>
|
||||
|
||||
<h2>List of Linked Hashes</h2>
|
||||
|
||||
<div class='bb_inline' onmouseover="Tip('<div id=\'objtooltip\' style=\'display:flex;max-width:400px\'><img style=\'margin-right:5px\' src=\'/Images/019572.png\' width=\'64\' height=\'64\' /><div><b>Ms. Pac-Man</b><br>(Atari 7800)</div></div>')" onmouseout="UnTip()" ><a href='/Game/13368'><img loading='lazy' alt='' title="Ms. Pac-Man" src='https://s3-eu-west-1.amazonaws.com/i.retroachievements.org/Images/019572.png' width='96' height='96' class='badgeimg' />Ms. Pac-Man (Atari 7800)</a></div><br><br><p><b>Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.</b></p>Currently this game has <b>2</b> unique ROM(s) registered for it with the following MD5s:<br><br><ul><li><code>12a6483c57d2060d1d07eed2f4cb63dd</code></li><li><code>fc0ea52a9fac557251b65ee680d951e5</code></li></ul><br> <br>
|
||||
</div>
|
||||
</div>
|
||||
<div style='clear:both;'></div><footer id='footer'><div><h4>RetroAchievements</h4><div><a href='/achievementList.php'>Achievements</a></div><div><a href='/leaderboardList.php'>Leaderboards</a></div><div><a href='/gameList.php'>Games</a></div></div><div><h4>Documentation</h4><div><a href='https://docs.retroachievements.org/Developers-Code-of-Conduct/' target='_blank'>Developers Code of Conduct</a></div><div><a href='https://docs.retroachievements.org/Users-Code-of-Conduct/' target='_blank'>Users Code of Conduct</a></div><div><a href='https://docs.retroachievements.org/FAQ/' target='_blank'>FAQ</a></div><div><a href='/APIDemo.php'>API</a></div></div><div><h4>Community</h4><div><a href='/forum.php'>Forums</a></div><div><a href='/userList.php'>Users</a></div><div><a href='/developerstats.php'>Developers</a></div></div><div><h4>Connect</h4><div><a href='https://www.patreon.com/bePatron?u=5403777' target='_blank'>Patreon</a></div><div><a href='https://discord.gg/dq2E4hE' target='_blank'>Discord</a></div><div><a href='https://github.com/RetroAchievements' target='_blank'>GitHub</a></div><div><a href='https://twitch.tv/retroachievementsorg' target='_blank'>Twitch</a></div><div><a href='https://facebook.com/RetroAchievementsPC/' target='_blank'>Facebook</a></div><div><a href='https://twitter.com/retrocheevos' target='_blank'>Twitter</a></div><div><a href='/rss.php'>RSS</a></div></div></footer></body>
|
||||
</html>
|
||||
@@ -0,0 +1,36 @@
|
||||
<!doctype html><html xmlns='https://www.w3.org/1999/xhtml' lang='en' xml:lang='en' >
|
||||
<head><link rel='stylesheet' href='/css/styles.css?v=1.67.0' media='screen'>
|
||||
<link rel='icon' type='image/png' href='/favicon.png'>
|
||||
<link rel='image_src' href='/Images/RA_Logo10.png'>
|
||||
<meta http-equiv='content-type' content='text/html; charset=UTF-8'>
|
||||
<meta name='robots' content='all'>
|
||||
<meta name='description' content='Adding achievements to your favourite retro games since 2012'>
|
||||
<meta name='keywords' content='games, retro, computer games, mega drive, genesis, rom, emulator, achievements'>
|
||||
<meta property="fb:app_id" content="490904194261313"><meta name='viewport' content='width=device-width,user-scalable = no'/>
|
||||
<meta name="theme-color" content="#2C2E30"><meta name="msapplication-TileColor" content="#2C2E30"><meta name="msapplication-TileImage" content="/favicon.png"><link rel="shortcut icon" type="image/png" href="/favicon.png" sizes="16x16 32x32 64x64"><link rel="apple-touch-icon" sizes="120x120" href="/favicon.png"><link rel='stylesheet' href='https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.23/themes/sunny/jquery-ui.css'>
|
||||
<script src='https://ajax.googleapis.com/ajax/libs/jquery/1.8.1/jquery.js'></script>
|
||||
<script src='https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.23/jquery-ui.js'></script>
|
||||
<script src='/vendor/watermark.js?v=1.67.0'></script>
|
||||
<script src='/js/all.js?v=1.67.0'></script>
|
||||
<script>window.assetUrl='https://s3-eu-west-1.amazonaws.com/i.retroachievements.org'</script>
|
||||
<title>Linked Hashes - RetroAchievements</title><script>
|
||||
var _gaq = _gaq || [];
|
||||
_gaq.push(['_setAccount', 'UA-37462159-1']);
|
||||
_gaq.push(['_trackPageview']);
|
||||
(function() {
|
||||
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
|
||||
ga.src = ('https:' == document.location.protocol ? 'https://' : 'http://') + 'stats.g.doubleclick.net/dc.js';
|
||||
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
|
||||
})();
|
||||
</script></head><body>
|
||||
<script src='/vendor/wz_tooltip.js'></script><div id='topborder'><span id='preload-01'></span><span id='preload-02'></span><span id='preload-03'></span></div>
|
||||
<div id='title'><div id='logocontainer'><a id='logo' href='/'><img src='/Images/RA_Logo10.png' alt='Retro Achievements logo'></a></div><div class='login'><p><img src='/UserPic/JailDesigner.png' alt='JailDesigner' style='float:right' align='right' width='64' height='64' class='userpic'><strong><a href='/user/JailDesigner'>JailDesigner</a></strong> (29088) <span class='TrueRatio'>(67289)</span><br><a href='/request/auth/logout.php?Redir=/linkedhashes.php?g=13371'>logout</a><br><a href='/inbox.php'><img id='mailboxicon' style='float:left' src='https://s3-eu-west-1.amazonaws.com/i.retroachievements.org/Images/_Mail.png' width='20' height='20'/> (<span id='mailboxcount'>0</span>)</a></p><br></div></div><div id='innermenu'><ul id='menuholder'><li><a href='#'>Games</a><div><ul><li class='dropdown-header'>Nintendo</li><li><a href='/gameList.php?c=4'>Game Boy</a></li><li><a href='/gameList.php?c=6'>Game Boy Color</a></li><li><a href='/gameList.php?c=5'>Game Boy Advance</a></li><li><a href='/gameList.php?c=7'>NES/Famicom</a></li><li><a href='/gameList.php?c=3'>SNES/Super Famicom</a></li><li><a href='/gameList.php?c=2'>Nintendo 64</a></li><li><a href='/gameList.php?c=18'>Nintendo DS</a></li><li><a href='/gameList.php?c=24'>Pokemon Mini</a></li><li><a href='/gameList.php?c=28'>Virtual Boy</a></li><li class='dropdown-header'>Atari</li><li><a href='/gameList.php?c=25'>Atari 2600</a></li><li><a href='/gameList.php?c=51'>Atari 7800</a></li><li><a href='/gameList.php?c=17'>Atari Jaguar</a></li><li><a href='/gameList.php?c=13'>Atari Lynx</a></li><li class='dropdown-header'>NEC</li><li><a href='/gameList.php?c=8'>PC Engine/TurboGrafx-16</a></li><li><a href='/gameList.php?c=47'>PC-8000/8800</a></li><li><a href='/gameList.php?c=49'>PC-FX</a></li></ul><ul><li class='dropdown-header'>Sega</li><li><a href='/gameList.php?c=33'>SG-1000</a></li><li><a href='/gameList.php?c=11'>Master System</a></li><li><a href='/gameList.php?c=15'>Game Gear</a></li><li><a href='/gameList.php?c=1'>Genesis/Mega Drive</a></li><li><a href='/gameList.php?c=9'>Sega CD</a></li><li><a href='/gameList.php?c=10'>Sega 32X</a></li><li><a href='/gameList.php?c=39'>Sega Saturn</a></li><li class='dropdown-header'>Sony</li><li><a href='/gameList.php?c=12'>PlayStation</a></li><li class='dropdown-header'>Other</li><li><a href='/gameList.php?c=43'>3DO Interactive Multiplayer</a></li><li><a href='/gameList.php?c=27'>Arcade</a></li><li><a href='/gameList.php?c=38'>Apple II</a></li><li><a href='/gameList.php?c=44'>ColecoVision</a></li><li><a href='/gameList.php?c=29'>MSX</a></li><li><a href='/gameList.php?c=14'>Neo Geo Pocket</a></li><li><a href='/gameList.php?c=46'>Vectrex</a></li><li><a href='/gameList.php?c=53'>WonderSwan</a></li><li><a href='/gameList.php?c=23'>Magnavox Odyssey 2</a></li></ul><ul><li><a href='/gameList.php'>All Games</a></li></ul></li><li><a href='#'>Achievements</a><div><ul><li><a href='/achievementList.php'>All Achievements</a></li><li class='divider'></li><li><a href='/achievementList.php?s=4&p=2'>Easy Achievements</a></li><li><a href='/gameSearch.php?p=0'>Hardest Achievements</a></li></ul></div></li><li><a href='#'>Community</a><div><ul><li><a href='/forum.php'>Forums</a></li><li><a href='/forum.php?c=1'>- Community</a></li><li><a href='/viewforum.php?f=25'>+- Competitions</a></li><li><a href='/forum.php?c=7'>- Developers</a></li><li><a href='/forumposthistory.php'>Recent Posts</a></li><li class='divider'></li><li><a href='/userList.php'>Users</a></li><li><a href='/developerstats.php'>Developers</a></li><li><a href='/globalRanking.php'>Global Ranking</a></li><li class='divider'></li><li><a href='https://docs.retroachievements.org/'>User Documentation</a></li><li><a href='https://docs.retroachievements.org/Developer-docs/'>Developer Documentation</a></li></ul></div></li><li><a href='/download.php'>Download</a></li><li><a href='#'>My Pages</a><div><ul><li><a href='/User/JailDesigner'>Profile</a></li><li><a href='/achievementList.php?s=14&p=1'>Achievements</a></li><li><a href='/friends.php'>Friends</a></li><li><a href='/history.php'>History</a></li><li><a href='/inbox.php'>Messages</a></li><li><a href='/setRequestList.php?u=JailDesigner'>Requested Sets</a></li><li class='divider'></li><li><a href='/controlpanel.php'>Settings</a></li><li class='divider'></li><li><a href='/request/auth/logout.php'>Log Out</a></li></ul></div></li><form action='/searchresults.php' method='get'><div class='searchbox'><input size='24' name='s' type='text' class='searchboxinput' value=''> <input type='submit' value='Search'></div></form><div class='searchbox'><select id='themeselect' onchange='ResetTheme(); return false;'><option selected value='/css/rac_blank.css'>blank</option><option value='/css/rac_green.css'>green</option><option value='/css/rac_red.css'>red</option><option value='/css/rac_white.css'>white</option></select></div><br style="clear:both;"></div><div style='clear:both;'></div></ul><div id="mainpage">
|
||||
<div id='fullcontainer'>
|
||||
|
||||
<h2>List of Linked Hashes</h2>
|
||||
|
||||
<div class='bb_inline' onmouseover="Tip('<div id=\'objtooltip\' style=\'display:flex;max-width:400px\'><img style=\'margin-right:5px\' src=\'/Images/033222.png\' width=\'64\' height=\'64\' /><div><b>Rampage</b><br>(Atari 7800)</div></div>')" onmouseout="UnTip()" ><a href='/Game/13371'><img loading='lazy' alt='' title="Rampage" src='https://s3-eu-west-1.amazonaws.com/i.retroachievements.org/Images/033222.png' width='96' height='96' class='badgeimg' />Rampage (Atari 7800)</a></div><br><br><p><b>Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.</b></p>Currently this game has <b>1</b> unique ROM(s) registered for it with the following MD5s:<br><br><ul><li><code>ac03806cef2558fc795a7d5d8dba7bc0</code></li></ul><br> <br>
|
||||
</div>
|
||||
</div>
|
||||
<div style='clear:both;'></div><footer id='footer'><div><h4>RetroAchievements</h4><div><a href='/achievementList.php'>Achievements</a></div><div><a href='/leaderboardList.php'>Leaderboards</a></div><div><a href='/gameList.php'>Games</a></div></div><div><h4>Documentation</h4><div><a href='https://docs.retroachievements.org/Developers-Code-of-Conduct/' target='_blank'>Developers Code of Conduct</a></div><div><a href='https://docs.retroachievements.org/Users-Code-of-Conduct/' target='_blank'>Users Code of Conduct</a></div><div><a href='https://docs.retroachievements.org/FAQ/' target='_blank'>FAQ</a></div><div><a href='/APIDemo.php'>API</a></div></div><div><h4>Community</h4><div><a href='/forum.php'>Forums</a></div><div><a href='/userList.php'>Users</a></div><div><a href='/developerstats.php'>Developers</a></div></div><div><h4>Connect</h4><div><a href='https://www.patreon.com/bePatron?u=5403777' target='_blank'>Patreon</a></div><div><a href='https://discord.gg/dq2E4hE' target='_blank'>Discord</a></div><div><a href='https://github.com/RetroAchievements' target='_blank'>GitHub</a></div><div><a href='https://twitch.tv/retroachievementsorg' target='_blank'>Twitch</a></div><div><a href='https://facebook.com/RetroAchievementsPC/' target='_blank'>Facebook</a></div><div><a href='https://twitter.com/retrocheevos' target='_blank'>Twitter</a></div><div><a href='/rss.php'>RSS</a></div></div></footer></body>
|
||||
</html>
|
||||
@@ -0,0 +1,36 @@
|
||||
<!doctype html><html xmlns='https://www.w3.org/1999/xhtml' lang='en' xml:lang='en' >
|
||||
<head><link rel='stylesheet' href='/css/styles.css?v=1.67.0' media='screen'>
|
||||
<link rel='icon' type='image/png' href='/favicon.png'>
|
||||
<link rel='image_src' href='/Images/RA_Logo10.png'>
|
||||
<meta http-equiv='content-type' content='text/html; charset=UTF-8'>
|
||||
<meta name='robots' content='all'>
|
||||
<meta name='description' content='Adding achievements to your favourite retro games since 2012'>
|
||||
<meta name='keywords' content='games, retro, computer games, mega drive, genesis, rom, emulator, achievements'>
|
||||
<meta property="fb:app_id" content="490904194261313"><meta name='viewport' content='width=device-width,user-scalable = no'/>
|
||||
<meta name="theme-color" content="#2C2E30"><meta name="msapplication-TileColor" content="#2C2E30"><meta name="msapplication-TileImage" content="/favicon.png"><link rel="shortcut icon" type="image/png" href="/favicon.png" sizes="16x16 32x32 64x64"><link rel="apple-touch-icon" sizes="120x120" href="/favicon.png"><link rel='stylesheet' href='https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.23/themes/sunny/jquery-ui.css'>
|
||||
<script src='https://ajax.googleapis.com/ajax/libs/jquery/1.8.1/jquery.js'></script>
|
||||
<script src='https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.23/jquery-ui.js'></script>
|
||||
<script src='/vendor/watermark.js?v=1.67.0'></script>
|
||||
<script src='/js/all.js?v=1.67.0'></script>
|
||||
<script>window.assetUrl='https://s3-eu-west-1.amazonaws.com/i.retroachievements.org'</script>
|
||||
<title>Linked Hashes - RetroAchievements</title><script>
|
||||
var _gaq = _gaq || [];
|
||||
_gaq.push(['_setAccount', 'UA-37462159-1']);
|
||||
_gaq.push(['_trackPageview']);
|
||||
(function() {
|
||||
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
|
||||
ga.src = ('https:' == document.location.protocol ? 'https://' : 'http://') + 'stats.g.doubleclick.net/dc.js';
|
||||
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
|
||||
})();
|
||||
</script></head><body>
|
||||
<script src='/vendor/wz_tooltip.js'></script><div id='topborder'><span id='preload-01'></span><span id='preload-02'></span><span id='preload-03'></span></div>
|
||||
<div id='title'><div id='logocontainer'><a id='logo' href='/'><img src='/Images/RA_Logo10.png' alt='Retro Achievements logo'></a></div><div class='login'><p><img src='/UserPic/JailDesigner.png' alt='JailDesigner' style='float:right' align='right' width='64' height='64' class='userpic'><strong><a href='/user/JailDesigner'>JailDesigner</a></strong> (29088) <span class='TrueRatio'>(67289)</span><br><a href='/request/auth/logout.php?Redir=/linkedhashes.php?g=13372'>logout</a><br><a href='/inbox.php'><img id='mailboxicon' style='float:left' src='https://s3-eu-west-1.amazonaws.com/i.retroachievements.org/Images/_Mail.png' width='20' height='20'/> (<span id='mailboxcount'>0</span>)</a></p><br></div></div><div id='innermenu'><ul id='menuholder'><li><a href='#'>Games</a><div><ul><li class='dropdown-header'>Nintendo</li><li><a href='/gameList.php?c=4'>Game Boy</a></li><li><a href='/gameList.php?c=6'>Game Boy Color</a></li><li><a href='/gameList.php?c=5'>Game Boy Advance</a></li><li><a href='/gameList.php?c=7'>NES/Famicom</a></li><li><a href='/gameList.php?c=3'>SNES/Super Famicom</a></li><li><a href='/gameList.php?c=2'>Nintendo 64</a></li><li><a href='/gameList.php?c=18'>Nintendo DS</a></li><li><a href='/gameList.php?c=24'>Pokemon Mini</a></li><li><a href='/gameList.php?c=28'>Virtual Boy</a></li><li class='dropdown-header'>Atari</li><li><a href='/gameList.php?c=25'>Atari 2600</a></li><li><a href='/gameList.php?c=51'>Atari 7800</a></li><li><a href='/gameList.php?c=17'>Atari Jaguar</a></li><li><a href='/gameList.php?c=13'>Atari Lynx</a></li><li class='dropdown-header'>NEC</li><li><a href='/gameList.php?c=8'>PC Engine/TurboGrafx-16</a></li><li><a href='/gameList.php?c=47'>PC-8000/8800</a></li><li><a href='/gameList.php?c=49'>PC-FX</a></li></ul><ul><li class='dropdown-header'>Sega</li><li><a href='/gameList.php?c=33'>SG-1000</a></li><li><a href='/gameList.php?c=11'>Master System</a></li><li><a href='/gameList.php?c=15'>Game Gear</a></li><li><a href='/gameList.php?c=1'>Genesis/Mega Drive</a></li><li><a href='/gameList.php?c=9'>Sega CD</a></li><li><a href='/gameList.php?c=10'>Sega 32X</a></li><li><a href='/gameList.php?c=39'>Sega Saturn</a></li><li class='dropdown-header'>Sony</li><li><a href='/gameList.php?c=12'>PlayStation</a></li><li class='dropdown-header'>Other</li><li><a href='/gameList.php?c=43'>3DO Interactive Multiplayer</a></li><li><a href='/gameList.php?c=27'>Arcade</a></li><li><a href='/gameList.php?c=38'>Apple II</a></li><li><a href='/gameList.php?c=44'>ColecoVision</a></li><li><a href='/gameList.php?c=29'>MSX</a></li><li><a href='/gameList.php?c=14'>Neo Geo Pocket</a></li><li><a href='/gameList.php?c=46'>Vectrex</a></li><li><a href='/gameList.php?c=53'>WonderSwan</a></li><li><a href='/gameList.php?c=23'>Magnavox Odyssey 2</a></li></ul><ul><li><a href='/gameList.php'>All Games</a></li></ul></li><li><a href='#'>Achievements</a><div><ul><li><a href='/achievementList.php'>All Achievements</a></li><li class='divider'></li><li><a href='/achievementList.php?s=4&p=2'>Easy Achievements</a></li><li><a href='/gameSearch.php?p=0'>Hardest Achievements</a></li></ul></div></li><li><a href='#'>Community</a><div><ul><li><a href='/forum.php'>Forums</a></li><li><a href='/forum.php?c=1'>- Community</a></li><li><a href='/viewforum.php?f=25'>+- Competitions</a></li><li><a href='/forum.php?c=7'>- Developers</a></li><li><a href='/forumposthistory.php'>Recent Posts</a></li><li class='divider'></li><li><a href='/userList.php'>Users</a></li><li><a href='/developerstats.php'>Developers</a></li><li><a href='/globalRanking.php'>Global Ranking</a></li><li class='divider'></li><li><a href='https://docs.retroachievements.org/'>User Documentation</a></li><li><a href='https://docs.retroachievements.org/Developer-docs/'>Developer Documentation</a></li></ul></div></li><li><a href='/download.php'>Download</a></li><li><a href='#'>My Pages</a><div><ul><li><a href='/User/JailDesigner'>Profile</a></li><li><a href='/achievementList.php?s=14&p=1'>Achievements</a></li><li><a href='/friends.php'>Friends</a></li><li><a href='/history.php'>History</a></li><li><a href='/inbox.php'>Messages</a></li><li><a href='/setRequestList.php?u=JailDesigner'>Requested Sets</a></li><li class='divider'></li><li><a href='/controlpanel.php'>Settings</a></li><li class='divider'></li><li><a href='/request/auth/logout.php'>Log Out</a></li></ul></div></li><form action='/searchresults.php' method='get'><div class='searchbox'><input size='24' name='s' type='text' class='searchboxinput' value=''> <input type='submit' value='Search'></div></form><div class='searchbox'><select id='themeselect' onchange='ResetTheme(); return false;'><option selected value='/css/rac_blank.css'>blank</option><option value='/css/rac_green.css'>green</option><option value='/css/rac_red.css'>red</option><option value='/css/rac_white.css'>white</option></select></div><br style="clear:both;"></div><div style='clear:both;'></div></ul><div id="mainpage">
|
||||
<div id='fullcontainer'>
|
||||
|
||||
<h2>List of Linked Hashes</h2>
|
||||
|
||||
<div class='bb_inline' onmouseover="Tip('<div id=\'objtooltip\' style=\'display:flex;max-width:400px\'><img style=\'margin-right:5px\' src=\'/Images/024678.png\' width=\'64\' height=\'64\' /><div><b>Robotron 2084</b><br>(Atari 7800)</div></div>')" onmouseout="UnTip()" ><a href='/Game/13372'><img loading='lazy' alt='' title="Robotron 2084" src='https://s3-eu-west-1.amazonaws.com/i.retroachievements.org/Images/024678.png' width='96' height='96' class='badgeimg' />Robotron 2084 (Atari 7800)</a></div><br><br><p><b>Hashes are used to confirm if two copies of a file are identical. We use it to ensure the player is using the same ROM as the achievement developer, or a compatible one.</b></p>Currently this game has <b>1</b> unique ROM(s) registered for it with the following MD5s:<br><br><ul><li><code>66ecaafe1b82ae68ffc96267aaf7a4d7</code></li></ul><br> <br>
|
||||
</div>
|
||||
</div>
|
||||
<div style='clear:both;'></div><footer id='footer'><div><h4>RetroAchievements</h4><div><a href='/achievementList.php'>Achievements</a></div><div><a href='/leaderboardList.php'>Leaderboards</a></div><div><a href='/gameList.php'>Games</a></div></div><div><h4>Documentation</h4><div><a href='https://docs.retroachievements.org/Developers-Code-of-Conduct/' target='_blank'>Developers Code of Conduct</a></div><div><a href='https://docs.retroachievements.org/Users-Code-of-Conduct/' target='_blank'>Users Code of Conduct</a></div><div><a href='https://docs.retroachievements.org/FAQ/' target='_blank'>FAQ</a></div><div><a href='/APIDemo.php'>API</a></div></div><div><h4>Community</h4><div><a href='/forum.php'>Forums</a></div><div><a href='/userList.php'>Users</a></div><div><a href='/developerstats.php'>Developers</a></div></div><div><h4>Connect</h4><div><a href='https://www.patreon.com/bePatron?u=5403777' target='_blank'>Patreon</a></div><div><a href='https://discord.gg/dq2E4hE' target='_blank'>Discord</a></div><div><a href='https://github.com/RetroAchievements' target='_blank'>GitHub</a></div><div><a href='https://twitch.tv/retroachievementsorg' target='_blank'>Twitch</a></div><div><a href='https://facebook.com/RetroAchievementsPC/' target='_blank'>Facebook</a></div><div><a href='https://twitter.com/retrocheevos' target='_blank'>Twitter</a></div><div><a href='/rss.php'>RSS</a></div></div></footer></body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user