Aide - Recherche - Membres - Calendrier
Version complète: [MAJ] Changer la région d'un jeu Wii :: Wii Region-free ISO Patcher
Wii-Addict > Hack Wii > News Applications Windows / Linux / Mac
zaybacker
Le très célebre SYNDiCATE vient de mettre à disposition des Wiinautes un nouvel outil capable de patcher un jeu NTSC pour le rendre compatible avec les consoles PAL!
Ce logiciel offre les mêmes capacités de la puce Wiikey en termes de compatibilité, soit environ 70% des jeux NTSC(USA et JAP).

Les jeux patchés passeraient sur toutes les Wii "Modchipé" (capable de lire des sauvegardes sur DVD donc)
et devrait aussi fonctionner avec les jeux NTSC japonais.

Le logiciel modifie les données contenant les informations sur la région( qui d'ailleurs ne sont pas cryptées contrairement aux autres types de données).

Une liste de compatibilité est disponible ici

Plus d'information sur le programme ici
Voici le contenu du fichier nfo
[c]
: :
<----------------------------------/ (_:) \-----------------------------+
.-------.------.----/ -+- .-----\ __ /----. ___\.------\------.
/ ) / /____ _/ \/ \/ \/ \ \ ___/
/\__ \ / / \ \ \ \ \ \___\. : \__ __\ __\
\ '- --' / / \ \_ \ \ / \/ \ \
\_________/______/\___/______\_______/___/______/__|___/\___________/dv!
-----------------------------------------, S Y N D i C A T E
PRESENTS! \___________________________ _ _

Region_Free_Patcher_NTSC_To_PAL_WII-SYNDiCATE
____________________________________________________________________ _ _
+-RELEASE.iNFORMATION

?ReleaseDate..... 2007-02-25 Format..... .exe
?Filename........ syn-rfp.xxx Region..... N/A
?RarCount........ 1x1 Source..... N/A
?Url............. N/A

____________________________________________________________________ _ _
+-APP.iNFORMATION

Run this app to patch NTSC games to run on PAL.

Rename your unscrambled iso to backup.iso and put in the same
dir as our application. We'll bring a better gui version soon.

Metal Slug is the only game we tested, but more should work. Some
will not work due to how the game is coded, the same reason no
PAL will work on NTSC when patched.

Have fun!


____________________________________________________________________ _ _
+-RELEASE.NOTES

Wiikey is now the same as the rest it looks like huh...

Greetings to the real non-commerical scene, and thanks to a friend
for the hint or we wouldnt have bothered finding this :>



\________________________________________________________________________
++ SYNDiCATE - ++----------------'
-ascii.dv!
[/c]


[MAJ] Une nouvelle version semble avoir être distribuée. Le fichier se nomme RegionFrii_GUI_With_NTSC-J_Patcher_WII mais aucune autre information n'est disponible pour le moment.

[c]

: :
<----------------------------------/ (_:) \-----------------------------+
.-------.------.----/ -+- .-----\ __ /----. ___\.------\------.
/ ) / /____ _/ \/ \/ \/ \ \ ___/
/\__ \ / / \ \ \ \ \ \___\. : \__ __\ __\
\ '- --' / / \ \_ \ \ / \/ \ \
\_________/______/\___/______\_______/___/______/__|___/\___________/dv!
-----------------------------------------, S Y N D i C A T E
PRESENTS! \___________________________ _ _

RegionFrii_GUI_With_NTSC-J_Patcher_WII-SYNDiCATE
____________________________________________________________________ _ _
+-RELEASE.iNFORMATION

ùReleaseDate..... 2007-02-25 Format..... .exe
ùFilename........ syn-rfp2.xxx Region..... N/A
ùRarCount........ 1x1 Source..... N/A
ùUrl............. N/A

____________________________________________________________________ _ _
+-APP.iNFORMATION

Run this app to patch NTSC games to run on PAL, and now NTSC-J
on NTSC (note we have not tested this, but people requested). You
could patch PAL games to NTSC as well, but since they dont boot
at all don't bother even trying.

Heres the GUI version as promised.

Have fun and dont support rip-off chips!


____________________________________________________________________ _ _
+-RELEASE.NOTES

Greetings to the real non-commerical scene, and thanks to a friend
for the hint or we wouldnt have bothered finding this :>



\________________________________________________________________________
++ SYNDiCATE - ++----------------'
-ascii.dv!
[/c]
---
EDIT rlksirocco : Une phrase n'était pas traduite et [MAJ]
Mickeyblue
Edité par Zaybacker :: Orthographe


Ah ça c'est bien comme news laugh.gifça avance les gars et les filles ça avance :cool:
gthekiller54
Je viens de le tester avec Dragon_Ball_Z_Budokai_Tenkaichi_2_USA_Wii-QwiiF et ma cyclowiiz ca marche du tonerre...
Merci pour la news, mais dommage que, d'après la liste, naruto et bleach ne marche pas...
Bon jeux
rlksirocco
Il semble que via la mise à jour, les backups japonais devraient fonctionner.
Bhaal
c'est cool plus besoin d'avoir une puce qui lit toute les regions wink.gif
pich71
super l'info merci enormement:lol:
benybendebou
Certains utilisateurs ont eu des problèmes après avoir jouer un jeu patché sur leur console, les jeux originaux de leur région ne passaient plus. Après un reboot de la console celle-ci remarche parfaitement...Bizarre tout de même.

Si ça interesse, voici la source du patcher :

#include
#include

#define REGION_AREA????0x04E003????// 00: NTSC JAP, 01: NTSC USA, 02: PAL

struct PARCHE {
?? DWORD offset;
?? char??valores[17];
?? int nbytes;
} parche[]= {
?? //{ 0x04E003, "\x02",0x01},??????????????????????????????// Parche 1
?? { 0x04E010, "\x00\x80\x80\x06\x03\x03\x04\x03\x07\x00\x00\x00\x00\x00\x00\x00", 0x10 }, // Parche 2
};


void main(char *argv[],int argc) {

????FILE *fichero;
????char regstr[5];

????system("cls");
????printf("\n\n\t\t --------------------------------\n");
????printf("\t\t|????SYNDICATE Region Patcher????| \n");
????printf("\t\t| dissasembly reconstructed code | \n");
????printf("\t\t --------------------------------\n");

????if ( (fichero = fopen("backup.iso","rb+") ) != NULL) {

????fseek(fichero, REGION_AREA, SEEK_SET);
????fread(regstr, 1, 1, fichero);
????printf("\n0: NTSC JAP, 1: NTSC USA, 2: PAL\n\n");
????printf("Current: %d\n", regstr[0]);
????printf("Set to : ");
????gets(regstr);
????regstr[0] -= '0';
????fseek(fichero, REGION_AREA, SEEK_SET);
????fwrite(regstr, 1, 1, fichero);

????printf("Patch the rest? [y/n] ");
????gets(regstr);
????
????????if(regstr[0] == 'Y' || regstr[0] == 'y')
????????for (int i=0;i<(sizeof(parche) / sizeof(struct PARCHE));i++) {
????????????fseek(fichero,parche[i].offset,SEEK_SET);
????????????fwrite(parche[i].valores,parche[i].nbytes, 1,fichero);
????????}

????????fclose(fichero);
????????printf("\n\t\t???? Patch completed !\n\n\n");
????}
????else printf("\n\t\t???? No backup.iso found !\n\n\n");

????system("PAUSE");
}
sirius2277
Edité par Zaybacker :: Language SMS

trop bien la je suis heureu apparemment Il n'y aurait pas besoin du logiciel, j' ai pas testé mais j'ai vue ça sur le lien.


i did not use the patcher, but manually hex edited the iso of the japanese bleach game following this (which was originally posted in the maxconsole forums by Perkele)

"For those that would rather just hex edit their ISO's, offset 0x04E003 contains the region code...

00 = NTSC JAP
01 = NTSC USA
02 = PAL

Offsets 0x04E010 to 0x4E01F need to contain the 16 bytes from any other game in your region."

this is the jap version of bleach ntsc-j running on a ntsc-u wii w/ wiinja v1.
bleach is the only jap game that i have tested like this so far.
sim_59
Salut, excellente news, j'ai eu l'occasion de tester mais j'ai toujours une erreur "une erreur s'est produite lors de l'acces au fichier non nommé"... je passe mon tour !
Bhaal
(sim_59)
Salut, excellente news, j'ai eu l'occasion de tester mais j'ai toujours une erreur "une erreur s'est produite lors de l'acces au fichier non nommé"... je passe mon tour !

il faut que le fichier a etre patch s'apelle "backup.iso" enfin c'est ce que j'ai lu sur un autre forum, apres j'ai pas teste moi wink.gif
Zeus
Super sympa ça ! faut que je me laisse tenter par une puce là tongue.gif
gthekiller54
Une troisiéme mise à jour est disponible sur le même site que les deux précédante, elle corrige le probléme de l'erreur récurrante : "une erreur s'est produite lors de l'acces au fichier non nommé". Mais aparament n'agrandit pas la compatibilité avec certains jeux (Naruto et Bleach aparament toujours non fonctionnel).
Ceci est une version "bas débit" de notre forum. Pour voir la version complète avec plus d'information, la mise en page et les images, veuillez cliquer ici.
Invision Power Board ? 2001-2010 Invision Power Services, Inc.
CommunitySEO 1.2.3 ? 2010? IPB SEO Module