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,809
Trophies
2
XP
6,372
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
454
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,809
Trophies
2
XP
6,372
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,809
Trophies
2
XP
6,372
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
454
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,809
Trophies
2
XP
6,372
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
  • BakerMan @ BakerMan:
    saves a lot of time fr
  • Sicklyboy @ Sicklyboy:
    It's 11:30 PM here, I just took the trash out and my god is it awful outside
  • Sicklyboy @ Sicklyboy:
    This heatwave can eat my ass
    +3
  • MysticStarlight @ MysticStarlight:
    omg same, it's VERY hot here, too
  • BakerMan @ BakerMan:
    fuck this heatwave, i don't usually sleep with a fan, but i believe the fan is getting put on the bed rather than beside it
  • BakerMan @ BakerMan:
    IT'S 12:30 IN THE FUCKING MORNING AND IT'S STILL 78°, WHAT THE FUCK?
    +1
  • NinStar @ NinStar:
    78º seems abnormal for any part of the day
  • BigOnYa @ BigOnYa:
    Yea it was 96 F for the high, 78 F for the low today, in Ohio, bout same for bakerman in Michigan
  • BigOnYa @ BigOnYa:
    F- fahrenheit C-Celsius. We in USA use F as our temp ratings
  • Sicklyboy @ Sicklyboy:
    F = Freedom units
    +2
  • HiradeGirl @ HiradeGirl:
    So... C = Cum units?
    +1
  • K3Nv2 @ K3Nv2:
    Clip units
  • SylverReZ @ SylverReZ:
    @HiradeGirl, That's how they get bigger loans at the bank.
    +1
  • HiradeGirl @ HiradeGirl:
    Welp.
  • K3Nv2 @ K3Nv2:
    Wasn't me
  • K3Nv2 @ K3Nv2:
    Got around to playing A way out is pretty fun coop game to kill time
    +1
  • BigOnYa @ BigOnYa:
    Me and a buddy used to play that, is pretty fun. Graphics were pretty good also at that time, I think what 5-6 years ago. --Edit yea was 2018
  • BigOnYa @ BigOnYa:
    Surprised they never made a second one.
  • K3Nv2 @ K3Nv2:
    It takes two was their newest different theme
  • BigOnYa @ BigOnYa:
    I didn't care for that one so much, but didn't play it much either.
  • BigOnYa @ BigOnYa:
    I just played little of "Still Wakes The Deep" , just came to gamepass today, its alright, kinda creepy. I'm not usually a horror game fan, but it looks really good graphic wise, esp w 4k. I admit it made me jump a few times.
    BigOnYa @ BigOnYa: I just played little of "Still Wakes The Deep" , just came to gamepass today, its alright, kinda...