ROM Hack [WIP]USUMCheatMenu - Old3DS compatible NTR plugin for Ultra Sun/Moon

unipablojorge

Totally not an FBI agent.
OP
Member
Joined
May 25, 2017
Messages
161
Trophies
0
Age
29
Location
Navarre
XP
146
Country
Spain
Is out powersave codes ,you can work with codes for spawn the pokemon not random
I know, but first I want to focus on fixing codes (like 100% catch or All Stats + 6) before putting in new codes.


Also- New update

All stats +6 should be fixed
Catch rate 100% should be fixed

Someone that has UM (because in US worked fine even before) try it please.

EDIT: I don't know how to use github well, so it seems like 2.5.25 was appearing as the latest one, when the newest one was 2.5.5. Now it's fixed, maybe that was the problem.
 
Last edited by unipablojorge,

unipablojorge

Totally not an FBI agent.
OP
Member
Joined
May 25, 2017
Messages
161
Trophies
0
Age
29
Location
Navarre
XP
146
Country
Spain
Same issue on UM, US is working as expected
Are you using the latest version (2.5.55)? If so, please try this:
1. Activate in battle, see if it works.
2. I've realized that catch rate only works once per battle(at least in US) this means that after using it, you will have to turn it off and on back again. I will se if I can fix it, for now I'm going to add a note that tells that.
 

mAlvarado

Well-Known Member
Newcomer
Joined
May 3, 2010
Messages
59
Trophies
0
Age
38
Location
San Salvador
XP
438
Country
Spain
Are you using the latest version (2.5.55)? If so, please try this:
1. Activate in battle, see if it works.
2. I've realized that catch rate only works once per battle(at least in US) this means that after using it, you will have to turn it off and on back again. I will se if I can fix it, for now I'm going to add a note that tells that.
Sorry, it was on the previous release, will test and give feedback.
 

HollowedFear

Well-Known Member
Member
Joined
Dec 30, 2013
Messages
308
Trophies
0
Age
33
XP
462
Country
United States
So, let me see: you are playing UM right?

No I'm playing US, have been playing US since the start. I haven't even touched UM yet.
Last time I tested the code and it was working (other than the "on" "off" text switching) was on release 2.5.1, I haven't changed anything on my end other than just updating the plugin to the latest version each time.
 
Last edited by HollowedFear,

dsrules

Well-Known Member
Member
Joined
Sep 20, 2005
Messages
8,746
Trophies
2
XP
6,312
Country
EDIT: I don't know how to use github well, so it seems like 2.5.25 was appearing as the latest one, when the newest one was 2.5.5. Now it's fixed, maybe that was the problem.

yeah, the source code was still as old as 4 days ago
for 100% catch, the difference between both versions is
US 004AB17C EB043B47
UM 004AB184 EB043B45
did you add a check to those address before applying the code to the correct game?
 

Jamie5544

Active Member
Newcomer
Joined
Oct 9, 2017
Messages
41
Trophies
0
Age
23
XP
61
Country
Netherlands
Where mate?

Im trying to find it but im not getting legendaries :/
Please help
Look it's next to malie garden but there is some change to get some regular

--------------------- MERGED ---------------------------

Where mate?

Im trying to find it but im not getting legendaries :/
Please help
Go to route 10
 

DocKlokMan

Plugin Dev
Member
Joined
Apr 20, 2007
Messages
3,009
Trophies
2
Age
36
XP
4,571
Country
United States
For now we have 34 cheats working:
  1. Random pokemon spawn (will appear at level 30 always, I was going to let it at lvl 1, but level 30 is better. If you want to do a randomized save, I'm sorry but even doing this makes pokemon spawn at lvl 1. If I find a fix I'll update it.)
I believe this is the code you're looking for: #3016
 

Pkm collector1

Well-Known Member
Member
Joined
Apr 16, 2014
Messages
206
Trophies
1
Age
42
XP
446
Country
United States
yeah, the source code was still as old as 4 days ago
for 100% catch, the difference between both versions is
US 004AB17C EB043B47
UM 004AB184 EB043B45
did you add a check to those address before applying the code to the correct game?
what was the working plg that had 100 catch rate working on what version was it so i can take a look nvm i dont know where to look for differences.
 
Last edited by Pkm collector1,

dsrules

Well-Known Member
Member
Joined
Sep 20, 2005
Messages
8,746
Trophies
2
XP
6,312
Country
what was the working plg that had 100 catch rate working on what version was it so i can take a look nvm i dont know where to look for differences.
I don't use the plugin, just saying since some people said it works in UM, but doesn't work in US
go to the battle modifiers.c > void catch100(void) {
I only see the code for UM
 

HollowedFear

Well-Known Member
Member
Joined
Dec 30, 2013
Messages
308
Trophies
0
Age
33
XP
462
Country
United States
I don't use the plugin, just saying since some people said it works in UM, but doesn't work in US
go to the battle modifiers.c > void catch100(void) {
I only see the code for UM

if your looking at the code on the repo it's out of date as he hasn't been pushing the new updated code to the repo instead he has been zipping it and pushing it in the releases tab. This is the current code for the US plugin source

Code:
// 100% Catch rate for Pokemon
void    catch100(u32 state) {
   WRITEU32(0x005B9EA0, 0xE5D00008);
   WRITEU32(0x005B9EA4, 0xE92D4003);
   WRITEU32(0x005B9EA8, 0xE59D0010);
   WRITEU32(0x005B9EAC, 0xE59F100C);
   WRITEU32(0x005B9EB0, 0xE1510000);
   WRITEU32(0x005B9EB4, 0x024000F8);
   WRITEU32(0x005B9EB8, 0x058D0010);
   WRITEU32(0x005B9EBC, 0xE8BD8003);
   WRITEU32(0x005B9EC0, 0x0070A824);
   WRITEU32(0x004AB17C, (state) ? 0xEB043B47 : 0xE5D00008);
}

While UM current source code is

Code:
// 100% Catch rate for Pokemon
void    catch100(u32 state) {
   WRITEU32(0x005B9EA0, 0xE5D00008);
   WRITEU32(0x005B9EA4, 0xE92D4003);
   WRITEU32(0x005B9EA8, 0xE59D0010);
   WRITEU32(0x005B9EAC, 0xE59F100C);
   WRITEU32(0x005B9EB0, 0xE1510000);
   WRITEU32(0x005B9EB4, 0x024000F8);
   WRITEU32(0x005B9EB8, 0x058D0010);
   WRITEU32(0x005B9EBC, 0xE8BD8003);
   WRITEU32(0x005B9EC0, 0x0070A824);
   WRITEU32(0x004AB184, (state) ? 0xEB043B45 : 0xE5D00006);
}
 
Last edited by HollowedFear,

Pierrou

New Member
Newbie
Joined
Nov 24, 2017
Messages
3
Trophies
0
Age
33
XP
51
Country
France
Hi, Yes on Ultra Moon, last version has some problems:
- 100% Catch doesn't work
- No Wild Encounters doesn't work too

I'm using Boot NTR Selector Mode 3 2.9 (with 3.6 loaded, I don't know what it means) on a Old 3DS XL
 

dsrules

Well-Known Member
Member
Joined
Sep 20, 2005
Messages
8,746
Trophies
2
XP
6,312
Country
if your looking at the code on the repo it's out of date as he hasn't been pushing the new updated code to the repo instead he has been zipping it and pushing it in the releases tab. This is the current code for the US plugin source

Code:
// 100% Catch rate for Pokemon
void    catch100(u32 state) {
   WRITEU32(0x005B9EA0, 0xE5D00008);
   WRITEU32(0x005B9EA4, 0xE92D4003);
   WRITEU32(0x005B9EA8, 0xE59D0010);
   WRITEU32(0x005B9EAC, 0xE59F100C);
   WRITEU32(0x005B9EB0, 0xE1510000);
   WRITEU32(0x005B9EB4, 0x024000F8);
   WRITEU32(0x005B9EB8, 0x058D0010);
   WRITEU32(0x005B9EBC, 0xE8BD8003);
   WRITEU32(0x005B9EC0, 0x0070A824);
   WRITEU32(0x004AB17C, (state) ? 0xEB043B47 : 0xE5D00008);
}

While UM current source code is

Code:
// 100% Catch rate for Pokemon
void    catch100(u32 state) {
   WRITEU32(0x005B9EA0, 0xE5D00008);
   WRITEU32(0x005B9EA4, 0xE92D4003);
   WRITEU32(0x005B9EA8, 0xE59D0010);
   WRITEU32(0x005B9EAC, 0xE59F100C);
   WRITEU32(0x005B9EB0, 0xE1510000);
   WRITEU32(0x005B9EB4, 0x024000F8);
   WRITEU32(0x005B9EB8, 0x058D0010);
   WRITEU32(0x005B9EBC, 0xE8BD8003);
   WRITEU32(0x005B9EC0, 0x0070A824);
   WRITEU32(0x004AB184, (state) ? 0xEB043B45 : 0xE5D00006);
}
I don't see anything wrong with the address code values, except for UM
WRITEU32(0x004AB184, (state) ? 0xEB043B45 : 0xE5D00006); should be WRITEU32(0x004AB184, (state) ? 0xEB043B45 : 0xE5D00008);
 
Last edited by dsrules,

Pkm collector1

Well-Known Member
Member
Joined
Apr 16, 2014
Messages
206
Trophies
1
Age
42
XP
446
Country
United States
I don't see anything wrong with the address code values, except for UM
WRITEU32(0x004AB184, (state) ? 0xEB043B45 : 0xE5D00006); should be WRITEU32(0x004AB184, (state) ? 0xEB043B45 : 0xE5D00008);
hmm i changed that 6 from a 8 and when i comipled for um it still dont capture 100 percent the mon still escpe the ball
 

dsrules

Well-Known Member
Member
Joined
Sep 20, 2005
Messages
8,746
Trophies
2
XP
6,312
Country
hmm i changed that 6 from a 8 and when i comipled for um it still dont capture 100 percent the mon still escpe the ball
doesn't he needs the TOGGLE function when using state?
for now remove the bold part should work, but there will be no disable code
, (state) ? 0xEB043B47 :0xE5D00008);
 

Site & Scene News

Popular threads in this forum

General chit-chat
Help Users
  • No one is chatting at the moment.
  • BigOnYa @ BigOnYa:
    Biomutant looks cool tho, may have to try that
  • Quincy @ Quincy:
    Usually when such a big title leaks the Temp will be the first to report about it (going off of historical reports here, Pokemon SV being the latest one I can recall seeing pop up here)
  • K3Nv2 @ K3Nv2:
    I still like how a freaking mp3 file hacks webos all that security defeated by text yet again
  • BigOnYa @ BigOnYa:
    They have simulators for everything nowdays, cray cray. How about a sim that shows you playing the Switch.
  • K3Nv2 @ K3Nv2:
    That's called yuzu
    +1
  • BigOnYa @ BigOnYa:
    I want a 120hz 4k tv but crazy how more expensive the 120hz over the 60hz are. Or even more crazy is the price of 8k's.
  • K3Nv2 @ K3Nv2:
    No real point since movies are 30fps
  • BigOnYa @ BigOnYa:
    Not a big movie buff, more of a gamer tbh. And Series X is 120hz 8k ready, but yea only 120hz 4k games out right now, but thinking of in the future.
  • K3Nv2 @ K3Nv2:
    Mostly why you never see TV manufacturers going post 60hz
  • BigOnYa @ BigOnYa:
    I only watch tv when i goto bed, it puts me to sleep, and I have a nas drive filled w my fav shows so i can watch them in order, commercial free. I usually watch Married w Children, or South Park
  • K3Nv2 @ K3Nv2:
    Stremio ruined my need for nas
  • BigOnYa @ BigOnYa:
    I stream from Nas to firestick, one on every tv, and use Kodi. I'm happy w it, plays everything. (I pirate/torrent shows/movies on pc, and put on nas)
  • K3Nv2 @ K3Nv2:
    Kodi repost are still pretty popular
  • BigOnYa @ BigOnYa:
    What the hell is Kodi reposts? what do you mean, or "Wut?" -xdqwerty
  • K3Nv2 @ K3Nv2:
    Google them basically web crawlers to movie sites
  • BigOnYa @ BigOnYa:
    oh you mean the 3rd party apps on Kodi, yea i know what you mean, yea there are still a few cool ones, in fact watched the new planet of the apes movie other night w wifey thru one, was good pic surprisingly, not a cam
  • BigOnYa @ BigOnYa:
    Damn, only $2.06 and free shipping. Gotta cost more for them to ship than $2.06
  • BigOnYa @ BigOnYa:
    I got my Dad a firestick for Xmas and showed him those 3rd party sites on Kodi, he loves it, all he watches anymore. He said he has got 3 letters from AT&T already about pirating, but he says f them, let them shut my internet off (He wants out of his AT&T contract anyways)
  • K3Nv2 @ K3Nv2:
    That's where stremio comes to play never got a letter about it
  • BigOnYa @ BigOnYa:
    I just use a VPN, even give him my login and password so can use it also, and he refuses, he's funny.
  • BigOnYa @ BigOnYa:
    I had to find and get him an old style flip phone even without text, cause thats what he wanted. No text, no internet, only phone calls. Old, old school.
    K3Nv2 @ K3Nv2: @BigOnYa...