ROM Hack [Spider] ARCode

hawkeye91

Well-Known Member
Newcomer
Joined
Feb 16, 2015
Messages
62
Trophies
0
XP
248
Country
United States
has anyone tried searching for incenses for Shin Megami Tensei IV? I'd like to try it except that I have whooping 0 items across the board and don't have any to modify the values... I imagine I could try to modify items that I think are located in similar region and do some dumping/guesswork too but yeah... haven't touched AR code since the days of GBA so I can't say I feel confident in searching the locations.

its easier for smt iv if you use this..
 

KazoWAR

Well-Known Member
OP
Member
Joined
Aug 12, 2008
Messages
1,952
Trophies
1
Age
35
Location
Winter Haven
XP
2,136
Country
United States
I found a bug in arcode.

Code type EXXXXXXX YYYYYYYY does not work as intended.

It should, if working properly, copy YYYYYYYY bytes to 0x14000000+XXXXXXX -- and the code looks like it should do this, but it actually doesn't.

You start by doing

Offset = CodeOffset + (First8 & 0xFFFFFFF);
Data = Second8;

Then, you loop to read data and write it, using
while ((Data > 0x00) && (ProcessedLines < LineCount))
{
...
}

There are two bugs here.

1. You check if Data should be Double 32 bit improperly.

if (Data >= 0x04)//Double 32bit
{
....
}
else if (Data >= 0x04)//32bit
{
This should be
if (Data >= 0x08) //Double 32 bit.
{
....
}
else if (Data >= 0x04)//32bit
{

2. Data is an unsigned int, not a signed int.

As declared at the top, unsigned int Data = 0;.

However, your condition for continuing the loop is that "(Data > 0x00)"

Data, as an unsigned int, will always be > 0 unless it is exactly equal to zero.

I guess this isn't actually an issue if your reading-the-correct-number-of-bytes code works properly, but because of bug #1 if data % 8 != 0 Code type EXXXXXXX YYYYYYYY will currently read until the code ends to the specified offset instead of reading only the specified number of bytes.

i could have sworn i put an 8 there. also for the second part i guess it could be Data != 0x00
 

Februarysn0w

Well-Known Member
Member
Joined
Oct 31, 2014
Messages
1,206
Trophies
0
Age
36
XP
837
Country
Japan
If the code does not work for them search the FCRAM "ItemData" offset "0325xxxx"


offset
and put the address from "0D" 00 00 00 00 80


when did you load the code? always freeze on my 3DS. of course I changed the first offset for mine.
WtIzE6F.png
 

nanika

文鎮じゃダメ!まぁ、こんな文字小さしすぎてどうせ読めないっしょ。
Member
Joined
Apr 22, 2008
Messages
249
Trophies
0
XP
216
Country
United States
I also make a new code for "Denpaningen RPG Free" "電波人間PRG Free" its Japanese jewel Billing type game
By the way, checking in reports your current amount of jewels to the devs. (Though with the v1.5 glitches even 999 isn't too farfetched I guess.)
 

Februarysn0w

Well-Known Member
Member
Joined
Oct 31, 2014
Messages
1,206
Trophies
0
Age
36
XP
837
Country
Japan
By the way, checking in reports your current amount of jewels to the devs. (Though with the v1.5 glitches even 999 isn't too farfetched I guess.)
If they block the code I will search again!
If they block me I will delete the game from my 3DS!

Never mind enjoy cheating!
 
  • Like
Reactions: nanika

nanika

文鎮じゃダメ!まぁ、こんな文字小さしすぎてどうせ読めないっしょ。
Member
Joined
Apr 22, 2008
Messages
249
Trophies
0
XP
216
Country
United States
If they block the code I will search again!
If they block me I will delete the game from my 3DS!

Never mind enjoy cheating!
:)
Oh, I do. There's even four unreleased stages.
謎のピラミッド
ウソを見抜き謎を解こう!
・ちていじんたちの話を元に ピラミッドの謎を解こう。
・中にはウソつきも居るので よく考えて見抜こう!
・登場モンスター:なし

母の日のおくりもの
プレゼントを取り返そう!
・プレゼントをとられて困っている 電波人間の子供たちを助けよう!
・盗んだモンスターを見つけ出して プレゼントを取り返そう。
・登場モンスター:Lv.35~45

雨降り農家
ボスを倒し雨を晴らそう!
・やまなくなった雨に困っている ちていじんたちを助けよう!
・降り続く雨のせいでバトル中は みずびたしになってしまうぞ。
・登場モンスター:Lv.44~53

電波人間のクイズ大会
全問正解を目指せ!
・電波人間のRPGに関する クイズに答えよう。
・全問正解できれば、特別な ごほうびがもらえるぞ!
・登場モンスター:なし
 

Februarysn0w

Well-Known Member
Member
Joined
Oct 31, 2014
Messages
1,206
Trophies
0
Age
36
XP
837
Country
Japan
:)
Oh, I do. There's even four unreleased stages.
謎のピラミッド
ウソを見抜き謎を解こう!
・ちていじんたちの話を元に ピラミッドの謎を解こう。
・中にはウソつきも居るので よく考えて見抜こう!
・登場モンスター:なし

母の日のおくりもの
プレゼントを取り返そう!
・プレゼントをとられて困っている 電波人間の子供たちを助けよう!
・盗んだモンスターを見つけ出して プレゼントを取り返そう。
・登場モンスター:Lv.35~45

雨降り農家
ボスを倒し雨を晴らそう!
・やまなくなった雨に困っている ちていじんたちを助けよう!
・降り続く雨のせいでバトル中は みずびたしになってしまうぞ。
・登場モンスター:Lv.44~53

電波人間のクイズ大会
全問正解を目指せ!
・電波人間のRPGに関する クイズに答えよう。
・全問正解できれば、特別な ごほうびがもらえるぞ!
・登場モンスター:なし


I think, the 2nd title "母の日のおくりもの" will release in this 11 May! because 11 May in japan is mothers day! haha!
 

Binebina87

Well-Known Member
Member
Joined
May 27, 2013
Messages
247
Trophies
0
XP
1,145
Country
Germany
Did anyone try Story of Seasons US yet?
I played the game on my N3DS. Then I wanted to make a memdump with my o3ds but theres no save.

Does anyone know the Title ID (I couldn't find sth on 3ds.essh)
 

joskez

Well-Known Member
Newcomer
Joined
Nov 13, 2014
Messages
57
Trophies
0
Age
28
Location
Jakarta, Indonesia
XP
108
Country
Indonesia
Did anyone try Story of Seasons US yet?
I played the game on my N3DS. Then I wanted to make a memdump with my o3ds but theres no save.

Does anyone know the Title ID (I couldn't find sth on 3ds.essh)

where do you get it? because this is what i see in wikipedia:

Story of Seasons, known in Japan as Bokujō Monogatari: Tsunagaru Shin Tenchi (牧場物語 つながる新天地 ?), is a farming simulation video game developed by Marvelous Entertainment for the Nintendo 3DS. It was released in Japan on February 27, 2014, and will be released in North America on March 31, 2015


EDIT: after a bit searching i find it on a certain 3ds website that provide iso
 

pongozila

Well-Known Member
Newcomer
Joined
Jun 8, 2008
Messages
99
Trophies
1
XP
424
Country
Brazil
Did anyone try Story of Seasons US yet?
I played the game on my N3DS. Then I wanted to make a memdump with my o3ds but theres no save.

Does anyone know the Title ID (I couldn't find sth on 3ds.essh)


These are 90% tested :P

Story of Seasons (U) - (Money + 99x items)

Story of Seasons (U)


999999999 Money
02DCF9E0 3B9AC9FF

99x of the first 50 ITEMS in backpack
22DD1374 00000063
22DD1380 00000063
22DD138C 00000063
22DD1398 00000063
22DD13A4 00000063
22DD13B0 00000063
22DD13BC 00000063
22DD13C8 00000063
22DD13D4 00000063
22DD13E0 00000063
22DD13EC 00000063
22DD13F8 00000063
22DD1404 00000063
22DD1410 00000063
22DD141C 00000063
22DD1428 00000063
22DD1434 00000063
22DD1440 00000063
22DD144C 00000063
22DD1458 00000063
22DD1464 00000063
22DD1470 00000063
22DD147C 00000063
22DD1488 00000063
22DD1494 00000063
22DD14A0 00000063
22DD14AC 00000063
22DD14B8 00000063
22DD14C4 00000063
22DD14D0 00000063
22DD14DC 00000063
22DD14E8 00000063
22DD14F4 00000063
22DD1500 00000063
22DD150C 00000063
22DD1518 00000063
22DD1524 00000063
22DD1530 00000063
22DD153C 00000063
22DD1548 00000063
22DD1554 00000063
22DD1560 00000063
22DD156C 00000063
22DD1578 00000063
22DD1584 00000063
22DD1590 00000063
22DD159C 00000063
22DD15A8 00000063
22DD15B4 00000063
22DD15C0 00000063
 

joskez

Well-Known Member
Newcomer
Joined
Nov 13, 2014
Messages
57
Trophies
0
Age
28
Location
Jakarta, Indonesia
XP
108
Country
Indonesia
How are you guys able to hack like this and how do i do the code things yo guys are talking about, is there a tutorial i can go through?

for those who want to try make your own code please follow this tutorial by samiam

Thanks to liomajor I can confirm that Cheat Engine works rather well! This was my exact method for changing money:

Code:
1. Click "Select Process to open"
2. Select "Open File" and choose your first FCRAM.bin
3. make sure "hex" is unchecked, and enter the exact number you are looking for
4. Click "First Scan" and you will receive a list of all addresses with the number
5. Once again click "Select Process to open" and open your next FCRAM.bin
6. Enter your new number (hex unchecked) and click "next scan"
7. Repeat from step 5 until you find the address(es) you are looking for (money, points, # of items, etc.)
 
From here you open ar2bin.exe and type down the address(es) followed by the number you want in hex format
(ex: 99,999 dollars would be 0001869F)
 
Save as arcode.cht and use the bit.ly link while in game to insert the code into RAM.
(Hint: I save all my .CHT files in a single folder and label them accordingly, then when I want to use a code,
I use ORGANIZ3D to copy it to root and rename it to arcode.cht)

Now for the greatest cheat of all, on the greatest game of all...

$99,999 in Nintendogs + Cats: Toy Poodle
00425C94 0001869F

hehehhehehee
 

Site & Scene News

Popular threads in this forum

General chit-chat
Help Users
  • No one is chatting at the moment.
    Psionic Roshambo @ Psionic Roshambo: https://m.youtube.com/watch?v=UyxeZ7JYwZs&pp=ygUJVnIgaXMgZ2F5 +1