Page 2 of 2 FirstFirst 12
Results 11 to 12 of 12

Thread: Remove Home Seed?

  1. #11

    Default

    This code removes everything in the house including "invisible seeds". For outside, I would recommend Real Time World Edit.
    3DS Friend Code: 4699-6293-3106

  2. #12

    Default

    Someone Test This?

    Indoors Search And Replace (L+R) (Should Work..dunno):
    XXXX=Search Item
    YYY=Replace Item

    1.0:
    Code:
    94000130 FCFF0000
    023FF090 012FFF11
    E0000000 00000036
    E59F4024 E1DF22B6
    E1DF52B4 E1DF01BC
    E19410B0 E1510002
    1A000000 E18450B0
    E2400002 5AFFFFF9
    E12FFF1E 021E53F0
    XXXX122C 0000YYYY
    023FF090 E3520003
    D2000000 00000000
    1.1:
    Code:
    94000130 FCFF0000
    023FF090 012FFF11
    E0000000 00000036
    E59F4024 E1DF22B6
    E1DF52B4 E1DF01BC
    E19410B0 E1510002
    1A000000 E18450B0
    E2400002 5AFFFFF9
    E12FFF1E 021E5970 
    XXXX122C 0000YYYY
    023FF090 E3520003
    D2000000 00000000
    ASM Source:
    Code:
    ldr r4, HouseSlot
    ldrh r2, SearchItem
    ldrh r5, ReplaceItem
    ldrh r0, HouseLoopy
     
    HouseLoop:
    ldrh r1, [r4,r0]
    cmp r1, r2
    bne NotReplace
    strh r5, [r4,r0]
    NotReplace:
    sub r0, r0, #2
    bpl HouseLoop
    bx lr
     
    HouseSlot:
    .word 0x21E53F0
    HouseLoopy:
    .hword 0x122C
    SearchItem:
    .hword 0xFFF1
    ReplaceItem:
    .hword 0x14FD
    3DS Friend Code: 4699-6293-3106

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •