ROM Hack [Spider] ARCode

lcleong

Well-Known Member
Member
Joined
Jul 5, 2008
Messages
356
Trophies
0
XP
231
Country
Malaysia
any codes money for persona q (US) and etrian odyssey iv legends of the titan (US)?
and heroes of ruin valor points (US) or (EU) codes?
 

Melly Pix

Gbatemp's Lady Vulpix
Member
Joined
Jul 14, 2009
Messages
182
Trophies
1
Location
Kelowna, B.C.
XP
1,057
Country
Canada
Embarrassed to say, but I need help. :/

I did all this,
**IN ORDER TO DO THIS YOU MUST KNOW HOW AND BE ABLE TO INSTALL .CIA FILES! (IF YOU DON’T KNOW HOW, SEARCH THE COMMUNITY TO LEARN HOW FIRST!)**

1 – Don’t panic!

2 – Go here: https://gbatemp.net/threads/3dnus.376488/ and download “3dnus”!

3 – Unzip the archive using your favorite program.

4 – Open the folder that you unzipped the program.

5 – Open either “3DNUS_64bit.exe” or “3DNUS_32bit.exe” in your computer.

6 – In the program, below “Title ID” type(without quotes): “0004003000009D02”

7 - Below “version” type(without quotes): “4096”

8 – Check the box that next to it says: “Change version number(s) to:” and type in the box next to it (without quotes): “65535”

9 – Make sure the box that says: “Pack as .CIA” is checked, and press download.

10 – Wait for it to download! (It will tell you when it is done!)

11– In the same folder that 3dnus is, will appear a new file named: “0004003000009D02.cia”

12 – Copy “0004003000009D02.cia” to your SD card.

13 – Place your SD card in your 3ds and install “0004003000009D02.cia”

14 – Congratulations! You installed a exploitable version of the browser and you are now ready to go!
step for step (using the US browser ID instead for my 3dsU)
I'm using an old 3ds, and i've attempted to dump memory using http://dukesrg.no-ip.org/3ds/rop?memdump.dat&memdump.bin and all that happens is the screen freezes at executing, left for an hour with nothing changing.
I attempted to use http://lunarcookies.github.io/cheat.html to create a cheat link and nothing ended up happening.
I have memdump.bin, arcode.bin, and arcode.cht for my Etrian Mystery Dungeon.

Yet this still happens :/
sorry for the annoying plea for help!
/embarrassed
 

duke_srg

Well-Known Member
Member
Joined
Mar 1, 2011
Messages
1,862
Trophies
0
Age
44
Location
Moscow
XP
807
Country
Serbia, Republic of
Zeldamoron
What is your 3ds model, firmware and browser verisons. have you cleared cookies/history in browser?



Decided to share Action Replay code for for patching at variable offset with signature search made as example for dsrules.
This will prevent creating a bunch of code.bins with similar trivial content.
Code:
D3000000 16800000
C0000000 00180000
50000000 DF070000
50000004 04000000
5000000C 00000000
DC000000 FFFFFFDF
00000000 E8030000
00000004 63000000
C0000000 00000000
D0000000 00000000
DC000000 00000004
D1000000 00000000
Explanation:
string 1 - set search start offset
string 2 - set area length to search, in units (i.e. if search in 32-bit word increments, divide area size in bytes by four. in most cases data is aligned to 4 bytes on 3DS)
string 3 - check if word at offset+0 = 0x7DF, skip to D0000000 if not
string 4 - check if word at offset+4 = 0x4, skip to D0000000 if not
string 5 - check if word at offset+0x0C = 0, skip to D0000000 if not
string 6 - set offset = offset - 21, i.e. the actual data to change offset relative to the found signature (needed in case of negative offset only)
string 7 - set word at offset = 0x3E8
string 8 - set word at offset+4 = 0x63
string 9 - set loop counter to zero - exit loop if patch is needed only at one offset
string 10 - end of if checks
string 11 - offset = offset +4 - iterate the next offset
string 12 - end of loop
 

Melly Pix

Gbatemp's Lady Vulpix
Member
Joined
Jul 14, 2009
Messages
182
Trophies
1
Location
Kelowna, B.C.
XP
1,057
Country
Canada
Zeldamoron
What is your 3ds model, firmware and browser verisons. have you cleared cookies/history in browser?

Model#: CTR001(USA)
Sysnand: 9.20-20U
Sysnand Browser: 1.7567
Emunand: GW3D 9.2.0-20U
Emunand Browser: 1.7567
(I followed the steps previously mentions and spoofed etc with 4097, 65535 being the spoof)

Edit1:
Oh! Oh my goodness, the screen started fluttering when dumping now, like others!
It must've been the cookie/history clearing!
I'll be back with more news when I test a little further, thank you for the help! >///<

Edit2:
I got an SD Card error for some reason when trying to dump memory from my etrian mystery dungeon .cia as well as .3ds :/
An error has occurred. Please save your data in any software currently in use, and then restart the system.
 

Zidapi

Well-Known Member
Member
Joined
Dec 1, 2002
Messages
3,112
Trophies
3
Age
42
Website
Visit site
XP
2,681
Country
Oh! Oh my goodness, the screen started fluttering when dumping now, like others!
It must've been the cookie/history clearing!
I'll be back with more news when I test a little further, thank you for the help!

Yeah I've found it best to clear the cookies and history before every memory dump.
 

SilverfalconLP

Well-Known Member
Member
Joined
Dec 23, 2013
Messages
111
Trophies
0
Age
40
XP
913
Country
Zeldamoron
What is your 3ds model, firmware and browser verisons. have you cleared cookies/history in browser?



Decided to share Action Replay code for for patching at variable offset with signature search made as example for dsrules.
This will prevent creating a bunch of code.bins with similar trivial content.
Code:
D3000000 16800000
C0000000 00180000
50000000 DF070000
50000004 04000000
5000000C 00000000
DC000000 FFFFFFDF
00000000 E8030000
00000004 63000000
C0000000 00000000
D0000000 00000000
DC000000 00000004
D1000000 00000000
Explanation:
string 1 - set search start offset
string 2 - set area length to search, in units (i.e. if search in 32-bit word increments, divide area size in bytes by four. in most cases data is aligned to 4 bytes on 3DS)
string 3 - check if word at offset+0 = 0x7DF, skip to D0000000 if not
string 4 - check if word at offset+4 = 0x4, skip to D0000000 if not
string 5 - check if word at offset+0x0C = 0, skip to D0000000 if not
string 6 - set offset = offset - 21, i.e. the actual data to change offset relative to the found signature (needed in case of negative offset only)
string 7 - set word at offset = 0x3E8
string 8 - set word at offset+4 = 0x63
string 9 - set loop counter to zero - exit loop if patch is needed only at one offset
string 10 - end of if checks
string 11 - offset = offset +4 - iterate the next offset
string 12 - end of loop


Can you help modify your code for pokemon Rumble World ,this is my offsets image
pkrumw.png
 

danmc

Well-Known Member
Newcomer
Joined
Jan 2, 2011
Messages
97
Trophies
1
Age
35
XP
356
Country
warlorder, i make some codes for fea, but only to start and finish the game, so only with the money code and renown beated the game in about 5 hours....but i left the game and start making codes to another games....look at this txt, is the only i have haha....

Edit:i don't know if the codes in blank works.....i know the codes with names works...
 

Attachments

  • fire emblem.txt
    987 bytes · Views: 464

war lorder

Member
Newcomer
Joined
Apr 9, 2015
Messages
17
Trophies
0
Age
28
XP
96
Country
Danmc Thank you so much, I'll try them out but either way they will still be very helpful

what other games have you tried getting codes for?
 

DryTaste

Well-Known Member
Member
Joined
Sep 18, 2014
Messages
162
Trophies
0
Age
28
XP
140
Country
Netherlands
Is it normal that my touchscreen starts flashing after dumping the ram? (forcing me to shut down my 3ds)
The dump appears on my SD card tho (only FCRAMx.bin)
 
D

Deleted User

Guest
Thanks i found it



I'm running but, it isn't work. My step is:
1. Go to this page: https://gbatemp.net/threads/spider-arcode.383937/page-36#post-5435805
2. Pick the Fire Emblem Awakening (U) - Stat Increasing Item x255 – Hawkeye91 code
3. Go here: http://dukesrg.no-ip.org/3ds/rop.html
4. ROP launcher --> Action Replay --> paste the code on step 2 --> QR code
5. Open camera --> scan code
6. it tell me Executing....
7. Put Fire Emblem Card run game, but nothing happen (sysnand) or I must run on GW mode?
May I wrong?? Pls Help

The first thing you need to do is to run the game. The code works when the game is "suspended" and you go into the web browser.
 

DryTaste

Well-Known Member
Member
Joined
Sep 18, 2014
Messages
162
Trophies
0
Age
28
XP
140
Country
Netherlands
Alright made me some Rune Factory 4 Codes;

Code:
Add the slot in front of the item code.
Slot 1 = 0260d4dc (+28 for next slot)
 
Medicine bread: 0000493E
Cooking bread: 00004940
Weapon bread: 00004942
Accessory bread: 00004144
Farming bread: 00004946
 
  • Like
Reactions: Midgetgirl05

Site & Scene News

Popular threads in this forum

General chit-chat
Help Users
  • No one is chatting at the moment.
    K3Nv2 @ K3Nv2: Lol rappers still promoting crypto