ROM Hack [REQUEST] Update / maintain Pokemon Legends Arceus "true" 60 FPS mod

lucky

Well-Known Member
Newcomer
Joined
Sep 22, 2017
Messages
72
Trophies
0
XP
1,087
Country
Hong Kong
“60帧不加速”
"60fps-no-speedup"
https://yuzu-emu.org/wiki/switch-mods/
“原先的那行代码不变,添加一行,变成如下”
"The original line of code remains unchanged. Add a line as follows"

“宝可梦剑 v1.3.2.pchtxt-》”
"Pokémon Sword v1.3.2.pchtxt->"
@enabled
018A2C88 21008052
0203EEB8 2B50FE00
@stop

“宝可梦盾 v1.3.2.pchtxt-》”
"Pokémon Shield v1.3.2.pchtxt->"
@enabled
018A2D18 21008052
0203EEB8 2B50FE00
@stop

“宝可梦Let's Go! 皮卡丘 v1.0.2.pchtxt-》”
"Pokémon Let's Go! Pikachuv! v1.0.2.pchtxt->"
@enabled
005E7858 15008052
00F7EEC0 2B50FE00
@stop

“宝可梦Let's Go! 伊布 v1.0.2.pchtxt-》”
“Pokémon Let's Go! Eevee! v1.0.2.pchtxt->”
@enabled
005E78B8 15008052
00F7EEC0 2B50FE00
@stop

//如果想要自定义加速,和本贴#69楼相同
//If you want to custom-speedup, it is the same as #69
//注意剑盾和皮卡丘伊布,加速超过4x会导致穿墙穿透图层
//If the speedup is more than 4x, will through the wall and penetrate the layer
 

JrpgAddict

Well-Known Member
Member
Joined
Oct 7, 2016
Messages
697
Trophies
0
Age
38
XP
1,656
Country
Netherlands
@nsobid-66F15C281EFA7ADDEB5FA537A6F8C1DB615671AE00

# Pokémon Legends: Arceus [01001F5010DFA000] v1.1.0 - 60fps

@flag print_values
@flag offset_shift 0x100

// Menu Speedups,and some effects are double speed

@enabled
02AA2710 0B000014
0397E8D8 2B50FE00
@stop

// original code by theboy181
// v1.1.0 updated by sweet
any chance for 30, 45, 60 FPS variant for switch version v1.1.0?
 

lucky

Well-Known Member
Newcomer
Joined
Sep 22, 2017
Messages
72
Trophies
0
XP
1,087
Country
Hong Kong
any chance for 30, 45, 60 FPS variant for switch version v1.1.0?
“参照本贴29楼和31楼”
Reference to the #29th and #31st of this-post"




“共计2行代码”
第1行帧数,固定不变,不要去改动它。
第2行帧时间
"2 lines of code in total,
Framerate in line 1, Fixed, don't change it
Frametimes in line 2"

@enabled
02AA2710 0B000014-》Framerate(Don't change)
0397E8D8 2B50FE00-》Frametimes(Can be changed)
@stop




“45帧举例”
"example:45FPS"

步骤①,1000/帧数=帧数时间
Step①,1000/Framerate=Frametimes
1000/45=22.222223

步骤②, 8位转换,帧数时间*1000000
Step②,8-digit conversion,Frametimes*1000000
22.222223*1000000=22222223

步骤③,10进制换算成16进制
Step③,Convert Decimal to Hexadecimal
22222223(DEC)-》153158F(HEX)

步骤④,倒序排列
Step④,inverted order
01 53 15 8F=》8F 15 53 01

步骤⑤,把2B50FE00改成8F155301,镶嵌到代码里面,最后结果
Step⑤,Change 2B50FE00 to 8F155301, Embed it into the code, And the final result

@enabled
02AA2710 0B000014
0397E8D8 8F155301
@stop




“同理,如果想要30帧、60帧”
"Similarly, if you want 30FPS and 60FPS"

“30帧”"30FPS"
@enabled
02AA2710 0B000014
0397E8D8 56A0FC01
@stop

“60帧”"60FPS"
@enabled
02AA2710 0B000014
0397E8D8 2B50FE00
@stop
 
Last edited by lucky,

Bird13579

New Member
Newbie
Joined
Mar 13, 2022
Messages
2
Trophies
0
Age
123
Location
21416545465
XP
35
Country
Antarctica
“参照本贴29楼和31楼”
Reference to the #29th and #31st of this-post"




“共计2行代码”
第1行帧数,固定不变,不要去改动它。
第2行帧时间
"2 lines of code in total,
Framerate in line 1, Fixed, don't change it
Frametimes in line 2"

@enabled
02AA2710 0B000014-》Framerate(Don't change)
0397E8D8 2B50FE00-》Frametimes(Can be changed)
@stop




“45帧举例”
"example:45FPS"

步骤①,1000/帧数=帧数时间
Step①,1000/Framerate=Frametimes
1000/45=22.222223

步骤②, 8位转换,帧数时间*1000000
Step②,8-digit conversion,Frametimes*1000000
22.222223*1000000=22222223

步骤③,10进制换算成16进制
Step③,Convert Decimal to Hexadecimal
22222223(DEC)-》153158F(HEX)

步骤④,倒序排列
Step④,inverted order
01 53 15 8F=》8F 15 53 01

步骤⑤,把2B50FE00改成8F155301,镶嵌到代码里面,最后结果
Step⑤,Change 2B50FE00 to 8F155301, Embed it into the code, And the final result

@enabled
02AA2710 0B000014
0397E8D8 8F155301
@stop




“同理,如果想要30帧、60帧”
"Similarly, if you want 30FPS and 60FPS"

“30帧”"30FPS"
@enabled
02AA2710 0B000014
0397E8D8 56A0FC01
@stop

“60帧”"60FPS"
@enabled
02AA2710 0B000014
0397E8D8 2B50FE00
@stop
Do you have pokemon shining pearl 1.2.0 60FPS?
 

lucky

Well-Known Member
Newcomer
Joined
Sep 22, 2017
Messages
72
Trophies
0
XP
1,087
Country
Hong Kong
Do you have pokemon shining pearl 1.2.0 60FPS?
“注意我本人此处上传的附件”
"Pay attention to the attachment I uploaded here"

①,它其中里面的“不加速”部分,用于模拟器(柚子yuzu&龙神ryujinx)和任天堂Switch主机都没有问题。
①,The "no speedup" part of it is used for the Emulation (Yuzu&Ryujinx) and Nintendo-Switch.

②,然而它其中里面的(加速)部分,另外处理过,专门用于yuzu和ryujinx。用于NS主机的话,可能会导致过于快,和里面标注的速度不符合。
②,Then the "speedup" part of it has been processed separately, which is specially used for Yuzu&ryujinx. If it is used for Nintendo-Switch, it may be too fast and inconsistent with the speed marked inside.




“如果你电脑上面动手能力强的话,可以用这个工具自己去制作”
"If you have strong hands-on ability on the computer, you can use this tool to make it yourself"
https://github.com/Ai0796/BDSP-Randomizers/releases
 

Attachments

  • 60FPS.zip
    895 KB · Views: 233

Hazerou

60 FPS Cheat Dude
Member
Joined
Jul 27, 2018
Messages
499
Trophies
1
Age
25
XP
2,234
Country
United States
“参照本贴29楼和31楼”
Reference to the #29th and #31st of this-post"




“共计2行代码”
第1行帧数,固定不变,不要去改动它。
第2行帧时间
"2 lines of code in total,
Framerate in line 1, Fixed, don't change it
Frametimes in line 2"

@enabled
02AA2710 0B000014-》Framerate(Don't change)
0397E8D8 2B50FE00-》Frametimes(Can be changed)
@stop




“45帧举例”
"example:45FPS"

步骤①,1000/帧数=帧数时间
Step①,1000/Framerate=Frametimes
1000/45=22.222223

步骤②, 8位转换,帧数时间*1000000
Step②,8-digit conversion,Frametimes*1000000
22.222223*1000000=22222223

步骤③,10进制换算成16进制
Step③,Convert Decimal to Hexadecimal
22222223(DEC)-》153158F(HEX)

步骤④,倒序排列
Step④,inverted order
01 53 15 8F=》8F 15 53 01

步骤⑤,把2B50FE00改成8F155301,镶嵌到代码里面,最后结果
Step⑤,Change 2B50FE00 to 8F155301, Embed it into the code, And the final result

@enabled
02AA2710 0B000014
0397E8D8 8F155301
@stop




“同理,如果想要30帧、60帧”
"Similarly, if you want 30FPS and 60FPS"

“30帧”"30FPS"
@enabled
02AA2710 0B000014
0397E8D8 56A0FC01
@stop

“60帧”"60FPS"
@enabled
02AA2710 0B000014
0397E8D8 2B50FE00
@stop
This right here! Hold on I'll download the game and convert these to Cheat Code format. Thanks for sharing knowledge!
 
  • Like
Reactions: JrpgAddict

Hazerou

60 FPS Cheat Dude
Member
Joined
Jul 27, 2018
Messages
499
Trophies
1
Age
25
XP
2,234
Country
United States
Pokémon Legends Arceus v1.1.0
TID: 01001F5010DFA000
BID: 66F15C281EFA7ADD

[60 FPS]
04000000 0397E8D8 00FE502B
580F0000 042EC288
580F1000 00000210
780F0000 00000F14
640F0000 00000000 00000001

[Default 30 FPS]
04000000 0397E8D8 01FCA056
580F0000 042EC288
580F1000 00000210
780F0000 00000F14
640F0000 00000000 00000002

[Downscale Handheld 504p / Docked 756p]
580F0000 042ECFC8
580F1000 000000C8
780F0000 00000020
640F0000 00000000 00000000
780F0000 00000004
640F0000 00000000 7FFFFFFF
780F0000 00000010
680F0000 0000001D 00000004

[Remain Handheld 720p / Docked 1080p]
580F0000 042ECFC8
580F1000 000000C8
780F0000 00000020
640F0000 00000000 00000001
780F0000 00000004
640F0000 00000000 7FFFFFFF
780F0000 00000010
680F0000 00000000 00000001


Known Issues;

1.) Menu Speedups,and some effects are double speed.

2.) Crash may occur if 60 FPS is Active after you Press A in the Main Title of the Game.

3.) FPS will drop straight to 30 and the Game will slow down whenever Switch can't handle 60 FPS.

Now I don't know if it works good on Emulators too.
And unfortunately 45 & 50 FPS only changes the Game Speed. Not the FPS Cap.

Update #1;
Fixed [Remain Handheld 720p / Docked 1080p] not working properly.
 
Last edited by Hazerou,
  • Like
Reactions: JrpgAddict

JrpgAddict

Well-Known Member
Member
Joined
Oct 7, 2016
Messages
697
Trophies
0
Age
38
XP
1,656
Country
Netherlands
Pokémon Legends Arceus v1.1.0
TID: 01001F5010DFA000
BID: 66F15C281EFA7ADD

[60 FPS]
04000000 0397E8D8 00FE502B
580F0000 042EC288
580F1000 00000210
780F0000 00000F14
640F0000 00000000 00000001

[Default 30 FPS]
04000000 0397E8D8 01FCA056
580F0000 042EC288
580F1000 00000210
780F0000 00000F14
640F0000 00000000 00000002

[Downscale Handheld 504p / Docked 756p]
580F0000 042ECFC8
580F1000 000000C8
780F0000 00000020
640F0000 00000000 00000000
780F0000 00000004
640F0000 00000000 7FFFFFFF
780F0000 00000010
680F0000 0000001D 00000004

[Remain Handheld 720p / Docked 1080p]
580F0000 042ECFC8
580F1000 000000C8
780F0000 00000020
640F0000 00000000 00000001
780F0000 00000014
680F0000 00000000 00000001


