Results 1 to 1 of 1

Thread: [CoD4] Create .ff using a stand-alone tool

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #1
    Assadministrator IzNoGoD's Avatar
    Join Date
    Aug 2012
    Posts
    1,718
    Thanks
    17
    Thanked 1,068 Times in 674 Posts

    [CoD4] Create .ff using a stand-alone tool

    This tutorial is a quick and dirty write-up of how to set up a .ff creating thingy for your cod4 mod.

    1. Make a new directory
    2. Download cod4 mod tools (https://github.com/promod/CoD4-Mod-T...ive/master.zip)
    3. Extract "raw" and "bin" from the mod tools zip into your directory (you can delete everything except linker_pc.exe and mss32.dll from the bin folder if so desired)
    4. Create yourdir/zone_source/english/assetlist folder+subfolders
    5. Extract all iwd files from your cod4 main into a single folder. Copy the "images" folder into the "raw" folder.
    6. Create your own .csv file for your mod and place it in the new directory
    7. Create a .bat file in your new directory with the following content:
    Code:
    @echo off
    copy /Y mod.csv zone_source
    cd bin
    linker_pc.exe -language english -compress -cleanup mod
    cd ..
    pause
    8. Copy the contents of your mod into the raw directory, overwriting existing files if required
    9. Start your .bat file
    10. Your mod.ff file is in zone/english folder.

    Enjoy.
    "Does not work" is an error report for a bug between keyboard and chair.

    All hail Artie Effem

  2. The Following User Says Thank You to IzNoGoD For This Useful Post:

    kung foo man (4th January 2021)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •