Created By: Unabomber[MIR]
eMail: cow@iamerica.net
Difficulty Scale: Easy


In this tut you can have the ultimate gun like in "The 5th Element".
We put all of the guns together to make one.


Step 1


Ok open up the weapons.qc
Scroll down to line 907

It should read
}
else if (self.weapon == IT_SHOTGUN)
{
player_shot1 ();
W_FireShotgun ();
self.attack_finished = time + 0.5;
}
Blah Blah Blah
{

Now we make it look like this.

}
else if (self.weapon == IT_SHOTGUN)
{
player_shot1 (); // now we dont want the axe because it would
// serve no purpose. we want to shoot from far away
player_nail1 (); // I use it
player_rocket1 (); // I use it
player_light1 (); //optional
W_FireShotgun ();
W_FireSuperShotgun ();
W_FireSpike ();
W_FireSuperSpikes ();
W_FireGrenade ();
W_FireRocket ();

self.attack_finished = time + 1.5; // make it safe for you.
// trust me
}
Blah Blah Blah
{
Uh thats it. If you had the axe you would need to be up close. thus killing your self with the rockets. Compile the usual way. This has be checked for bugs and there are none other than your ammo drains away with faster reloading time. Have Fun! The Unabomber[MIR] made this! try my other fine products! So email me! HTMLized by Adrian "Mr. Pink" Finol