Jump to content
Sign in to follow this  
swat.tr

HK-G3 Sniper Rifle

Recommended Posts

but why creator of addon said it no differ German version ?

nevermind

seems he made T50 and called G3

Share this post


Link to post
Share on other sites

erm... what ammo box is it in?.. or what are the weapon/ammo class names?

Share this post


Link to post
Share on other sites
erm... what ammo box is it in?.. or what are the weapon/ammo class names?

20Rnd. G3

20Rnd_762x51_G3: 5Rnd_762x51_M24

Share this post


Link to post
Share on other sites

err (again).... they dont seem to work?

could someone correct this init line please?:

removeallweapons this; this addmagazine "20Rnd_762x51_G3"; this addweapon "20Rnd. G3"

Share this post


Link to post
Share on other sites

With SWAT's permission, I may push out a config that makes some changes, unless they already have something in the works. :)

Share this post


Link to post
Share on other sites

Any of you all config-gurus see any obvious errors with this config? Assume (for the sake of argument) that all the pathnames are correct. ;) :) The weapon/magazine stuff has been tested, but not the ammobox part - this is my first attempt at adding anything to an ammobox via config.

bad code removed

I'm a config-ing n00b, so any insight is much appreciated.

Edited by TRexian

Share this post


Link to post
Share on other sites

Tanks for TRexian upadate release coming soon .

the magazine shouldnt be bent...

This referans

12955_1223253013965_1008162118_30613749_839461_n.jpg

12955_1223253053966_1008162118_30613750_1931300_n.jpg

Edited by SWAT.TR

Share this post


Link to post
Share on other sites

The two HK rifles in the bottom pic are G41's which fires from a 5.56 NATO Stanag Magazine

http://world.guns.ru/assault/as46-e.htm

the magazine shouldnt be bent...

The 20rnd magazines for the CETME Modelo C had a slight curve but afaik all G3 magazines were straight

CETMEMAG20.jpg

Edited by Rich_482

Share this post


Link to post
Share on other sites

Yes some persons need to get there s*it straight. A G3 is a G3. Not something that happens to look like a G3. No matter if its made by HK or not.

And this HK-G3 Marksman rifle uses 20 rnd G3 or 5 rnd m24 (OMFGLOL) mags. And neither of those are bent.

Edited by Angle

Share this post


Link to post
Share on other sites

Dude - it doesn't use the M24 mags. When it comes to configs, it helps to have a "base class" from which it inherits. If you already know that, my apologies. But, if you already know that, you should also know that the M24 mag is commented out. ;)

Further, I've gotten the config sorted, and have PM'd it to SWAT. :)

#define _ARMA_

//Class config.bin{
class CfgPatches
{
class TR_HKWeapons
{
 units[] = {};
 weapons[] = {"HKG3T"};
 requiredVersion = 1;
 requiredAddons[] = {"CAWeapons","CACharacters2"};
};
};
class CfgMagazines
{
class Default;
class CA_Magazine;
class 5Rnd_762x51_M24;
class 20Rnd_762x51_G3: 5Rnd_762x51_M24
{
 scope = 2;
 displayName = "20Rnd. G3";
 picture = "\G3Test\pic\hkg3-t-s.paa";
 count = 20;
 ammo = "B_762x51_noTracer";
 descriptionShort = "Caliber: 7.62x51mm NATO <br/>Rounds: 20 <br/>Used in: HK G-3, CETME";
};
};

class Mode_SemiAuto{};
class Mode_Burst: Mode_SemiAuto{};
class Mode_FullAuto: Mode_SemiAuto{};

