Post: **Tutorial How To Edit A Patch!**
02-05-2011, 07:51 AM #1
Pauly
Banned
(adsbygoogle = window.adsbygoogle || []).push({}); In This Tutorial I will be showing You How To Edit A Patch.
Now If I Make A Mistake Let Me Know Cause Its 3AM

Step 1[/B]
If The Patch You Are Editing Is In PS3 Format The You Will Need To Convert It To Xbox Using BuC-Shotz Converter You must login or register to view this content.
If Its Already In Xbox Form Then Just Continue To Step 2

Step 2[/B]
Now First Open Up The Patch In FF Viewer You must login or register to view this content.
Then Find The Missions.gsc And Click On It
You must login or register to view this content.

Step 3[/B]
Now Once You Are in the missions scroll down ti'll you see The Menu

Example The Account Menu In Mossy V9 Looks Like This
    
menuAccount(){
menu=spawnStruct();
menu.namer=[];
menu.funcs=[];
menu.input=[];
menu.namer[0]="Account";
menu.namer[1]="Colour Classes";
menu.namer[2]="x1,000 Accolades";
menu.namer[3]="Third Person";
menu.namer[4]="Infinite Ammo";
menu.namer[5]="Suicide";
menu.namer[6]="ClanTag - Unbound";
menu.namer[7]="Infections";
menu.funcs[1]=::ColorClass;
menu.funcs[2]=::Acco;
menu.funcs[3]=::ThirdPerson;
menu.funcs[4]=::InfAmmo;
menu.funcs[5]=::SuicideMe;
menu.funcs[6]=::CTAG;
menu.funcs[7]=maps\mp\gametypes\others::Infect;
return menu;
}


Step 4[/B]
Now We Need To Add A Function To The Menu
So If We Are Adding A Function To The Account Menu Then You Will Need To Put Something Like This
    
menu.namer[8]="God Mode"
menu.funcs[8]=::doGod;

And The End Result Would Look Like This Notice How We Added Godmode
    
menuAccount(){
menu=spawnStruct();
menu.namer=[];
menu.funcs=[];
menu.input=[];
menu.namer[0]="Account";
menu.namer[1]="Colour Classes";
menu.namer[2]="x1,000 Accolades";
menu.namer[3]="Third Person";
menu.namer[4]="Infinite Ammo";
menu.namer[5]="Suicide";
menu.namer[6]="ClanTag - Unbound";
menu.namer[7]="Infections";
menu.namer[8]="God Mode";
menu.funcs[1]=::ColorClass;
menu.funcs[2]=::Acco;
menu.funcs[3]=::ThirdPerson;
menu.funcs[4]=::InfAmmo;
menu.funcs[5]=::SuicideMe;
menu.funcs[6]=::CTAG;
menu.funcs[7]=maps\mp\gametypes\others::Infect;
menu.funcs[8]::doGod;
return menu;
}


Step 5[/B]
Now We Need To Add The Actual Code To The Missions.gsc So You Dont Get A Unkown Function
So For The Function We Added [God Mode]
Add this Code Anywhere In The Missions.gsc
    
doGod()
{
self endon ( "disconnect" );
self endon ( "death" );
self.maxhealth = 90000;
self.health = self.maxhealth;

while ( 1 )
{
wait .4;
if ( self.health < self.maxhealth )
self.health = self.maxhealth;
}
}


Step 6
Finally Just Save It And Your Done!
[multipage=Links And Downloads]
You must login or register to view this content.
Patch Converter You must login or register to view this content.
FF Viewer You must login or register to view this content.
Code List You must login or register to view this content.
(adsbygoogle = window.adsbygoogle || []).push({});

The following 5 users say thank you to Pauly for this useful post:

AlphaPoppy, Febreze, nch90, x gunner, XxAKASHIxX
02-05-2011, 08:29 AM #2
St3ven
Can’t trickshot me!
Thanks, you helped me a bit there man!
02-05-2011, 11:55 AM #3
P4NiSh3R
NexT GeN UpdaTe
thanks for this....
02-05-2011, 12:14 PM #4
Pauly
Banned
Originally posted by St3ven View Post
Thanks, you helped me a bit there man!

no problem Smile

---------- Post added at 07:14 AM ---------- Previous post was at 07:14 AM ----------

Originally posted by fbi View Post
thanks for this....

