Page 1 of 2 12 LastLast
Results 1 to 10 of 12

Thread: Animal Crossing: Wild World Text To Item V4

  1. #1

    Default Animal Crossing: Wild World Text To Item V4

    "Text To Item V4" is just a little code I've been working on. Here's what it does:

    Code:
    Type zrXXXX Y into the chat and submit it. 
    XXXX = Starting Item, Y = 1 or 4 (depending on the increment)
    So for example, say if I typed zr13fe 1 into the chat.
    Slot 1 will have 0x13FE (green feather), Slot 2 will have 0x13FF (blue feather), Slot 3 will have 0x1400 (yellow feather), etc.

    Now say if I typed zr1400 4 into the chat.
    Slot 1 will have 0x1400 (yellow feather), Slot 2 will have 0x1404 (rainbow feather), Slot 3 will have 0x1408 (red tulips) , etc.

    So basically, the code increments using the user's input "Y" (that being 1 or 4) and adds "Y" to the previous hex number from the previous slot to the next slot (looping). The code is good for helpful players who like to help the unfortunate. You can quickly fill your slots with furniture sets, feather sets, music, etc. without having to individually type one hex at a time. I posted in here first because I am never on Wi-Fi so I am unable to test the code online. If someone tests the code please post back here and tell me if it works or not (code testers will be appreciated).

    I might decide to make another version that does zrXXXX Y Z (Z being the users choice of how many slots to fill). Anyways, here's the code for all three versions:

    1.0:
    Code:
    023FF090 012FFF11
    E0000000 000000A2
    E28F0001 E12FFF10
    A524491F 8868880B
    D1384283 800888A8
    20003102 220F240C
    3101780B DB002B3A
    40133309 18C040A3
    D5F53C04 780A3101
    D0052A31 2A34DB23
    DB20D005 E01EDC1F
    E0032401 2404E01B
    E018E000 4B104A0E
    2B00781B 4A0BD102
    781B4B0C 436B882D
    801018D2 25002100
    18D1231C DB01428A
    E004DC05 19058810
    80153202 4770E7F6
    022AF136 021D88FE
    021CFC26 021D02EC
    021CBD48 727A228C
    00007830 00000000
    023FF090 E3520003

    1.1:
    Code:
    023FF090 012FFF11
    E0000000 000000A2
    E28F0001 E12FFF10
    A524491F 8868880B
    D1384283 800888A8
    20003102 220F240C
    3101780B DB002B3A
    40133309 18C040A3
    D5F53C04 780A3101
    D0052A31 2A34DB23
    DB20D005 E01EDC1F
    E0032401 2404E01B
    E018E000 4B104A0E
    2B00781B 4A0BD102
    781B4B0C 436B882D
    801018D2 25002100
    18D1231C DB01428A
    E004DC05 19058810
    80153202 4770E7F6
    022AF776 021D8E7E
    021D01A6 021D086C
    021CC2C8 727A228C
    00007830 00000000
    023FF090 E3520003

    EU:
    Code:
    023FF090 012FFF11
    E0000000 000000A2
    E28F0001 E12FFF10
    A524491F 8868880B
    D1384283 800888A8
    20003102 220F240C
    3101780B DB002B3A
    40133309 18C040A3
    D5F53C04 780A3101
    D0052A31 2A34DB23
    DB20D005 E01EDC1F
    E0032401 2404E01B
    E018E000 4B104A0E
    2B00781B 4A0BD102
    781B4B0C 436B882D
    801018D2 25002100
    18D1231C DB01428A
    E004DC05 19058810
    80153202 4770E7F6
    022B3356 021DC526
    021D384E 021D3F14
    021CF970 727A228C
    00007830 00000000
    023FF090 E3520003
    3DS Friend Code: 4699-6293-3106

  2. #2

    Default

    I tested the 1.1 version of the code online and offline and it worked great! If I was still doing noob orders, this code
    could be very handy.

  3. The Following User Says Thank You to genji_bunny For This Useful Post:


  4. #3

    Default

    Thanks for testing the code. I appreciate it
    3DS Friend Code: 4699-6293-3106

  5. #4

    Default

    I'd test your code, but my Action Replay is still going senile. I can try it, but I have a feeling it will freeze as soon as I type the prefix "zr." So, it's supposed to fill all of the slots with incremented items? If you put in 0 for Y, would it fill your slots with the same item? It sounds really handy!
    Last edited by Xyneline; 09-06-2011 at 03:44 PM.

  6. #5

    Default

    Quote Originally Posted by Xyneline View Post
    I'd test your code, but my Action Replay is still going senile. I can try it, but I have a feeling it will freeze as soon as I type the prefix "zr." So, it's supposed to fill all of the slots with incremented items?
    Yup, all slots are filled with the starting item hex in slot 1 then it increments by 1 or 4 from the previous hex in the previous slot to the next slot.

    Quote Originally Posted by Xyneline View Post
    If you put in 0 for Y, would it fill your slots with the same item? It sounds really handy!
    It would seem that way but it doesn't. I've included a check for only 1 and 4 because 1 and 4 are the common increment offsets for items in AC:WW.
    If Y==0, the code ends. Here's a snippet from the routine that does the check:
    Code:
    @check if the user typed 1 or 4
    @and move a byte corresponding to the number typed
    ldrb r2,[r1]
    cmp r2,#0x31
    beq $kipThis
    blt Exit
    cmp r2,#0x34
    beq SkipThi$
    blt Exit
    bgt Exit
    b Exit
    So basically, if Y != 1 or Y != 4, the code ends and does nothing.

    3DS Friend Code: 4699-6293-3106

  7. #6

    Default

    Ah, I see. I tried it, but it froze when I sent the text. It's probably my AR.

  8. #7

    Default

    I wish I could help find a solution to your AR problem, but sadly I don't know how.

    Is it still having problems with other text related codes or just this one?
    3DS Friend Code: 4699-6293-3106

  9. #8

    Default

    Nah, it's ok. I won't buy another AR until perhaps a 3DS one comes out. My AR still works with the Text-to-Item code I used to use, which has a select+start activator. I think it might have problems with codes that use a typed activator, like dragonboy's last Text-to-AR code.

  10. #9

    Default

    I definitely wouldn't know how to fix that AR problem since it's very rare.

    Quote Originally Posted by Xyneline View Post
    I won't buy another AR until perhaps a 3DS one comes out.
    AR3DS sounds promising, but I have a feeling it won't be $19.99-$24.99 (US Price) possibly a little higher since the 3DS is expensive.

    Somewhat Off Topic: There appears to be an actual R43DS. Are people already hacking 3DS? Also, I don't really recommend that site if you plan on buying from there during Christmas time since it took them like 6 months to ship my Acekard...

    Quick Edit: Seems as if this supports "Action Replay Codes". Maybe Action Replay codes for DS games are usable for 3DS users.
    3DS Friend Code: 4699-6293-3106

  11. #10
    J.P. (Global Moderator) Maniac's Avatar
    Join Date
    Sep 2007
    Location
    Ohio, USA
    Posts
    2,083
    Blog Entries
    5

    Default

    May want to possibly rework this so its a bit more universal.. i.e. 0-(w\e amounts of slots here) could be used.

    Say what you mean, mean what you say, and let your actions speak for you.


Posting Permissions

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