class CfgWeapons {
access = 1;
//	class Default;
class Rifle;
class M24;
class HKG3T: M24
{ //Creates a new group under which it will be visible
	scope = 2;
	model = "\G3test\HKG3-T.p3d";		// change directory as appropriate
	picture = "\G3Test\pic\hkg3-t.paa";
	UiPicture = "\G3Test\pic\hkg3-t.paa";
	sound[] = {"\G3Test\fire.ogg",10,1};
	modelOptics = "\ca\Weapons\2Dscope_MilDot_14";
	opticsFlare = 1;
	opticsDisablePeripherialVision = 1;
	opticsZoomInit = 0.0553;
	opticsZoomMin = 0.0178;
	distanceZoomMin = 500;
	opticsZoomMax = 0.0553;
	distanceZoomMax = 200;
	// dexterity from G36
	dexterity = 1.66;
	displayName = "TR HKG3";
	// need to change mags to custom
	magazines[] =
	{
		//"5Rnd_762x51_M24"
		"20Rnd_762x51_G3"
	};
// muzzle data - no burst, extended the ranges a bit from G36, but not as much as M24
// borrowed from FFAA Spanish mod CETME, but used M-24 sound because it is louder than hell
	modes[] = {"Single","FullAuto"};
	class Single: Mode_SemiAuto
	{
		begin1[] = {"ca\sounds\weapons\rifles\sniper_single_05",1.77828,1,1000};
		begin2[] = {"ca\sounds\weapons\rifles\sniper_single_05",1.77828,1,1000};
		soundBegin[] = {"begin1",0.5,"begin2",0.5};
		reloadTime = 0.075;
		recoil = "recoil_single_primary_3outof10";
		recoilProne = "recoil_single_primary_prone_3outof10";
		dispersion = 0.001;
		minRange = 2;
		minRangeProbab = 0.3;
		midRange = 250;
		midRangeProbab = 0.7;
		maxRange = 600;
		maxRangeProbab = 0.05;
	};
	class FullAuto: Mode_FullAuto
	{
		begin1[] = {"ca\sounds\weapons\rifles\sniper_single_05",1.77828,1,1000};
		begin2[] = {"ca\sounds\weapons\rifles\sniper_single_05",1.77828,1,1000};
		soundBegin[] = {"begin1",0.5,"begin2",0.5};
		reloadTime = 0.09;
		recoil = "recoil_auto_primary_3outof10";
		recoilProne = "recoil_auto_primary_prone_3outof10";
		dispersion = 0.00175;
		minRange = 0;
		minRangeProbab = 0.1;
		midRange = 30;
		midRangeProbab = 0.7;
		maxRange = 150;
		maxRangeProbab = 0.05;
	};

	class Library
	{
		libTextDesc = "The G3 is 7.62 x 51 mm assault rifle, designed by the Spanish Centro de Estudios Técnicos de Materiales Especiales (CETME) and manufacturer Heckler & Koch GmbH, it was eventually licensed to other manufacturers all over the world.  This weapon is still used in many armed forces around the world, including Turkey, Greece, Sweden, Pakistan, and many others.  The rifle is a close relative of the Spanish CETME rifle, and many of the parts are interchangable. <br/> This rifle is very versatile - with the reliability of a warrior, and the accuracy of a sniper.";
	};
requiredVersion = 0.1;
	requiredAddons[] =
	{
		"CAData",
		"CA_Anims_Char"
	};
};
};


 // @@ new - add to weapon box
class cfgVehicles
{
class USBasicAmmunitionBox;
	class USBasicWeaponsBox: USBasicAmmunitionBox
{
	class TransportMagazines
	{
		class 20Rnd_762x51_G3
		{
			magazine = "20Rnd_762x51_G3";
			count = 400;
		};
	};
	class TransportWeapons
	{
		class HKG3T
		{
			weapon = "HKG3T";
			count = 4;
		};
	};
};
};
//};

Share this post


Link to post
Share on other sites

@ SWAT.TR - sorry but...

you show G41 as reference for G3, add stock from M4, mix it somehow with Cetme...

do you have any basic knowledge about rifles ???

but for me seems not :/ and maybe better do addons of uniforms, whatever, cause you wanted to do G3, show G41, mess with Cetme or T50....

in my opinion people should have knowledge about things they want to model

before i do addon, i spent a lot of time on photos, references, blueprints etc. (i miss details too)

and i advise the same, first learn to divide G3 from G33 from G41 from Cetme, than do addon of rifle

everyone makes mistakes, but seems you even not recognize it, if you show picture of G41 as reference for G3 and answer to me that German G3 is the same as Turkish... well, have you ever seen German HK G3 with M4 buttstock ?

