Hacking Look this NTR CFW

Blueie

Well-Known Member
Member
Joined
Apr 30, 2013
Messages
226
Trophies
0
XP
325
Country
Argentina
should work fine, if the leaked CFW works, this should work

in regards to the FPGA update, this will prompt you to "update".....and allow the card to be downgraded to work in it, but i suggest if your going to switch between this and the latest, use 2.7 instead, so you dont have to flash the FPGA everytime you switch between the 2
I see. Guess I'll be staying on 2.7 for now. It would be a pain in the neck to reflash the FPGA all the time, but at least it can be downgraded.

Anyway, thanks for the responses, guys :)
 

gamesquest1

Nabnut
Former Staff
Joined
Sep 23, 2013
Messages
15,153
Trophies
2
XP
12,247
I see. Guess I'll be staying on 2.7 for now. It would be a pain in the neck to reflash the FPGA all the time, but at least it can be downgraded.

Anyway, thanks for the responses, guys :)
np, tbh 2.7 is exactly the same as 3.0 for 4.x users anyway...im hoping gateway adds the screenshot feature soon, as i wouldn't want to keep reprogramming the FPGA too often and the SS feature is a nice handy addition
Do you mean the Palantine CFW or the NTR CFW? There's no Source for both, I think.
If PalantineCFWs source would be public, I would look into it
the "palantineCFW" was not made by palatine, palantine just made a few tweaks to make it more stable......thats about it, the actual dev behind it was yellows8 i think and it was never meant to be released at all, it was leaked by govanify, and then lots of crappy drama, then it was "tweaked" and ...well thats it pretty much, nothing else since
 

Blueie

Well-Known Member
Member
Joined
Apr 30, 2013
Messages
226
Trophies
0
XP
325
Country
Argentina
np, tbh 2.7 is exactly the same as 3.0 for 4.x users anyway...im hoping gateway adds the screenshot feature soon, as i wouldn't want to keep reprogramming the FPGA too often and the SS feature is a nice handy addition
I wonder, has anyone emailed GW to ask them if there are plans to implement screenshots?
 

gamesquest1

Nabnut
Former Staff
Joined
Sep 23, 2013
Messages
15,153
Trophies
2
XP
12,247
I wonder, has anyone emailed GW to ask them if there are plans to implement screenshots?
i think i might of a long time ago....might be worth another ask i think :P
I wonder, has anyone emailed GW to ask them if there are plans to implement screenshots?
not double posting so im not sure this will notify you, but i got a reply from gateway about screenshots.....vague as usual, but better than nothing
Thanks for feedback. Our team is informed of all the requests we receive here
and take them in consideration for future updates based on feasibility and time
required.

mailto:[email protected]
 

flarn2006

Well-Known Member
Member
Joined
Apr 6, 2014
Messages
394
Trophies
0
Age
30
XP
523
Country
United States
This may have been answered but if so I didn't see it. Can I install this on emunand 9.4 with sysnand 9.2, or would I have to downgrade my sysnand to 4.5 first?

Also someone said Internet is disabled to prevent cheating online. I don't plan on doing that. Is there a modified version that doesn't disable Internet?
 

Zidapi

Well-Known Member
Member
Joined
Dec 1, 2002
Messages
3,112
Trophies
3
Age
42
Website
Visit site
XP
2,681
Country
This may have been answered but if so I didn't see it. Can I install this on emunand 9.4 with sysnand 9.2, or would I have to downgrade my sysnand to 4.5 first?

Also someone said Internet is disabled to prevent cheating online. I don't plan on doing that. Is there a modified version that doesn't disable Internet?
No. Internet is disabled so you can't cheat online.

If there was a version that allowed you to play online, then people who wanted to cheat online would use that version, which would make this version irrelevant. If you're not wanting to cheat online why do need internet access? Just use the gateway loader if you want to play online.

To answer your other question, yes you need to downgrade to 4.5
 

flarn2006

Well-Known Member
Member
Joined
Apr 6, 2014
Messages
394
Trophies
0
Age
30
XP
523
Country
United States
No. Internet is disabled so you can't cheat online.

If there was a version that allowed you to play online then people who wanted to cheat online would use that version which would make this version irrelevant. If you're not wanting to cheat online why do need internet access? Just use the gateway loader if you want to play online.

To answer your other question, yes you need to downgrade to 4.5
So I can play online when I'm not cheating.
 

Zidapi

Well-Known Member
Member
Joined
Dec 1, 2002
Messages
3,112
Trophies
3
Age
42
Website
Visit site
XP
2,681
Country
So I can play online when I'm not cheating.
But then there'd nothing stopping you (or someone else) from cheating online.

What are you suggesting, an honor system or something?

"You can play online but you have to pinky promise you won't cheat." That's just ridiculous.

You, and by "you" I mean people, can't be trusted not to cheat online. So Cell9 removes the temptation entirely, and I respect and support that decision completely.
 

mid-kid

GBAtemp spamBOT
Member
Joined
Aug 2, 2012
Messages
879
Trophies
0
Age
25
XP
1,163
Country
Would it be possible to install CIAs with this CFW? Maybe install DevMenu with Palantine CFW, then switching to this CFW, or a CIA installer plugin?
EDIT: Has anyone successfully compiled the hello world?
 

mid-kid

GBAtemp spamBOT
Member
Joined
Aug 2, 2012
Messages
879
Trophies
0
Age
25
XP
1,163
Country
EDIT: Has anyone successfully compiled the hello world?

I've decided to clean up the build system for the example, by creating a clean (in my eyes) Makefile.
https://github.com/mid-kid/ntr_helloworld
Of course, you need devkitARM to build.

It builds correctly on linux, just run "make" and "sudo make DESTDIR=<location of SD card> install".
For windows you'll probably need cygwin or mingw or something.
 

mid-kid

GBAtemp spamBOT
Member
Joined
Aug 2, 2012
Messages
879
Trophies
0
Age
25
XP
1,163
Country
Is possibile with this cfw create a CIA installer plugin?

I guess so, it's just that nobody's tried.

How would I go about creating a plugin that reads a file on the SD?
Code:
    #define ARCH_SDMC 0x9
    Handle fileHandle;
    u32 bytes;
    char buffer[1000];
 
    FS_archive sdmcArchive=(FS_archive){ARCH_SDMC, (FS_path){PATH_EMPTY, 1, (u8*)""}};
    FS_path filePath = FS_makePath(PATH_CHAR, "hello.txt");
 
    FSUSER_OpenFileDirectly(0, &fileHandle, sdmcArchive, filePath, FS_OPEN_READ, FS_ATTRIBUTE_NONE);
    if (fileHandle == 0) {
        showDbg("Failed to open file", 0, 0);
        return 0;
    }
 
    FSFILE_Read(fileHandle, &bytes, 0x0, (uint32_t *)buffer, 1000);
    if (buffer == NULL) {
        showDbg("Failed to read file", 0, 0);
        return 0;
    }
 
    FSFILE_Close(fileHandle);
 
    showDbg(buffer, 0, 0);
This is what I've tried (Used BigRedMenu as example), but it fails to read the file (Until I start process manager, at which point the buffer points to a string which says "0018").
 
  • Like
Reactions: eco95

leerz

Well-Known Member
Member
Joined
Jan 11, 2015
Messages
753
Trophies
0
Age
36
Location
Makati
Website
leerz25.sitesled.com
XP
2,178
Country
looks like they got cheats working on this


Author: ioritree

Click here for instructions 3DS cheat
3DS cheat corresponding NTR CFW use homemade system
1. Make sure the host system for 3DS NTR CFW CFW
2. Copy the file to cheat plg 3DS SD card body plugin \ similar (Game ID) catalog final directory structure

  1. \ Plugin \ (game ID) \ (Goldfinger file)
View game ID tool | Query game ID's website
3, the game press the button corresponding cheat notes on / off cheat function

ioritree NTR CFW

SELECT + START ON / OFF Goldfinger
ID: 0004000000032D00

v20150107

(1) "Player 1 - Inf Health"
(2) "Player 1 - Inf Super"

(3) "Player 1 - Inf Ultra Super"
 

Site & Scene News

Popular threads in this forum

General chit-chat
Help Users
    K3Nv2 @ K3Nv2: The mutated Axolotl was awesome