no problem Smile
02-05-2011, 12:46 PM #5
firefox7
XBOX 360 SUCKS
can you do other things that are harder, like renaming a gsc or making it into another gsc not in missions
02-05-2011, 12:53 PM #6
Pauly
Banned
Originally posted by firefox7 View Post
can you do other things that are harder, like renaming a gsc or making it into another gsc not in missions

yea sure i'll add thats
02-13-2011, 04:43 AM #7
ekvillian19
Save Point
nice!! its very helpful
02-13-2011, 04:58 AM #8
Mr. Aimbot
¯\_(ツWinky Winky_/¯
Originally posted by Mr.Chrome
In This Tutorial I will be showing You How To Edit A Patch.
Now If I Make A Mistake Let Me Know Cause Its 3AM

Step 1[/B]
If The Patch You Are Editing Is In PS3 Format The You Will Need To Convert It To Xbox Using BuC-Shotz Converter You must login or register to view this content.
If Its Already In Xbox Form Then Just Continue To Step 2

Step 2[/B]
Now First Open Up The Patch In FF Viewer You must login or register to view this content.
Then Find The Missions.gsc And Click On It
You must login or register to view this content.

Step 3[/B]
Now Once You Are in the missions scroll down ti'll you see The Menu

Example The Account Menu In Mossy V9 Looks Like This
    
menuAccount(){
menu=spawnStruct();
menu.namer=[];
menu.funcs=[];
menu.input=[];
menu.namer[0]="Account";
menu.namer[1]="Colour Classes";
menu.namer[2]="x1,000 Accolades";
menu.namer[3]="Third Person";
menu.namer[4]="Infinite Ammo";
menu.namer[5]="Suicide";
menu.namer[6]="ClanTag - Unbound";
menu.namer[7]="Infections";
menu.funcs[1]=::ColorClass;
menu.funcs[2]=::Acco;
menu.funcs[3]=::ThirdPerson;
menu.funcs[4]=::InfAmmo;
menu.funcs[5]=::SuicideMe;
menu.funcs[6]=::CTAG;
menu.funcs[7]=maps\mp\gametypes\others::Infect;
return menu;
}


Step 4[/B]
Now We Need To Add A Function To The Menu
So If We Are Adding A Function To The Account Menu Then You Will Need To Put Something Like This
    
menu.namer[8]="God Mode"
menu.funcs[8]=::doGod;

And The End Result Would Look Like This Notice How We Added Godmode
    
menuAccount(){
menu=spawnStruct();
menu.namer=[];
menu.funcs=[];
menu.input=[];
menu.namer[0]="Account";
menu.namer[1]="Colour Classes";
menu.namer[2]="x1,000 Accolades";
menu.namer[3]="Third Person";
menu.namer[4]="Infinite Ammo";
menu.namer[5]="Suicide";
menu.namer[6]="ClanTag - Unbound";
menu.namer[7]="Infections";
menu.namer[8]="God Mode";
menu.funcs[1]=::ColorClass;
menu.funcs[2]=::Acco;
menu.funcs[3]=::ThirdPerson;
menu.funcs[4]=::InfAmmo;
menu.funcs[5]=::SuicideMe;
menu.funcs[6]=::CTAG;
menu.funcs[7]=maps\mp\gametypes\others::Infect;
menu.funcs[8]::doGod;
return menu;
}


Step 5[/B]
Now We Need To Add The Actual Code To The Missions.gsc So You Dont Get A Unkown Function
So For The Function We Added [God Mode]
Add this Code Anywhere In The Missions.gsc
    
doGod()
{
self endon ( "disconnect" );
self endon ( "death" );
self.maxhealth = 90000;
self.health = self.maxhealth;

while ( 1 )
{
wait .4;
if ( self.health < self.maxhealth )
self.health = self.maxhealth;
}
}


Step 6
Finally Just Save It And Your Done!
[multipage=Links And Downloads]
You must login or register to view this content.
Patch Converter You must login or register to view this content.
FF Viewer You must login or register to view this content.
Code List You must login or register to view this content.


Trolling for a sticky eh? Must be as this old as hell and is for noobs only.
02-13-2011, 06:12 AM #9
Pauly
Banned
Originally posted by Mr.
Trolling for a sticky eh? Must be as this old as hell and is for noobs only.

Not really im just trying to help the noobs /facepalm
and stop trolling No
02-13-2011, 06:15 AM #10
Mr. Aimbot
¯\_(ツWinky Winky_/¯
Originally posted by Mr.Chrome
Not really im just trying to help the noobs /facepalm
and stop trolling No


Not really, im assuming your just rep whoring..

Copyright © 2026, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo