Inside3D tutorials.
Created By: Timm 'Mr?' Stokke
eMail: hestokke@online.no
Difficulty Scale: Easy


Step 1
This mod is done in the file called player.qc, so just open that one right away. When we're done, this patch will add about 3 times as much gore to DM games. All you have to do it to cut, and paste a few time, which i guess it not too hard for you. Ok. Scroll down to the text shown in step 2.

Step 2
Now, what you do is to copy one of the "ThrowGib" lines, and past it in under! So if you want, say dubble up with gore, the text should look like the one just under the original one. Can it get any easier?
	ThrowHead ("progs/h_player.mdl", self.health);
	ThrowGib ("progs/gib1.mdl", self.health);
	ThrowGib ("progs/gib2.mdl", self.health);
	ThrowGib ("progs/gib3.mdl", self.health);

This is how it will look when modefied.
	ThrowHead ("progs/h_player.mdl", self.health);
	ThrowGib ("progs/gib1.mdl", self.health);
	ThrowGib ("progs/gib1.mdl", self.health);
	ThrowGib ("progs/gib2.mdl", self.health);
	ThrowGib ("progs/gib2.mdl", self.health);
	ThrowGib ("progs/gib3.mdl", self.health);
	ThrowGib ("progs/gib3.mdl", self.health);

Step 3
And that's it! Compile it, and load it up the usual way. Please note that this will only work in deathmatch games. If you want more gibs, just paste the lines a few more times. Ohh.. And if you just want 10 gib1.mdl, that will work too. (Copy\paste..)