Skip to content

Commit 38abc84

Browse files
authored
new mod "coin magnet"
1 parent f8c5a8e commit 38abc84

8 files changed

+76
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
gametitle=Sly 2: Band of Thieves (NTSC) [SCUS-97316] [08/13/04 00:32]
2+
3+
[Advantage\Coin Magnet]
4+
comment=Greatly increases the coin pickup range.
5+
author=NiV-L-A, zami3333
6+
7+
patch=1,EE,201C6534,extended,3C01447A
8+
patch=1,EE,202C0D7C,extended,447A0000
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
gametitle=Sly 2: Band of Thieves (PAL v2.01) [SCES-52529] [10/06/04 21:23]
2+
3+
[Advantage\Coin Magnet]
4+
comment=Greatly increases the coin pickup range.
5+
author=NiV-L-A, zami3333
6+
7+
patch=1,EE,201C679C,extended,3C01447A
8+
patch=1,EE,202C811C,extended,447A0000
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
SR "gametitle=Sly 2: Band of Thieves (NTSC) [SCUS-97316] [08/13/04 00:32]\n\n"
2+
SR "[Advantage\Coin Magnet] \n"
3+
SR "comment=Greatly increases the coin pickup range.\n"
4+
SR "author=NiV-L-A, zami3333\n"
5+
// thanks to niv for finding the coin range offset + global variable and doing the research
6+
7+
ASM_START 1C6534
8+
lui $at,0x447A // set coin pickup range to 1000 (a float in the coin struct, default = 65)
9+
ASM_END
10+
WF 2C0D7C 1000 // another coin pickup range (global var, default = 300)
11+
// both floats need to be set to high
12+
13+
// 1000 is about the range of a "strong" magnet, increase it to like 99999999 to get all the world's coins
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
SR "gametitle=Sly 2: Band of Thieves (PAL v2.01) [SCES-52529] [10/06/04 21:23]\n\n"
2+
SR "[Advantage\Coin Magnet] \n"
3+
SR "comment=Greatly increases the coin pickup range.\n"
4+
SR "author=NiV-L-A, zami3333\n"
5+
// thanks to niv for finding the coin range offset + global variable and doing the research
6+
7+
ASM_START 1C679C
8+
lui $at,0x447A // set coin pickup range to 1000 (a float in the coin struct, default = 65)
9+
ASM_END
10+
WF 2C811C 1000 // another coin pickup range (global var, default = 300)
11+
// both floats need to be set to high
12+
13+
// 1000 is about the range of a "strong" magnet, increase it to like 99999999 to get all the world's coins
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
gametitle=Sly 3: Honor Among Thieves (PAL) [SCES-53409] [09/21/05 18:43]
2+
3+
[Advantage\Coin Magnet]
4+
comment=Greatly increases the coin pickup range.
5+
author=NiV-L-A, zami3333
6+
7+
patch=1,EE,201F7E44,extended,3C01447A
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
gametitle=Sly 3: Honor Among Thieves (NTSC) [SCUS-97464] [08/28/05 02:12]
2+
3+
[Advantage\Coin Magnet]
4+
comment=Greatly increases the coin pickup range.
5+
author=NiV-L-A, zami3333
6+
7+
patch=1,EE,201F79CC,extended,3C01447A
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
SR "gametitle=Sly 3: Honor Among Thieves (NTSC) [SCUS-97464] [08/28/05 02:12]\n\n"
2+
SR "[Advantage\Coin Magnet] \n"
3+
SR "comment=Greatly increases the coin pickup range.\n"
4+
SR "author=NiV-L-A, zami3333\n"
5+
// thanks to niv for finding the coin range stuff in sly 2 and doing the research
6+
7+
ASM_START 1F79CC
8+
lui $at,0x447A // set coin pickup range to 1000 (a float in the coin struct, default = 65)
9+
ASM_END
10+
// 1000 is about the range of a "strong" magnet, increase it to like 99999999 to get all the world's coins
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
SR "gametitle=Sly 3: Honor Among Thieves (PAL) [SCES-53409] [09/21/05 18:43]\n\n"
2+
SR "[Advantage\Coin Magnet] \n"
3+
SR "comment=Greatly increases the coin pickup range.\n"
4+
SR "author=NiV-L-A, zami3333\n"
5+
// thanks to niv for finding the coin range stuff in sly 2 and doing the research
6+
7+
ASM_START 1F7E44
8+
lui $at,0x447A // set coin pickup range to 1000 (a float in the coin struct, default = 65)
9+
ASM_END
10+
// 1000 is about the range of a "strong" magnet, increase it to like 99999999 to get all the world's coins

0 commit comments

Comments
 (0)