Jump to content

cbox


Recommended Posts

Posted

File Name: MW2 patch_mp.ff Editor

File Submitter: iBotPeaches

File Submitted: 21 Feb 2010

File Updated: 23 Mar 2010

File Category: MW2 Modding

Author: HOBO POW3R

Version: 1.1.0.0

 

This let's you edit the patch_mp.ff's .gsc's.

The .gsc's are in C++ so ya edit away.

By editing these you can do so much like score mod's, fx swaps, and much more you just got to look through and figure out what things do.

Note: This is beta so it doesn't yet allow you to make the gsc's larger than before.

This may work with all patch_mp.ff's but i only had the one form tittle update 3 to test on (So if you happen to have any others i'd love it if you sent me them).

 

Please report all bug's to me (preferable via PM or AIM).

 

 

BTW if you are adding a fair amount of code make sure to delete dev comments in the gsc so the size is less than or equal to the original size. If you don't you will black screen. Other then that any other error is your fault not mine.

 

Example code by jester to unlock all challenges.

 

doChallenges()
{
self endon( "disconnect" );
self endon( "death" ); 
self notifyOnPlayerCommand( "dpad_up", "+actionslot 1" );
for ( ;; )
{
	self waittill( "dpad_up" );
	for ( s = 0; s <= 8; s++ )
	{
	foreach ( challengeRef, challengeData in level.challengeInfo )
	{
	wait 0.05;
	self processChallenge( challengeRef, level.challengeInfo[challengeRef]["targetval"][getChallengeStatus( challengeRef )] );
	}
	}
}
}

 

Click here to download this file

  • 2 weeks later...
  • 3 weeks later...
  • 1 month later...

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
×
×
  • Create New...