UGX-Mods Login

or login with an authentication provider below
Sign In with Google
Sign In with Twitter
Sign In with Discord
Sign In with Steam
Sign In with Facebook
Sign In with Twitch

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Topics - Rollonmath42


Here's the crazy dual wield mod that I worked on for Call of the Dead on Black Ops 1, forged from the ideas of TheRelaxingEnd.

Compilation of the Weapons (Ray Gun Mark 2 isn't in the mod anymore, RIP):
MOD OF THE DEAD Release (Dual Wield Mystery Box & More!) BO1 Zombies Mod

Install tutorial/last addition to mod:
Mod of the Dead - Release


HitmanVere's Shaders (Place in "main" folder):
www.mediafire.com
8 years ago
This tutorial is not meant for beginners. You should have an understanding of the process of porting weapons and how to setup your map's/mod's scripts. This is the first part (in a sense) on how to port dual wields into WaW using animations exported from Treyarch's games (BO1 and BO2 as of now). The next part (when I get to it) will involve Infinity Ward's as they do things slightly differently that makes the process a bit more difficult/longer.

How to Port Dual Wields into WaW (Sync - Treyarch)

Sync Dual Wield Muzzleflash/Shelleject Scripts (created by Offthewall, be sure to credit him :D): https://www.mediafire.com/?3nmceh1nnsl213j
9 years ago
In recognition of the massive support I've received for the mod, I decided to release a beta version that currently works on Kino and FIVE.

Simply put, its a mod (similar to my previous Rollon's Gun Mods) that replaces the weapons used in-game. Wall chalks and hintstrings have been modified to state the correct weapon and some weapons have been removed from the box for use.

Gameplay Video:
Update 7 - Black Ops Zombie Mod (Beta Release)

Installation Video:
How to Install Rollon's Gun Mod for BO1 Zombies

Mediafire
MEGA

Credits:
Tom_Bmx
DidUknowiPwn
ElTitoPricus
Quizz
Master131
Ray1235
HitmanVere
MrTLexify
Resortified
Cra0kalo
Message me if I forgot you, I can't remember anyone else
9 years ago
As many of you know, there are a lot of different settings available in a weapon file that can make a gun amazing or absolutely horrible. Due to what I've seen in a lot of maps lately, I decided I might as well make a post of these settings that can help make your weapons look much better/accurate to the original versions if its ported from any of the CoD's after World at War. The notes that are posted for each setting are based on the weapon files from CoD4 up to now, since I have not worked with anything before CoD4.

Update: sethnorris brought up a point I forgot about, which was how to fix 3-round burst (or any round burst weapon) that I had posted a couple days ago.

Update 2: Added a fix that will help for those using the hideTags option.

Update 3: Added how to do certain sounds.

New: fireSound and fireSoundPlayer - These two settings manage the fire sound used whenever the player has more than one bullet/projectile/etc. left in the weapon. fireSound controls the sound heard by players in co-op whereas fireSoundPlayer controls the sound heard by the player firing the weapon them self. The names placed here must be defined in a soundalias located in your World at War directory/raw/soundaliases if it is not a sound already in the game (such as fire sounds of other weapons already in-game). The soundalias then must be included in your mod.csv using one of the two:
Code Snippet
Plaintext
sound,soundalias_name_here_without_extension,,all_mp
sound,soundalias_name_here_without_extension,,all_sp
The one you need to use depends on how your soundalias is written. A sound alias with this

would use the variation with all_mp. I'll need to do some testing to see for sure how this works, but that is what I've at least figured out from having this setup throughout most of my maps.

New: lastShotSound and lastShotSoundPlayer - These settings manage the fire sound made whenever a player fires the last bullet/projectile/etc. in their clip. These are setup in the same way as fireSound and fireSoundPlayer are.

New: notetrackSoundMap - This is probably the one most new people have troubles with, although very easy to setup. This defines any sounds that are played during the animation. An animation must have notetracks setup already, whether added when exporting the animation from Maya, adding it through a hex editor, or using Tom's Xanim Exporter. Whichever way you choose from those three work fine if the notetracks isn't already implemented. If you are transferring animations from either CoD4 or BO1, they already have notetracks defined for you, so you don't need to add them yourself. The format for notetracks goes likes this:

After the notetrackSoundMap\ part, you type in the name of the notetrack used in the animation. If you don't know what it is called, you can go to your World at War directory/raw/xanim and open up the animation in either Notepad++, a hex editor, or Tom's Xanim Exporter. If using Notepad++/hex editor, you'll need to scroll to the bottom of the file, and you'll find the following:

It is easier to see in Notepad++ (in my opinion), but in any case, those actual readable words at the bottom are the notetracks separated by special characters. Simply either copy the words or type it out as the first part right after notetrackSoundMap\. Then you want to hit space and type in the name of the alias you want to define in your soundalias file. You can either make a new alias or use one already defined in World at War, simply by typing in the name of the alias used in the weapons.csv located in your World at War directory/raw/soundaliases. Then if you need to type in a new set of notetracks, simply hit enter (for organization sake) and type in the new notetrack. TL;DR the format is as follows for notetrackSoundMap\:
Code Snippet
Plaintext
notetrackSoundMap\notetrack_name_from_animation notetrack_name_defined_in_soundalias
The soundalias is then included the same way they are for fireSound and such mentioned above.

handModel and hideTags - If you change the viewhands the player uses from the _loadout.gsc (or wherever your scripts set it), you'll want to change it in the handModel setting that way the hideTags option works properly, which allows you to hide parts of the gun. It is most notably used in multiplayer as to not have to have multiple models for different attachments as used in CoD4 up to BO1.

fireType - This is a pretty well-known setting, however some may not have realized that this can be set to a few different things than normal:
Code Snippet
Plaintext
Single Shot
Full Auto
2-Round Burst
3-Round Burst
4-Round Burst
The names of each are self-explanatory. The maximum burst is 4-Round Burst (tested and confirmed by ElTitoPricus). If you want to use any of the three bursts however, you must use the fix described below.

lastFireTime - Apparently this setting is not in a World at War weapon file by default, so if you were to try making a weapon a burst fire (2, 3, or 4), the last mag of the gun would have a slower fire rate. To fix this, simply put after fireTime/timehere/ this:
Code Snippet
Plaintext
lastFireTime/0/
The function exists even though its not automatically in the weapon file, as CoD4 supported it (as seen with the M16 and such) and tests revealed that World at War still had this available.

standMoveF, standMoveR, standMoveU - These affect the gun moving downwards (or upwards, if for whatever reason its set to do so) whenever you walk. These were only modified in CoD4 and CoD5, but later CoD's just depended on code that rotated the gun based on movement direction. It's preferable to have all of these set to 0, but usually the most I'll go is -0.5 on standMoveU, so it doesn't look like it's doing nothing when moving around.

sprintOfsF, sprintOfsR, sprintOfsU, sprintRotP, sprintRotY, sprintRotR, sprintBobH, sprintBobV - These affect the gun moving in a certain when the player sprints. CoD5 was the only CoD to use these for sprinting as no animations were made for sprinting, which allowed people to make a normal and empty version of the animations without having to implement the empty sprint system (which was used first in Black Ops 1). I recommend all of these to be set to 0 if you have sprinting animations that you want to use.

duckedMoveF, duckedMoveR, duckedMoveU, duckedRotP, duckedRotY, duckedRotR, duckedOfsF, duckedOfsR, duckedOfsU - These all affect the position of the gun when ducked and standing still or moving. I recommend these all to be 0 with the exception of duckedOfsU set to -1.

adsZoomFov -  This affects the FOV change when you ADS. A majority of the weapons throughout the CoD games use somewhere from 45-55 in intervals of 5. There is no set standard however as it depends on how the gun looks whenever you ADS.

And the last ones usually found near the end of a weapon file:

adsDofStart and adsDofEnd - These settings affect the depth of field settings whenever you ADS. Not sure about what others think, but I enjoy a clean look, therefore I highly recommend setting both of these to 0. That causes there to be no blur whenever you ADS and looks really well with most guns.

There are plenty of others you can find in the weapon file that I did not list here that affect the crosshair sizes (hipSpread___, thanks to ConvictioNDR for the correct setting) and damage multipliers (locHead, locNeck, etc.) that may be worth looking into, but it all depends on what your weapon is supposed to do.

I hope most of you take advantage of these settings to help improve the quality of your weapons... Or make worse if you really wanted to ;)
9 years ago
Refinery


Description:
Refinery is the second map (the first being Shanty Town, released only on ZM) I've created that is a remake of one of the multiplayer maps in the PSP game Syphon Filter: Dark Mirror. I decided to go with this map for two main reasons: 1) Refinery was one of my favorite maps in the multiplayer (being there were only 6, there wasn't many to choose from in the first place) and 2) The way the map is set up is perfect for the conditions of the YAW contest which this map was entered in to (video will be linked at the bottom).

Features:
-Two easter eggs, one involving the winnable ending
-New weapons from MW1 up to Ghosts (listed below)
-Modified Gungame and Sharpshooter (only upgraded weapons)
-Customized Dvars for different look (including FOV)
-Zombie Counter
-Different wall weapon setup
-New effect and melee when using upgraded weapons

Weapons (in random order):
-MTAR (BO2)
-G3 (MW1, different from the previous one in the UGX-Mod)
-Commando (BO1)
-M16A1 (BO1)
-FAL OSW (BO2)
-Model 1887 (MW2)
-Kiparis (BO1)
-Special Easter Egg Weapon
-PDW (Ghosts, functions and is animated like the AW version)
-FMG-9 (MW3)
-PP90M1 (MW3)
-Remington 870 MCS (BO2)
-Ballista (BO2)
-Ripper (Ghosts)

Developer Walkthrough
Custom Zombies | Refinery - Dev Gameplay

Images:







Credits:
DidUknowiPwn
Offthewall
HitmanVere
Conrow Wallace
Elfenliedtopfan5
Tom_Bmx
ElTitoPricus
Quizz
Treminaor
Sanya
Master131
S1ippery Jim
Ramsy
Ray1235
Hellohi
Thezombiekilla1031
TheRelaxingEnd

YAW's Playthrough:
www.youtube.com/watch?v=x1DqlmG6KJo
www.youtube.com/watch?v=3ppTLo0DzBc
9 years ago
All required links are provided in the description of the video. If you are using Chrome, 1080p60fps is available, though I'm not sure it'll be of much use for this tutorial :P

[Tutorial] Porting Titanfall Weapons into CoD - Part 1
[Tutorial] Porting Titanfall Weapons into CoD - Part 2
9 years ago
I guess I'll go ahead and make my WIP now since most others entering the contest have already as well.

For my map I decided to continue with the remakes I wanted to do of the multiplayer maps from the game Syphon Filter: Dark Mirror on PSP and I thought that this map would fit perfect with some decoration for this contest since the original map was based in Alaska while it was snowing. Some of you may know my first remake, Shanty Town, which was pretty much an exact layout of how the original map was. For this map I plan on changing up some of the areas so it isn't an exact copy of the original but still maintain most parts of the base layout of the map. I've got a lot of things planned already that I think would go great with the map which I'll reveal later on, if I don't run into the errors I fear will occur at some point (fx limit/sound limit), but hopefully the final product will be worthwhile. Below I'll be slowing adding progress as I get to it.

Update 0 (Beginning):

About 2-3 hours work from last night and this morning (was nitpicking placement of stuff).





Update 1:

I finally got around to going through the singleplayer version of this map (unfortunately the multiplayer was shut down awhile back by Sony) and saw that the walls looked slightly different, so I went through and changed the look of the walls and finished the top part. I also managed to finish the loop around the map with a different part than the original in the outside area. All that's left for the actual level design is just finishing up the inside areas (setting up the walls and ceilings), filling in what will be in the middle area of the map, and creating the rooms where the players will spawn. Once that's done, I can finally add some textures, which will probably be what will be shown in the next update :)







Update 2:

Finished texturing the map, going to start adding in models and lights soon. :)






Update 3 (About time for an update eh?):

Thanks to help from Conrow Wallace (lights), Issac (dvars), and DiduKnowiPwn (scripting), I managed to get the look for the map that I think will look better than the night time look I originally planned on, which is now a nice sunset :)




10 years ago
Here's my version of this process, showing from extracting the model to converting the assets in Asset Manager. All download links are included in the description.

http://www.youtube.com/watch?v=5G3hIzEMnN4
10 years ago
Introduction
Basically, you can create mods for Black Ops Zombie Maps through this method. You can only create however weapon/scripted mods, but not maps. Please be sure to follow ALL instructions provided, as you can cause your game to be stuck on your mod unless you do a Verify Integrity of Game Cache through Steam.

I have to give thanks to DidUKnowIPwn for discovering this method.
Update: Thanks to ConvictioNDR for finding the fix for the files for Kino; the mod.csv for it has been updated.

