- Messages
- 408
- Reaction score
- 577
- Points
- 878
Needed Things:
Setting Up the Mod Folder:
Go to "C:\Program Files (x86)\Steam\steamapps\common\Call of Duty Black Ops\"
then download this and unpack it and put the "common_zombie_patch_tut" folder into your "mods" folder.
Modifying a gsc file:
ok now go into "mods\common_zombie_patch_tut\maps" and open "_zombiemode_load.gsc" with a text editor.
Add this somewhere into the "_zombiemode_load.gsc" file.
Now search for a function called "onPlayerSpawned()" and modify it like this
Compiling the Mod:
After all that **** we can compile the mod, for that go to "C:\Program Files (x86)\Steam\steamapps\common\Call of Duty Black Ops\bin" and open the Launcher.exe.
This should look like that
Ok now select your mod,check Link FastFile and then click on Build Mod.
After that you should get a file called "mod.ff" in your "mods" folder rename it to "common_zombie_patch.ff".
Installing the Mod:
Now go to "C:\Program Files (x86)\Steam\steamapps\common\Call of Duty Black Ops\zone\Common" and paste the "common_zombie_patch.ff" file into that folder(dont forget to backup the original file).
When you start a zombie game now it should print "Test" on left top corner of your screen
More Info:
When you want to add your own files dont forget to modify the mod.csv file.
Just open it with a text editor and add for example "rawfile,maps/_MyOwn.gsc".
Code:
Black Ops 1
Mod Tools(http://www.mediafire.com/download/g29lw063f6k28nq/BO1+Mod+Tools.rar)
Very basic Gsc knownledge
Setting Up the Mod Folder:
Go to "C:\Program Files (x86)\Steam\steamapps\common\Call of Duty Black Ops\"
then download this and unpack it and put the "common_zombie_patch_tut" folder into your "mods" folder.
Modifying a gsc file:
ok now go into "mods\common_zombie_patch_tut\maps" and open "_zombiemode_load.gsc" with a text editor.
Add this somewhere into the "_zombiemode_load.gsc" file.
Code:
testScriptLoop()
{
self endon("death");
for(;;)
{
iprintln("^1TEST");
wait .2;
}
}

Compiling the Mod:
After all that **** we can compile the mod, for that go to "C:\Program Files (x86)\Steam\steamapps\common\Call of Duty Black Ops\bin" and open the Launcher.exe.
This should look like that

Ok now select your mod,check Link FastFile and then click on Build Mod.
After that you should get a file called "mod.ff" in your "mods" folder rename it to "common_zombie_patch.ff".
Installing the Mod:
Now go to "C:\Program Files (x86)\Steam\steamapps\common\Call of Duty Black Ops\zone\Common" and paste the "common_zombie_patch.ff" file into that folder(dont forget to backup the original file).
When you start a zombie game now it should print "Test" on left top corner of your screen
More Info:
When you want to add your own files dont forget to modify the mod.csv file.
Just open it with a text editor and add for example "rawfile,maps/_MyOwn.gsc".
Last edited: