Page 1 of 6 123 ... LastLast
Results 1 to 10 of 56

Thread: ASM To be or not to be?

  1. #1

    Default ASM To be or not to be?

    Hello!! I have recently lost* my Ar and so probably cannot do anything but I just thought I would let you guys know that I am going to try and learn ASM.
    Eventually I'll make some codes.
    The ones I had in mind? Well how bout this?
    *Copies items in nooks store into your pockets*
    or one like *copies/retrieves items from lost'n'found* or from the recycle.
    Maybe make a code that adjusts to your surroundings. Like you walk into any neighbors house press lr and duplicates of all the furniture and wallpaper are in your pockets.

    However since I do not know much + I just lost my AR if any of you guys would like to try and make the code go ahead. Maybe explain how you did it once your done.

    *I have found my ar!

    Thank you guys!!
    Last edited by Drew956; 07-24-2010 at 12:26 AM. Reason: Realized post contained negative self-talk

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

    Default

    Quote Originally Posted by Drew9561995 View Post
    Hello!! I have recently lost my Ar and so probably cannot do anything but I just thought I would let you guys know that I am going to try and learn ASM.
    Maybe eventually I'll make some pointless code.
    The ones I had in mind? Well how bout this?
    *Copies items in nooks store into your pockets*
    or a lamer one like *copies/retrieves items from lost'n'found* or from the recycle.
    Maybe make a code that adjusts to your surroundings. Like you walk into any neighbors house press lr and duplicates of all the furniture and wallpaper are in your pockets.

    However since I do not know much + I just lost my AR if any of you guys would like to try and make the code go ahead. Maybe explain how you did it once your done.

    Thank you guys!!
    those are pretty simple, ill make them all in a sec XD

  3. #3

    Default

    0_0 *Bows down to dragonboy269's godliness in awe and amazement*

  4. #4
    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

  5. #5

    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!

  6. #6
    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

  7. #7

    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?

  8. #8
    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

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


  10. #9

    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. )

  11. #10
    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
  •