What You'll Need
~Call of Duty: Black Ops on Steam
~Call of Duty: Black Ops Mod Tools BETA
~An FF Extractor (Tom_Bmx's works perfect for this http://tom-crowley.co.uk/downloads/?id=11 )

Before Starting
BEFORE you begin, you will want to go to your Black Ops directory, then go to zone, then Common and create a backup of the _patch.ff of the map you want to create your mod for. If you want to make your mod for multiple maps, then you will have to make backups of each one.



These are the files that I am referring to above. The maps are as follows:
Code Snippet
Plaintext
zombie_coast ~ Call of the Dead
zombie_cod5_asylum ~ Verruct
zombie_cod5_factory ~ Der Riese
zombie_cod5_prototype ~ Nacht Der Untoten
zombie_cod5_sumpf ~ Shi No Numa
zombie_cosmodrome ~ Ascension
zombie_moon ~ Moon
zombie_pentagon ~ FIVE
zombie_temple ~ Shangri-La
zombie_theater ~ Kino Der Toten

ALSO, if you have not used the Mod Tools before and have just installed it, make sure to click on the Converter button in Launcher to convert any assets that may be necessary.

Creating the Mod
First thing you will want to do is open your FF Extractor (in this case I'm using Tom's) and extract the contents of the _patch.ff of the map you want to do your mod for. [NOTE: If you want to make your mod for more than one map, you will have to extract the files from each map's _patch.ff and do this process for each one separately.] For this example I am doing this for Kino Der Untoten, so I would extract the files from zombie_theater_patch.ff. When extracted, you should have a folder (if using Tom's) in the same directory as the _patch.ff that you extracted with its name, as shown here:


Next, copy the folders extracted and go to your "mods" folder and create a new folder called whatever you want. For this example, I was working on a mod with Titanfall weapons, so I called mine "zm_titanfall" as shown here:


From here, you create your mod as you normally would on Black Ops Multiplayer. For those of you who have done work on World at War (which I'm guessing most reading this have) it is fairly similar, although there are some differences. I'm planning on covering weapon porting/converting in a separate tutorial. Whenever you go to put your weapon files in your mod's folder, be sure to name them something that will be loaded in game without having to use some sort of external console (which is not allowed, and can risk a VAC ban, though I am not sure of Singleplayer having it). For this example, I decided to replace the wall weapons and beginning pistol, like this:


If you don't know the name of the weapon files for the weapons on the wall for Black Ops, they are as follow (NOTE: This list is for Kino Der Toten. Most of the other maps have the same ones or a few removed.):
Code Snippet
Plaintext
ak74u_zm ~ AK74u
claymore_zm ~ Claymore
ithaca_zm ~ Stakeout
m14_zm ~ M14
m16_zm ~ M16
m1911_zm ~ M1911
mp5k_zm ~ MP5K
mp40_zm ~ MP40
mpl_zm ~ MPL
pm63_zm ~ PM63
rottweil72_zm ~ Olympia

Once you are ready to compile your mod, open up Launcher (either from Steam or from the "bin" folder inside of the Black Ops Directory) and switch the mod to yours. Click on Zone Source. Notepad should open up with no text (if you have not created one/modified it yet). Here, include the weapon files and sound alias you are using (if needed). THEN YOU MUST also include the scripts that were extracted earlier at the beginning of the file. To make this easier for you, I went through each map and made a list of each script you need for whichever map you are doing your mod for:

zombie_coast
Code Snippet
Plaintext
rawfile,clientscripts\_zombiemode_ai_director.csc
rawfile,clientscripts\zombie_coast_ffotd.csc
rawfile,maps\_zombiemode_ai_director.gsc
rawfile,maps\_zombiemode_player_zipline.gsc
rawfile,maps\zombie_coast.gsc
rawfile,maps\zombie_coast_achievement.gsc
rawfile,maps\zombie_coast_ai_director.gsc
rawfile,maps\zombie_coast_amb.gsc
rawfile,maps\zombie_coast_eggs.gsc
rawfile,maps\zombie_coast_ffotd.gsc
rawfile,maps\zombie_coast_flinger.gsc

zombie_cod5_asylum
Code Snippet
Plaintext
rawfile,maps\zombie_cod5_asylum.gsc

zombie_cod5_factory
Code Snippet
Plaintext
rawfile,maps\zombie_cod5_factory_teleporter.gsc

zombie_cod5_prototype
Code Snippet
Plaintext
rawfile,maps\zombie_cod5_prototype.gsc

zombie_cod5_sumpf
Code Snippet
Plaintext
rawfile,animscripts\traverse\crouch_jump_down_40.gsc
rawfile,maps\zombie_cod5_sumpf.gsc
rawfile,maps\zombie_cod5_sumpf_magic_box.gsc
rawfile,maps\zombie_cod5_sumpf_perks.gsc
rawfile,maps\zombie_cod5_sumpf_zipline.gsc

zombie_cosmodrome
Code Snippet
Plaintext
rawfile,clientscripts\_zombiemode_weap_black_hole_bomb.csc
rawfile,clientscripts\zombie_cosmodrome.csc
rawfile,clientscripts\zombie_cosmodrome_ffotd.csc
rawfile,maps\_zombiemode_weap_black_hole_bomb.gsc
rawfile,maps\zombie_cosmodrome.gsc
rawfile,maps\zombie_cosmodrome_ai_monkey.gsc
rawfile,maps\zombie_cosmodrome_ffotd.gsc
rawfile,maps\zombie_cosmodrome_lander.gsc
rawfile,maps\zombie_cosmodrome_magic_box.gsc

zombie_moon
Code Snippet
Plaintext
rawfile,clientscripts\_zombiemode_equip_gasmask.csc
rawfile,clientscripts\_zombiemode_weap_black_hole_bomb.csc
rawfile,clientscripts\zombie_moon_fx.csc
rawfile,maps\_zombiemode_ai_astro.gsc
rawfile,maps\_zombiemode_ai_faller.gsc
rawfile,maps\_zombiemode_ai_quad.gsc
rawfile,maps\_zombiemode_equip_gasmask.gsc
rawfile,maps\_zombiemode_jump_pad.gsc
rawfile,maps\_zombiemode_weap_black_hole_bomb.gsc
rawfile,maps\zombie_moon.gsc
rawfile,maps\zombie_moon_achievement.gsc
rawfile,maps\zombie_moon_digger.gsc
rawfile,maps\zombie_moon_ffotd.gsc
rawfile,maps\zombie_moon_gravity.gsc
rawfile,maps\zombie_moon_teleporter.gsc
rawfile,maps\zombie_moon_wasteland.gsc

zombie_pentagon
Code Snippet
Plaintext
rawfile,clientscripts\zombie_pentagon_ffotd.csc
rawfile,maps\_zombiemode_ai_thief.gsc
rawfile,maps\zombie_pentagon.gsc
rawfile,maps\zombie_pentagon_elevators.gsc
rawfile,maps\zombie_pentagon_ffotd.gsc
rawfile,maps\zombie_pentagon_teleporter.gsc

zombie_temple
Code Snippet
Plaintext
rawfile,clientscripts\zombie_temple.csc
rawfile,maps\zombie_temple_ai_monkey.gsc
rawfile,maps\zombie_temple_elevators.gsc
rawfile,maps\zombie_temple_ffotd.gsc
rawfile,maps\zombie_temple_pack_a_punch.gsc
rawfile,maps\zombie_temple_spawning.gsc
rawfile,maps\zombie_temple_sq.gsc
rawfile,maps\zombie_temple_sq_brock.gsc
rawfile,maps\zombie_temple_sq_ptt.gsc

zombie_theater
Code Snippet
Plaintext
rawfile,clientscripts\zombie_theater_ffotd.csc
rawfile,clientscripts\zombie_theater_fx.csc
rawfile,maps\createart\zombie_theater_art.gsc
rawfile,maps\zombie_theater.gsc
rawfile,maps\zombie_theater_ffotd.gsc
rawfile,maps\zombie_theater_magic_box.gsc
rawfile,maps\zombie_theater_movie_screen.gsc
rawfile,maps\zombie_theater_teleporter.gsc

All you have to do is copy the lines of code from whichever map you are doing this mod for and paste it into your mod.csv, as shown here:


Save the mod.csv, and close it. Then tick in the IWD File List ONLY the "images" folder, "sound" folder, and "weapons" folder. Then tick under Build Mod "Link FastFile" and "Build IWD" and hit the "Build Mod" button. Once it finishes compiling, go to your mod's folder and make a copy of both the mod.ff and your IWD, as shown here:


Rename the copy of the mod.ff (mod - Copy.ff) to the map that your are modding's _patch.ff, so in my case I would use "zombie_theater_patch.ff". Rename your IWD to "iw_xx.iwd" (NOTE: xx represents any number past 41. The first 42 numbers [00 to 41] are used for the base game and DLC's IWDs, and you don't want to replace them.) BEFORE CONTINUING: Make sure you have made the backup of the _patch.ff of the map you are doing this mod for in your Black Ops Directory/zone/Common folder, or else your game will only load your .ff and will not let you play with others online.

Installing the Mod
First copy the IWD to your Black Ops Directory/main folder. It SHOULD NOT replace any IWDs that are in there already if named correctly. Then copy the _patch.ff from your mod's folder to your Black Ops Directory/zone/Common folder. It SHOULD replace the _patch.ff in there. Now simply run the game and your mod should now load when you play the game! Here are some screenshots of my mod and a video from DidUKnowIPwn's perspective, which I will link below. To install, you simply do what I said here in this section.




https://www.youtube.com/watch?v=uDbyryhWN8I

Download link for my mod used in tutorial: https://www.mediafire.com/?2sc69dq44if03fo
10 years ago
I decided to go ahead and make this tutorial to showing almost everything someone needs to know to at least get their own animations working. There are some things that I don't use that exist in the rig that could help out but that would require you to figure out on your own. Regardless, here it is:

http://www.youtube.com/watch?v=DUKEsAfZNPM

http://www.youtube.com/watch?v=Jr3fOYFZ9vM

http://www.youtube.com/watch?v=QsnuldEej5o

Links to what you will need:
Maya 8.5 Plugin Tutorial: http://www.zombiemodding.com/index.php?topic=7023.msg79871
Maya 2012+ Plugin Tutorial: http://ugx-mods.com/forum/index.php?topic=1295.0
Tom's Xanim Exporter: http://tom-crowley.co.uk/downloads/?id=12
Tutorial Soundalias: https://www.mediafire.com/?o0r62gaba3rl6g3

Please do not request for a Blender or any other 3-D program version of this tutorial for I do not use any others to do modeling/animating.
10 years ago
Stuff needed:
Maya 8.5
3DS Max 2010 (not sure if it works with other versions, but it works with 2010)
Pre-existing Anims for a Gun (explained in the videos)
Tom's Downloads:
http://tom-crowley.co.uk/downloads/
Ninja Ripper:
http://www.mediafire.com/?aclvqo9d6v8j14m

Porting Black Ops 2 Guns into World at War Part 1
Porting Black Ops 2 Guns into World at War Part 2
Porting Black Ops 2 Guns into World at War Part 3
Porting Black Ops 2 Guns into World at War Part 4

This method can also work with models from other games.
11 years ago
I'm getting an issue with any new maps I compile where it freezes every couple of seconds/minutes. I'm not completely sure what the problem is but I've narrowed it down to something wrong to a script due to the console saying:

script runtime error: potential infinite loop in script - killing thread

It shows up every time the game freezes and I tried with developer 1 and developer_script 1 on but the game would crash upon the first freeze. Anyone have any ideas?
11 years ago
Ever since this morning, I couldn't get on to WaW online to play on cooperative. Any ideas as to why? It worked fine last night...

My first guess was that too many people played Comosea at the same time causing an overload of some sort, though that can't be right :troll:...
11 years ago
This is how to get custom music to play in your map when activating an object.

Function created by SajeOne:
Code Snippet
Plaintext
music_stuff()
{
    trigger_name = GetEnt("message","targetname");
    trigger_name SetHintString("Press &&1 to Listen to Music");
    flag_wait("all_players_connected");
    trigger_name waittill("trigger",player);
    trigger_name delete();
    player playsound("example");
}

Any suggestions as for the next tutorial I should do?
12 years ago
Finally got around to recording, and here it is:

Part 1:
http://www.youtube.com/watch?v=6Sp97s9t11I&feature=plcp

Part 2:
http://www.youtube.com/watch?v=TI8ulRdi9_o&feature=plcp

Part 3:
http://www.youtube.com/watch?v=ee638OnezF0&feature=plcp

Tom-BMX's CoD4XmodelMover: http://tom-bmx.com/downloads.php?id=2
Modern Weapons sounds (made by Paragalor): <Link Removed by Moderator - CoD4 sounds are not freely available and therefore links to them are considered piracy>
mw1_guns.csv file used in video: http://www.mediafire.com/view/?pm7n0pysomz6535

I recorded the tutorial twice, but the first time I forgot to enable my mic  :troll:.
12 years ago
Loading ...