Bonjour je vais vous apprendre a codé un patch lobby MW2 pour 1.12 en premier : si vous connaissez un peu de codding genre C++ ou C ou autre, vous devriez vous en sortir.
Deja il vous faut
FF Viewer qui permet d'ouvrir un patch MW2 converti en XBOX* car en PS3 le logiciel ne peut pas l'ouvrir donc il vous faut
MW2 Patch Converter mais j'ai remarqué que chez certaine personne il ne marchait pas, il demandait d'envoyer un rapport d'erreur sauf SKUNK qui lui fonctionne nickel.
Ces 2 logiciels vous les trouverai ici :
[Vous devez être inscrit et connecté pour voir ce lien]Introduction : les patch lobby 1.12, presque tous les scripts ont changé donc pour en faire de nouveau ils ont dû trouver du code.
Pour éditer un patch 1.12 converti en xbox ouvrez FFViewer et allez dans "File", "open Fastfile" et ouvrez un patch.
A gauche une colonne avec plein d'ecriture bizarre ne vous inquiétez pas on ne vas s'interesser qu'au ligne en violet exemple si vous ouvrez la beta team SiCK V5 de SKUNK vous aurez :
Menu_TeamSiCK_V5.cfgTout est expliquez dans la photo :

Créons un menu ensemble :
Rappelle si vous voyez des "^2 ou ^5" ceci est pour affichez le code en couleur choisis
bind BUTTON_RSHLDR "+attack"
bind BUTTON_LSHLDR "+speed_throw"
bind BUTTON_RTRIG "+frag"
bind BUTTON_LTRIG "+smoke"
bind BUTTON_RSTICK "+melee"
bind BUTTON_LSTICK "+breath_sprint"
set gpad_button_rstick_deflect_max 1
set gpad_button_lstick_deflect_max 1
bind BUTTON_A "+gostand" // touche cercle
bind BUTTON_B "+stance" // tocuhe x
bind BUTTON_X "+usereload" // touche carré
bind BUTTON_Y "weapnext" // touche triangle
bind DPAD_UP "+actionslot 1" // touche directionnel Haut
bind DPAD_DOWN "+actionslot 2" // touche directionnel Bas
bind DPAD_RIGHT "+actionslot 4" // touche directionnel Droite
bind BUTTON_START "togglemenu"
bind DPAD_LEFT "vstr 1m" // ouverture menu
// TOUJOURS 2 SAUT DE LIGNE
// TOUJOURS 2 SAUT DE LIGNE je pense sauf si c'est SKUNK qui a decidé comme ca.
set 1m "con_errormessagetime 90;bind BUTTON_B vstr 1e;vstr 1opt1"
set 1t "^2Menu^0.^3Jeffdecod^0.^1Ouvert;" ----------------> pour creer le votre faite ca :
set 1t "^2(ce que vous voulez);"set 1e "bind DPAD_UP +actionslot 1;bind DPAD_DOWN +actionslot 2;bind BUTTON_B +stance;bind BUTTON_A +gostand;con_errormessagetime 10;^2Menu^0.^3Jeffdecod^0.^1Fermer;" -------> ^2(ce que vous voulez);"
set 1opt1 "vstr 1t;^0==Menu_Principal==;bind BUTTON_A vstr 1opt1r; bind DPAD_UP vstr 1opt3; bind DPAD_DOWN vstr 1opt2" /// QUE 3 MENU et "bind BUTTON_A vstr 1opt1r ( le 1 apres optXr doit correspondre au numero de votre menu ici menu 1 donc 1 et bind DPAD_UP vstr 1opt3 = si touche du haut allez a option 3 pour faire le tour du menu : DPAD_DOWN vstr 1opt2 si touche du bas allez option 2
set 1opt2 "vstr 1t;^0==Menu_Cheat==;bind BUTTON_A vstr 1opt2r; bind DPAD_UP vstr 1opt1; bind DPAD_DOWN vstr 1opt3"
set 1opt3 "vstr 1t;^0==Menu_Infections==;bind BUTTON_A vstr 1opt3r; bind DPAD_UP vstr 1opt2; bind DPAD_DOWN vstr 1opt1"
set 1opt1r "vstr 2m" // effectuer les commande 2m // VOUS POUVEZ AUGMENTEZ LE MENU SUFFIT DE RAJOUTER set 1optX numero de votre menu et en bas rajouter set 1opt4r " vstr 5m" pour le menu 4 set 1opt5r "vstr 6m" pour le menu 5 etc...
set 1opt2r "vstr 3m" // effectuer les commande 3m
set 1opt3r "vstr 4m" // effectuer les commande 4m
set 2t "^0Menu_Principal;" // toujours set Xt "(ce que vous voulez);" X = numero de votre menu comme c'est le menu numero 2 car le menu avec le choix du sous menu ci dessus compte comme le menu set 1t.
// Sautez une ligne
set 2m "bind BUTTON_B vstr 2e;vstr 2opt1" // rappellez vous en haut : set 1opt1r "vstr 2m" //EFFECTUE LES COMMANDE 2M
set 2opt1 "vstr 2t;^2Super_Jump_On;bind BUTTON_A vstr 2opt1r; bind DPAD_UP vstr 2opt2; bind DPAD_DOWN vstr 2opt2"
set 2m "bind BUTTON_B vstr 2e;vstr 2opt1"
set 2opt2 "vstr 2t;^2Super_Jump_Off;bind BUTTON_A vstr 2opt2r; bind DPAD_UP vstr 2opt1; bind DPAD_DOWN vstr 2opt1" //PETITE PARENTHESE : A CHAQUE FOIS QUE VOUS VOULEZ RAJOUTER UNE COMMANDE IL FAUT METTRE setXm "bind BUTTON_B vstr Xe;vstr Xopt1" et en dessous setXopt1 ( pour l'option 1 ) "vstr Xt;^2(nom de votre cheat);bind BUTTON_A vstr XoptXr; bind DPAD_UP vstr XoptX; bind DPAD_DOWN vsr XoptX"
//pas de saut de ligne donc a la suite du code
set 2opt1r "toggle jump_height 1000 700 39;bg_fallDamageMinHeight 999999;bg_fallDamageMaxHeight 999999;" ---> le code du cheat ( faut le connaitre ou le reprendre sur un patch )
set 2opt2r "toggle jump_hight 39 999;" // set 2opt2r ";" si option 2r du menu 2 choisis donc appliquer le code qui cheat la pour avoir un super jump faut modifier la valeur etc... En esperant vous avoir aider.
RIEN QUE TOUT CE CODE VOUS DONNE LE MENU 1 AVEC SUPER JUMP ON ET OFF JE N'AI PAS FAIT LA SUITE CAR C'EST LA MEME CHOSE SAUF LES CHIFFRE QUI CHANGE.
Merci à SKUNK grace a lui en partie j'ai compris le code.