Results 1 to 10 of 56

Thread: ASM To be or not to be?

Hybrid View

  1. #1
    Member
    Join Date
    Aug 2008
    Location
    Arizona
    Posts
    1,073
    Blog Entries
    2

    Default

    Well, this code transfers all items from the recycle bin to your inventory (player 1)
    I'll make an all-players version too
    Code:
    @[[Convert to Thumb]]
    add r2,pc,#1
    bx r2
    .thumb
    
    ldr r1,inventoryslot
    ldr r2,recyclerslot
    mov r3,#0x1C
    
    transfer:
    ldrh r4,[r2,r3]
    strh r4,[r1,r3]
    sub r3,#2
    bpl transfer
    bx lr
    
    .arm
    inventoryslot:
    .long 0x21D88FE
    recyclerslot:
    .long 0x21ECCAE

  2. #2

    Default

    I really wish I knew where I put my ar now! So... Is there some specific program I should use to convert that into code? (I think there is.. Ima gonna look it up... )
    Thank you for making the code!

  3. #3
    Member
    Join Date
    Aug 2008
    Location
    Arizona
    Posts
    1,073
    Blog Entries
    2

    Default

    Quote Originally Posted by Drew9561995 View Post
    I really wish I knew where I put my ar now! So... Is there some specific program I should use to convert that into code? (I think there is.. Ima gonna look it up... )
    Thank you for making the code!
    http://game-hackers.com/forum/showthread.php?t=423
    Make sure you select "Animal Crossing"

    also put an activator on the top and a d2 line on the bottom

  4. #4

    Default

    Mkay my pc doesnt have wifi so I have to transfer everything by usb.. Might take a while... Thank you for that link! Helpful stuff.

    I hope GH automatically merges posts...
    Do you want me to post the code it was compiled into?

  5. #5
    Member
    Join Date
    Aug 2008
    Location
    Arizona
    Posts
    1,073
    Blog Entries
    2

    Default

    Quote Originally Posted by Drew9561995 View Post
    Mkay my pc doesnt have wifi so I have to transfer everything by usb.. Might take a while... Thank you for that link! Helpful stuff.

    I hope GH automatically merges posts...
    Do you want me to post the code it was compiled into?
    it should be this

    Code:
    023FF090 012FFF11
    E0000000 00000020
    E28F2001 E12FFF12
    4A044903 5AD4231C
    3B0252CC 4770D5FB
    021D88FE 021ECCAE
    023FF090 E3520003
    After adding an activator, for example l+R it should be this
    Code:
    94000130 FCFF0000
    023FF090 012FFF11
    E0000000 00000020
    E28F2001 E12FFF12
    4A044903 5AD4231C
    3B0252CC 4770D5FB
    021D88FE 021ECCAE
    023FF090 E3520003
    D2000000 00000000

  6. The Following 3 Users Say Thank You to dragonboy269 For This Useful Post:


  7. #6

    Default

    Oh darn... you already converted it and everything. All well Thank you!! And yeh, I think that is what it ended up looking like. So, if I wanna learn ASM what do you recommend I do first? (After I find my AR of course. )

  8. #7
    Member
    Join Date
    Aug 2008
    Location
    Arizona
    Posts
    1,073
    Blog Entries
    2

    Default

    Quote Originally Posted by Drew9561995 View Post
    Oh darn... you already converted it and everything. All well Thank you!! And yeh, I think that is what it ended up looking like. So, if I wanna learn ASM what do you recommend I do first? (After I find my AR of course. )
    I can teach you XD

Posting Permissions

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