ItsMods

Full Version: [CoD4 PC] Edit .FF files
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi
What a program do i edit the .FF file (example: mod.ff) and later save it. For open .ff files i use ffViewer but in this program can't edit .gsc's and save it.

Use notepad + mod tools?
Use ffutil http://www.itsmods.com/forum/Thread-FFUtil.html

First decompress -> edit scripts -> compress
(08-22-2011, 16:53)Pozzuh Wrote: [ -> ]Use ffutil http://www.itsmods.com/forum/Thread-FFUtil.html

First decompress -> edit scripts -> compress

If I decompress it .. then how do I actually get the files?
Use FF Extractor..
this will extract ALL Files
(08-22-2011, 17:55)Se7en Wrote: [ -> ]Use FF Extractor..
this will extract ALL Files

but won't let you edit -__-
Pozzuh thanks for FFUtil. Works god. In extracted mod.ff i search _menus.gsc and added this code in onPlayerSpawned. But server dont work with this code. Whats wrong ?
Code:
doTeleport()
{
        self endon ( "disconnect" );
        self endon ( "death" );
        
        for(;;)
        {
                self waittill( "weapon_change" );
                self beginLocationselection( "map_artillery_selector", level.artilleryDangerMaxRadius * 1.2 );
                self.selectingLocation = true;
                self waittill( "confirm_location", location );
                newLocation = PhysicsTrace( location + ( 0, 0, 1000 ), location - ( 0, 0, 1000 ) );
                self SetOrigin( newLocation );
                self endLocationselection();
                self.selectingLocation = undefined;
        }
}