[FE6, FE7, FE7J, FE8J] Remove Arrow Wiggling Advancing RN in FE6, FE7, FE7J, and FE8J

, ,

Based on the fe8 remove arrow wiggling advancing RN patch ([FE8] Remove Arrow Wiggling Advancing RN), I was able to create a version of this for FE6, FE7, FE7J, and FE8J using the febuilder disassembler and some guessing and checking. You could put these in a txt file and load it using ‘Insert EA’ in febuilder. Here they are:

FE6:

PUSH
    // Remove arrow wiggling advancing RN
    ORG 0x19730
    SHORT 0x2000 0
POP

FE7:

PUSH
    // Remove arrow wiggling advancing RN
    ORG 0x19F90
    SHORT 0x2000 0
POP

FE7J:

PUSH
    // Remove arrow wiggling advancing RN
    ORG 0x1A370
    SHORT 0x2000 0
POP

FE8J:

PUSH
    // Remove arrow wiggling advancing RN
    ORG 0x1A44E
    SHORT 0x2000 0
POP
2 Likes

Thanks for the patch implementation for FE7J, FE7U, FE6.
// patch already exists for FE8J.

I added it as a patch for FEBuilderGBA.

//for example.
//for FE7U

NAME=移動の矢印を描画するときに乱数を使用しようしない
NAME.en=Remove arrow wiggling advancing RN


//アドレスパッチとして実装します
TYPE=SWITCH
TAG=#ENGINE

COMBO=Fix: Do NOT use RN|ONN|Default: use RN|OFF

DETERMINATION_ADDRESS=0x019F90

ONN:0x019F90=0x00 0x20 0x00 0x00
OFF:0x019F90=0xE6 0xF7 0x4E 0xFF


AUTHOR=clackmer https://feuniverse.us/t/fe6-fe7-fe7j-fe8j-remove-arrow-wiggling-advancing-rn-in-fe6-fe7-fe7j-and-fe8j/13354 ,Crazycolorz5 https://feuniverse.us/t/fe8-remove-arrow-wiggling-advancing-rn/4049
INFO=移動の矢印を描画するときに、乱数テーブルを進めないようにします。\r\nファルコン法を防止します。\r\nファルコン法を防止します。
INFO.en=When rendering the arrow of movement, do not advance the random number table.
NAME.zh=绘制运动箭头时不要使用随机数
INFO.zh=渲染移动箭头时,不要前进随机数表。
2 Likes