Known Issues;

1.) Menu Speedups,and some effects are double speed.

2.) Crash may occur if 60 FPS is Active after you Press A in the Main Title of the Game.

3.) FPS will drop straight to 30 and the Game will slow down whenever Switch can't handle 60 FPS.

Now I don't know if it works good on Emulators too.
And unfortunately 45 & 50 FPS only changes the Game Speed. Not the FPS Cap.
he posted latest Lets Go and Pokemon Sword/Shield too if u can convert those!
 

lucky

Well-Known Member
Newcomer
Joined
Sep 22, 2017
Messages
72
Trophies
0
XP
1,087
Country
Hong Kong
he posted latest Lets Go and Pokemon Sword/Shield too if u can convert those!
"Pokémon Sword ver1.3.2"
TID: 0100ABF008968000
BID: A3B75BCD3311385A

[120FPS v1.3.2]
040B0000 018A2C88 52800011

[60FPS v1.3.2]
040B0000 018A2C88 52800021

[30FPS v1.3.2]
{default}
040B0000 018A2C88 52800041

[15FPS v1.3.2]
040B0000 018A2C88 52800061

[0.5x Speed v1.3.2]
040B0000 0203EEB8 00FE502B

[1x Speed v1.3.2]
{default}
040B0000 0203EEB8 01FCA056

[2x Speed v1.3.2]
040B0000 0203EEB8 03F940AB

[60FPS No Speedup v1.3.2]
{The 60fps itself comes with 2x speed}
{0.5x speed}
{Then 60fps with 1x speed}
040B0000 018A2C88 52800021
040B0000 0203EEB8 00FE502B




"Pokémon Shield ver1.3.2"
TID:01008DB008C2C000
BID:A16802625E7826BF

[120FPS v1.3.2]
040B0000 018A2D18 52800011

[60FPS v1.3.2]
040B0000 018A2D18 52800021

[30FPS v1.3.2]
{default}
040B0000 018A2D18 52800041

[15FPS v1.3.2]
040B0000 018A2D18 52800061

[0.5x Speed v1.3.2]
040B0000 0203EEB8 00FE502B

[1x Speed v1.3.2]
{default}
040B0000 0203EEB8 01FCA056

[2x Speed v1.3.2]
040B0000 0203EEB8 03F940AB

[60FPS No Speedup v1.3.2]
{The 60fps itself comes with 2x speed}
{0.5x speed}
{Then 60fps with 1x speed}
040B0000 018A2D18 52800021
040B0000 0203EEB8 00FE502B
 
  • Like
Reactions: JrpgAddict

Hazerou

60 FPS Cheat Dude
Member
Joined
Jul 27, 2018
Messages
499
Trophies
1
Age
25
XP
2,234
Country
United States
Pokémon Legends Arceus v1.1.0
TID: 01001F5010DFA000
BID: 66F15C281EFA7ADD

[60 FPS]
04000000 0397E8D8 00FE502B
580F0000 042EC288
580F1000 00000210
780F0000 00000F14
640F0000 00000000 00000001

[Default 30 FPS]
04000000 0397E8D8 01FCA056
580F0000 042EC288
580F1000 00000210
780F0000 00000F14
640F0000 00000000 00000002

[Downscale Handheld 504p / Docked 756p]
580F0000 042ECFC8
580F1000 000000C8
780F0000 00000020
640F0000 00000000 00000000
780F0000 00000004
640F0000 00000000 7FFFFFFF
780F0000 00000010
680F0000 0000001D 00000004

[Remain Handheld 720p / Docked 1080p]
580F0000 042ECFC8
580F1000 000000C8
780F0000 00000020
640F0000 00000000 00000001
780F0000 00000004
640F0000 00000000 7FFFFFFF
780F0000 00000010
680F0000 00000000 00000001


Known Issues;

1.) Menu Speedups,and some effects are double speed.

2.) Crash may occur if 60 FPS is Active after you Press A in the Main Title of the Game.

3.) FPS will drop straight to 30 and the Game will slow down whenever Switch can't handle 60 FPS.

Now I don't know if it works good on Emulators too.
And unfortunately 45 & 50 FPS only changes the Game Speed. Not the FPS Cap.

Update #1;
Fixed [Remain Handheld 720p / Docked 1080p] not working properly.
Update #1;
Fixed [Remain Handheld 720p / Docked 1080p] not working properly.
 

Hazerou

60 FPS Cheat Dude
Member
Joined
Jul 27, 2018
Messages
499
Trophies
1
Age
25
XP
2,234
Country
United States
60 fps gives me only slowdown, for now 30 fps is normal (legends arceus)
Already stated that FPS will drop straight to 30 and Game Speed will slow down whenever Switch can't handle 60 FPS.

Try using Max OC;
1785
921
1600

If you have Mariko, further OC will be better.

And run the Game in Handheld Mode and use the 504p Cheat. It significantly improves performance and the Graphics doesn't look that bad too.

If it's still 30 FPS and slow, then we can blame Nintendo Switch's weak hardware.
 

Bird13579

New Member
Newbie
Joined
Mar 13, 2022
Messages
2
Trophies
0
Age
123
Location
21416545465
XP
35
Country
Antarctica
"Pokémon Sword ver1.3.2"
TID: 0100ABF008968000
BID: A3B75BCD3311385A

[120FPS v1.3.2]
040B0000 018A2C88 52800011

[60FPS v1.3.2]
040B0000 018A2C88 52800021

[30FPS v1.3.2]
{default}
040B0000 018A2C88 52800041

[15FPS v1.3.2]
040B0000 018A2C88 52800061

[0.5x Speed v1.3.2]
040B0000 0203EEB8 00FE502B

[1x Speed v1.3.2]
{default}
040B0000 0203EEB8 01FCA056

[2x Speed v1.3.2]
040B0000 0203EEB8 03F940AB

[60FPS No Speedup v1.3.2]
{The 60fps itself comes with 2x speed}
{0.5x speed}
{Then 60fps with 1x speed}
040B0000 018A2C88 52800021
040B0000 0203EEB8 00FE502B




"Pokémon Shield ver1.3.2"
TID:01008DB008C2C000
BID:A16802625E7826BF

[120FPS v1.3.2]
040B0000 018A2D18 52800011

[60FPS v1.3.2]
040B0000 018A2D18 52800021

[30FPS v1.3.2]
{default}
040B0000 018A2D18 52800041

[15FPS v1.3.2]
040B0000 018A2D18 52800061

[0.5x Speed v1.3.2]
040B0000 0203EEB8 00FE502B

[1x Speed v1.3.2]
{default}
040B0000 0203EEB8 01FCA056

[2x Speed v1.3.2]
040B0000 0203EEB8 03F940AB

[60FPS No Speedup v1.3.2]
{The 60fps itself comes with 2x speed}
{0.5x speed}
{Then 60fps with 1x speed}
040B0000 018A2D18 52800021
040B0000 0203EEB8 00FE502B
Updated pokemon shining pearl 1.3.0 today. Do you have the 60FPS file for this version? Thx (Yuzu)
 
Last edited by Bird13579,

lucky

Well-Known Member
Newcomer
Joined
Sep 22, 2017
Messages
72
Trophies
0
XP
1,087
Country
Hong Kong
Updated pokemon shining pearl 1.3.0 today. Do you have the 60FPS file for this version? Thx (Yuzu)
①,“耐心等待此处工具更新后支持v1.3.0,我会跟随它更新到v1.3.0,专门去制作此游戏60帧Mod补丁v1.3.0”
"Wait patiently for the tool here to support v1.3.0 after being updated. I will follow it to update to v1.3.0 and specially make the 60fps mod patch v1.3.0 of this game"
https://github.com/Ai0796/BDSP-Randomizers/releases

②,“而且我前面上传的此游戏60帧Mod补丁v1.2.0,用于v1.3.0同样生效,小哥哥你先暂时用这个”
"Moreover, the 60fps mod patch v1.2.0 I uploaded earlier is also effective for v1.3.0. Cute guy, you can use this for the time being."
 
Last edited by lucky,

lucky

Well-Known Member
Newcomer
Joined
Sep 22, 2017
Messages
72
Trophies
0
XP
1,087
Country
Hong Kong
@nsobid-AEE8F150DDA1B5A838806E1A5EA6827AD9F3C51E

# Pokémon Legends: Arceus [01001F5010DFA000] v1.1.1 - 60fps

@flag print_values
@flag offset_shift 0x100

// Menu Speedups,and some effects are double speed

@enabled
02AA2780 0B000014
0397E8D8 2B50FE00
@stop

// original code by theboy181
// v1.1.1 updated by sweet
 

Attachments

  • 60FPS.zip
    549 bytes · Views: 173

lucky

Well-Known Member
Newcomer
Joined
Sep 22, 2017
Messages
72
Trophies
0
XP
1,087
Country
Hong Kong
"Pokémon Legends: Arceus ver1.1.1"
TID: 0100ABF008968000
BID: AEE8F150DDA1B5A8

[60FPS v1.1.1]
040B0000 02AA2780 1400000B

[30FPS v1.1.1]
{default}
040B0000 02AA2780 34000168

[Game Speed0.5x v1.1.1]
040B0000 0397E8D8 00FE502B

[Game Speed1x v1.1.1]
{default}
040B0000 0397E8D8 01FCA056

[Game Speed2x v1.1.1]
040B0000 0397E8D8 03F940AB

[60FPS No Speedup v1.1.1]
{The 60fps itself comes with Game speed2x}
{Game Speed0.5}
{Then 60fps with game speed1x}
040B0000 02AA2780 1400000B
040B0000 0397E8D8 00FE502B
 

lucky

Well-Known Member
Newcomer
Joined
Sep 22, 2017
Messages
72
Trophies
0
XP
1,087
Country
Hong Kong
`ps1,此处后面金手指代码,XXXXXXXX代入以下数值
After the cheats code here, replace XXXXXXXX with the following value
Game Speed 0.25x->007F2816
Game Speed 0.5x->00FE502B
Game Speed 0.75x->017D7840
Game Speed 1.0x->01FCA056
Game Speed 1.25x->27BC86B
Game Speed 1.5x->02FAF080
Game Speed 1.75x->037A1896
Game Speed 2.0x->03F940AB

`ps2,ZR键就是那个投掷精灵球的按键,也就是说你去投掷球和投掷精灵就会变速
ZR key is the key to throw the Pokéball&Pokémon, that is to say, when you throw the Pokéball and throw the Pokéball, you will change game speed