can you recognize models of HK rifles ? or Galil from Insas ?

edit: can you tell what rifle in your photos kneeling guy on right side of photo keeps in hands ?

Edited by vilas

Share this post


Link to post
Share on other sites

This mod isn't our offical mod and we didn't accept any credits about "Turkish Union Mod". We didn't give any permission to anyone or any mod team to use our assets. We're currently working on our main project with different game engines (Unreal, Cryengine2, Frostbite and etc.).

More images from these projects: http://www.moddb.com/members/garyosavan/images

G3_Varyasyonlar.png

Offical Turkish Union Mod G3A3 Rifle Series

Detail Renders

G3A3_Assault.jpg

G3A3_Seyyar.jpg

G3A3_Sniper.jpg

Note: Grenade Launcher just for demostration, real version doesn't have this attachment.

www.turkishunion.com

@ Vilas: I love your mods. :)

Edited by TU_GARYOSAVAN

Share this post


Link to post
Share on other sites

The G3 for Germany was developed in the 1950's and introduced in 1959. H&K made in the 1960's MP5 variant for Police and an export Version of the G3 with curved Magazine. This gun was named HK 33. The German would replaced (without sucess) they old G3A3 in 1979 with the HK 41 (it could also load with M16 Mags) and the G11 in 1990. After the Cold War was ended the G11 was not useful for the Bundeswehr and the G36 was developed from 1993 on to replace the G3 in 1997 til today.

Source:

Schützenwaffen Heute, Band 1 (1945 - 1985), Brandenburger Verlag 1986/96, Berlin, ISBN 3-89488-057-0

Edited by Marseille77

Share this post


Link to post
Share on other sites
The G3 for Germany was developed in the 1950's and introduced in 1959. H&K made in the 1960's MP5 variant for Police and an export Version of the G3 with curved Magazine. This gun was named HK 33. The German would replaced (without sucess) they old G3A3 in 1979 with the HK 41 (it could also load with M16 Mags) and the G11 in 1990. After the Cold War was ended the G11 was not useful for the Bundeswehr and the G36 was developed from 1993 on to replace the G3 in 1997 til today.

Source:

Schützenwaffen Heute, Band 1 (1945 - 1985), Brandenburger Verlag 1986/96, Berlin, ISBN 3-89488-057-0

Note: the G3 is not fully replaced it is still in service and in stock. A slightly refitted version with aimpoint or scope is in use as "battle rifle" and marksman rifle in A-stan right now like the M-14 in the US-Forces.

http://de.wikipedia.org/w/index.php?title=Datei:Bundeswehr_sniper_in_Chahar_Darreh.jpg&filetimestamp=20101108210611

Edited by Ulanthorn

Share this post


Link to post
Share on other sites

Greetings from Turkish Union Mod!

I know this is an old thread but since our team member, TU_Garyosavan, newly informed me about his reply, I would like to make this credit issue clear for everyone.

It has been around 2 years since we released our last mod for ArmA I and we had paused modmaking untill a couple of months. During that period we did gave permissions to independent Turkish authors for modifying our addons However, these permissions are not valid today. We are getting back to the scene with real hardcore stuff soon and therefore all previous permissions from TUMOD are invalid now.

Of course, we would like to thank the author for their "attempt to create" their own Turkish addon by modifying our previous ones. Thanks for credits and we see your positive intentions and perseverence on addon making, however addon making requires extensive research and hard work for genuine quality output. If you don't give up, you will be good.

@community, we will inform you on our ArmA II progress very soon.

Keep in mind that Turkish Union Mod (TUMOD) is independent from other Turkish authors using this Forums and our only website is www.turkishunion.com

Best,

TU_Gokhan

www.turkishunion.com

Share this post


Link to post
Share on other sites

Looks very nice..! Will there also be a bipod version..?

Share this post


Link to post
Share on other sites
Looks very nice..! Will there also be a bipod version..?

Thank you.. :) and No..

Share this post


Link to post
Share on other sites
Excellent work.

Are you also working on some vehicles: Ejder, Cobra, Pars ?

thanks.we are give new message is your waiting ;)

Edited by mehmet06

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
Sign in to follow this  

×