Try this:
Code:ldr r1, Slot1 ldrh r2, Rose strh r2, [r1] Slot1: .long 0x21D88FE Rose: .short 0x001C
Try this:
Code:ldr r1, Slot1 ldrh r2, Rose strh r2, [r1] Slot1: .long 0x21D88FE Rose: .short 0x001C
Now another question.
How do you make it execute more than one thing at once? Like, I want it to make me have 99k in my 1st inventory slot both offline and online. I know there's an easier way but this is just an example. Here's what I did
When I try that, it just freezes after the action replay screen.Code:removed
Last edited by dragonboy269; 04-28-2009 at 06:14 PM.
presumably the online slot is in use and your slamming gold roses at the address?
Remember to always click the thanks button of those who help you! It makes them feel wanted:↓
It would be that ^^ btw the OnlineSlot is a pointer. IF I remember correctly.Code:ldr r1, Slot1 ldr r3, OnlineSlot1 ldrh r2, Money strh r2, [r1] strh r2, [r3] Slot1: .long 0x21D88FE Money: .short 0x14FD OnlineSlot1: .long 0x21D1EB2
Edit: Actually he does some adding routine >__> so I dont suggest constantly writing to the online slot, without the adding routine in it.
Last edited by Maniac; 01-05-2009 at 05:48 PM.
Say what you mean, mean what you say, and let your actions speak for you.
You mean the literals? (Things at the bottom) it really shouldn't matter.
Say what you mean, mean what you say, and let your actions speak for you.