`ps3,注意还有2个按键,是十字方向键的左右键,不是摇杆的左右
Note that there are two keys, the left and right keys of the cross direction key, not the left and right keys of the rocker




"Pokémon Legends: Arceus ver1.1.1"
TID: 0100ABF008968000
BID: AEE8F150DDA1B5A8
[→ Game Speed up v1.1.1]
80004000
040B0000 0397E8D8 XXXXXXXX
20000000

[← Game Speed up v1.1.1]
80001000
040B0000 0397E8D8 XXXXXXXX
20000000

[ZR Game speed down v1.1.1]
80000200
040B0000 0397E8D8 XXXXXXXX
20000000
 
Last edited by lucky,

JrpgAddict

Well-Known Member
Member
Joined
Oct 7, 2016
Messages
697
Trophies
0
Age
38
XP
1,656
Country
Netherlands
@nsobid-AEE8F150DDA1B5A838806E1A5EA6827AD9F3C51E

# Pokémon Legends: Arceus [01001F5010DFA000] v1.1.1 - 60fps

@flag print_values
@flag offset_shift 0x100

// Menu Speedups,and some effects are double speed

@enabled
02AA2780 0B000014
0397E8D8 2B50FE00
@stop

// original code by theboy181
// v1.1.1 updated by sweet
got same for the v1.1.0 too? game speed and fps cheats?
 

lucky

Well-Known Member
Newcomer
Joined
Sep 22, 2017
Messages
72
Trophies
0
XP
1,087
Country
Hong Kong
got same for the v1.1.0 too? game speed and fps cheats?
"ver1.1.0"
1st,Cute guy,If you need 1.1.0.pchtxt(Codes for IPS-patch), This post #68,#69,#83




2nd,If you need the same [Cheat-Codes AMS and SXOS] as the #87 of this post

"Pokémon Legends: Arceus ver1.1.0"
TID: 0100ABF008968000
BID: 66F15C281EFA7ADD

[60FPS v1.1.0]
040B0000 02AA2710 1400000B

[30FPS v1.1.0]
{default}
040B0000 02AA2710 34000168

[Game Speed0.5x v1.1.0]
040B0000 0397E8D8 00FE502B

[Game Speed1x v1.1.0]
{default}
040B0000 0397E8D8 01FCA056

[Game Speed2x v1.1.0]
040B0000 0397E8D8 03F940AB

[60FPS No Speedup v1.1.0]
{The 60fps itself comes with Game speed2x}
{Game Speed0.5}
{Then 60fps with game speed1x}
040B0000 02AA2710 1400000B
040B0000 0397E8D8 00FE502B

"After the cheats code here, replace XXXXXXXX with the following value}
Game Speed 0.25x->007F2816
Game Speed 0.5x->00FE502B
Game Speed 0.75x->017D7840
Game Speed 1.0x->01FCA056
Game Speed 1.25x->27BC86B
Game Speed 1.5x->02FAF080
Game Speed 1.75x->037A1896
Game Speed 2.0x->03F940AB

"ZR key is the key to throw the Pokéball&Pokémon, that is to say, when you throw the Pokéball and throw the Pokéball, you will change game speed"

"Note that there are two keys, the left and right keys of the cross direction key, not the left and right keys of the rocker"

"Pokémon Legends: Arceus ver1.1.0"
TID: 0100ABF008968000
BID: 66F15C281EFA7ADD

[→ Game Speed up v1.1.0]
80004000
040B0000 0397E8D8 XXXXXXXX
20000000

[← Game Speed up v1.1.0]
80001000
040B0000 0397E8D8 XXXXXXXX
20000000

[ZR Game speed down v1.1.0]
80000200
040B0000 0397E8D8 XXXXXXXX
20000000
 
Last edited by lucky,
  • Love
Reactions: JrpgAddict

JrpgAddict

Well-Known Member
Member
Joined
Oct 7, 2016
Messages
697
Trophies
0
Age
38
XP
1,656
Country
Netherlands
"Pokémon Sword ver1.3.2"
TID: 0100ABF008968000
BID: A3B75BCD3311385A


[1x Speed v1.3.2]
{default}
040B0000 0203EEB8 01FCA056

[2x Speed v1.3.2]
040B0000 0203EEB8 03F940AB
Is it possible to make x1 x2 x3 x4 game speed with no walktrough walls??
I keep walking trhough walls with x2 game speed sometimes and sometimes i dont.
 

Site & Scene News

Popular threads in this forum

General chit-chat
Help Users
    Psionic Roshambo @ Psionic Roshambo: 24,000 hmmmm lol