Jump to content
Sign in to follow this  
sceneryexplosion

Retexture help boonie hat

Recommended Posts

Hello I am currently working on a mod for arma 3 and i want to retexture a boonie hat.

The thing is that I am not sure where to find the texture files or how the config.cpp should look for retexturing a boonie hat.

I have done retextures before, so i know how to extract the PBO's but i dont know wich one i need. Or what files i need from that pbo.

I am also unsure what the config file would look like for the boonie hat.

any help i appriciated!

Share this post


Link to post
Share on other sites

All I can tell you is that hats and other head gear is usually in the pbo's for characters

Share this post


Link to post
Share on other sites
All I can tell you is that hats and other head gear is usually in the pbo's for characters

Yea but do you know what the config file should look like?

Share this post


Link to post
Share on other sites

Is this what you might be looking for?

	class H_Booniehat_khk : H_HelmetB {
	displayName = "$STR_A3_H_Booniehat_ocamo0";
	picture = "\A3\characters_f\Data\UI\icon_H_booniehat_desert_ca.paa";
	model = "\A3\Characters_F\Common\booniehat";
	hiddenSelectionsTextures[] = {"\A3\Characters_F\Common\Data\booniehat_desert_co.paa"};

	class ItemInfo : ItemInfo {
		mass = 10;
		allowedSlots[] = {801, 901, 701, 605};
		uniformModel = "\A3\Characters_F\Common\booniehat";
		modelSides[] = {6};
		armor = 0;
		passThrough = true;
	};
};

class H_Booniehat_indp : H_Booniehat_khk {
	displayName = "$STR_A3_H_Booniehat_khk0";
	picture = "\A3\characters_f\Data\UI\icon_H_booniehat_indp_ca.paa";
	hiddenSelectionsTextures[] = {"\A3\Characters_F\Common\Data\booniehat_indp_co.paa"};
};

my guess is that the hiddeb sekection is what decides the texture, you'll have to make a .paa file. I don't know at all if this is what you're looking for or even if it will help you at all.

Share this post


Link to post
Share on other sites

This is exactly what i am looking for. Thank you!

Where did you find that if I may ask?

I tought i searched all the config files in the characters pbo

Share this post


Link to post
Share on other sites

In the main config, inside the character pbo, I opened it and went all the way down to the bottom.

Share this post


Link to post
Share on other sites
In the main config, inside the character pbo, I opened it and went all the way down to the bottom.

Okey this is quite embarising, I looked in every folder except the main one :/

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  

×