Hacking [Source] Cheat menu plugin demo for NTR CFW

Margen67

Dirty entited pirate
Banned
Joined
Nov 3, 2014
Messages
1,100
Trophies
0
XP
1,741
Country
United States
Maybe you should remember that it's a free work and he's doing whatever he want ?

There's no point in 10.4 for now and we just have to copy / paste firm.bin...
If that's too much for you, just don't use any plugins.
It's just a suggestion.

It would be nice not to have to use a firmware.bin at all, though.
It would make boot times faster and be one less file needed on the SD card to run NTR.

Having to sacrifice boot times to use NTR is unnecessary.
 
Last edited by Margen67,
  • Like
Reactions: hobbledehoy899

archn

Member
Newcomer
Joined
May 17, 2016
Messages
7
Trophies
0
Age
39
XP
64
Country
United States
Test this : WRITEU16(0x218FAE4, 0x03E7)

That would satisfy only the second line, not the first line. :-)

Thanks for the reassurance, Nanquitas. I hope you're right :-) Please keep doing what you're doing. You are an amazing coder and you have excellent patience.

Edit: Nanquitas: It did work! I don't know why it didn't update the coin count until I quit the game and went back in. :-)
 
Last edited by archn,

archn

Member
Newcomer
Joined
May 17, 2016
Messages
7
Trophies
0
Age
39
XP
64
Country
United States
Even if I'm truly thankful to you both for the compliments, I'm still a beginner.

But one day I hope I'll be good enough to be of use in the scene. ;)

Your note was right. My code was working. It just didn't tell me my updated coin count until I quit the program and went back in. You rule dude!
 

chronoss

Well-Known Member
Member
Joined
May 26, 2015
Messages
3,007
Trophies
1
XP
4,893
Country
Congo, Republic of the
Even if I'm truly thankful to you both for the compliments, I'm still a beginner.

But one day I hope I'll be good enough to be of use in the scene. ;)
Even if I'm truly thankful to you both for the compliments, I'm still a beginner.

But one day I hope I'll be good enough to be of use in the scene. ;)
I believe in you ;)
 

Nanquitas

Well-Known Member
Member
Joined
Sep 29, 2015
Messages
2,345
Trophies
0
Age
30
Location
South of France :)
XP
3,336
Country
France
Thanks to @ymyn which explained me how the code is working, I have some infos on how to write this type of codes.
Exemple for the code:
(SELECT+Y)All items in convoy to x95 Fix v1.0
D3000000 00000000
E0610F80 00000050
E5940000 E92D40FF
E59F003C E5904000
E3A05001 E3A0605F
E3A07C01 E2877063
E5845000 E1C460B4
E1A00005 EBF6FFC4
E5D0101E E5C41003
E2844008 E2855001
E1550007 1AFFFFF5
E8BD80FF 006D95E8
0010421C E5940000
DD000000 00000804
0010421C EB143357
D0000000 00000000
In c:
Code:
void    all_items_in_convoy(void)
{
    u32            address;
    int             i;
    const int     loop = 0x50;
    const u32    array[] =
    {
        0xE5940000, 0xE92D40FF,
        0xE59F003C, 0xE5904000,
        0xE3A05001, 0xE3A0605F,
        0xE3A07C01, 0xE2877063,
        0xE5845000, 0xE1C460B4,
        0xE1A00005, 0xEBF6FFC4,
        0xE5D0101E, 0xE5C41003,
        0xE2844008, 0xE2855001,
        0xE1550007, 0x1AFFFFF5,
        0xE8BD80FF, 0x006D95E8
    };

    address = 0x0610F80;
    for (i = 0; i < loop / 4; i++)
    {
        WRITEU32(address, array[i]);
        address += 4;
    }
    WRITEU32(0x0010421C, 0xE5940000);
    if (getKey() == BUTTON_SE + BUTTON_Y)
        WRITEU32(0x0010421C, 0xEB143357);
}

Note:
This code can be optimized, but it shows how the code is processed.
 

pesho_king3010

New Member
Newbie
Joined
Jun 8, 2016
Messages
2
Trophies
0
Age
26
XP
41
Country
Egypt
Thanks to @ymyn which explained me how the code is working, I have some infos on how to write this type of codes.
Exemple for the code:

In c:
Code:
void    all_items_in_convoy(void)
{
    u32            address;
    int             i;
    const int     loop = 0x50;
    const u32    array[] =
    {
        0xE5940000, 0xE92D40FF,
        0xE59F003C, 0xE5904000,
        0xE3A05001, 0xE3A0605F,
        0xE3A07C01, 0xE2877063,
        0xE5845000, 0xE1C460B4,
        0xE1A00005, 0xEBF6FFC4,
        0xE5D0101E, 0xE5C41003,
        0xE2844008, 0xE2855001,
        0xE1550007, 0x1AFFFFF5,
        0xE8BD80FF, 0x006D95E8
    };

    address = 0x0610F80;
    for (i = 0; i < loop / 4; i++)
    {
        WRITEU32(address, array[i]);
        address += 4;
    }
    WRITEU32(0x0010421C, 0xE5940000);
    if (getKey() == BUTTON_SE + BUTTON_Y)
        WRITEU32(0x0010421C, 0xEB143357);
}

Note:
This code can be optimized, but it shows how the code is processed.

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

can you please tell me how you make the code like this
 

Site & Scene News

Popular threads in this forum

General chit-chat
Help Users
  • Psionic Roshambo @ Psionic Roshambo:
    Phones worked great for DS emulation with DraStic and a controller that held your phone
  • Psionic Roshambo @ Psionic Roshambo:
    But sadly that's coming to an end
  • Xdqwerty @ Xdqwerty:
    @Psionic Roshambo, atleast I think the latest version's apk is archived somewhere
    +1
  • K3Nv2 @ K3Nv2:
    Yeah it works great but it's the obvious Ds factor you loose from it it's not like playing atari games on atari because Nintendo actually use to give a reason to buy their hardware
    +1
  • Psionic Roshambo @ Psionic Roshambo:
    Honestly Ken I actually have the hardware and it's hacked and works fine, prefer my phone lol
  • Psionic Roshambo @ Psionic Roshambo:
    Microphone is more sensitive, DraStic has a high res mode, screen is way better just overall a better experience
  • K3Nv2 @ K3Nv2:
    I just like game consoles how they were intended to play if they have a unique enough reason to buy them anything else yeah just download emulation for it
  • Psionic Roshambo @ Psionic Roshambo:
    Oh and touch screen infinity better lol
  • HiradeGirl @ HiradeGirl:
    @Xdqwerty It's still on Play Store.
  • HiradeGirl @ HiradeGirl:
    for free
  • HiradeGirl @ HiradeGirl:
    Install before they remove it.
  • K3Nv2 @ K3Nv2:
    I'd like to see a DS emulator that allows casting top screen to TV then use bottom for the touch screen stuff
    +1
  • HiradeGirl @ HiradeGirl:
    I used a vertical touch 22" monitor for playing some 3DS games through Citra.
  • K3Nv2 @ K3Nv2:
    Can't be that far off from it not like ds requires super hardware
  • HiradeGirl @ HiradeGirl:
    @K3Nv2 I did that using Citra for 3DS games. Bottom screen was my smartphone. Until I got the touch screen.
  • SwordShielder @ SwordShielder:
    Use a TV
  • K3Nv2 @ K3Nv2:
    Citra allows it already?
  • HiradeGirl @ HiradeGirl:
    Yes.
  • Psionic Roshambo @ Psionic Roshambo:
    Ken I have that sort of set up on Drastic on Pi for games that don't require touch
  • Psionic Roshambo @ Psionic Roshambo:
    Looks nice too
  • HiradeGirl @ HiradeGirl:
    Any TV with your PC connected with Citra and any smartphone to use as a screen using a free play store app.
    +1
  • Psionic Roshambo @ Psionic Roshambo:
    Gonna look into that when I get home
  • K3Nv2 @ K3Nv2:
    Any good 3ds smut titles psi? :creep:
  • Psionic Roshambo @ Psionic Roshambo:
    Lol I think there was some home brew
    Psionic Roshambo @ Psionic Roshambo: Lol I think there was some home brew