Jump to content
Sign in to follow this  
Dalle96

Storage fee?

Recommended Posts

Hello everyone, i am trying to remove the storagefee or set it to a low number value but i can't seem to find out where i would be able to change the storagefee.

 

Thanks.

Share this post


Link to post
Share on other sites

AltisLife is a specific mission using the Arma 3 game and not vanilla content.  Therefore "storagefee" would be something you'd specifically have to ask the author of that mission about as it's not something that's a standard part of the game.

 

That said, a quick google search shows that you'll probably want to look in Config_Vehicles.hpp:

class CfgVehicles {
	class Default {
		vItemSpace = -1;
		storageFee[] = { 1000, 1000, 1000, 1000 };
		garageSell[] = { 0, 0, 0, 0 };
		insurance = 2500;
		chopShop = 1200;
		textures[] = {};
	};

	class I_Truck_02_medical_F : Default {
		vItemSpace = 150;
		storageFee[] = { 0, 0, 1500, 0 };
		garageSell[] = { 0, 0, 5000, 0 };
		chopShop = 3000;
	};
  • Like 3

Share this post


Link to post
Share on other sites

 

AltisLife is a specific mission using the Arma 3 game and not vanilla content.  Therefore "storagefee" would be something you'd specifically have to ask the author of that mission about as it's not something that's a standard part of the game.

 

That said, a quick google search shows that you'll probably want to look in Config_Vehicles.hpp:

class CfgVehicles {
	class Default {
		vItemSpace = -1;
		storageFee[] = { 1000, 1000, 1000, 1000 };
		garageSell[] = { 0, 0, 0, 0 };
		insurance = 2500;
		chopShop = 1200;
		textures[] = {};
	};

	class I_Truck_02_medical_F : Default {
		vItemSpace = 150;
		storageFee[] = { 0, 0, 1500, 0 };
		garageSell[] = { 0, 0, 5000, 0 };
		chopShop = 3000;
	};

Many thanks for this! I've tried searching google more than 5 times but proberly didn't write something familiar to your search. but thanks! I will test this out now!

Share this post


Link to post
Share on other sites

 

AltisLife is a specific mission using the Arma 3 game and not vanilla content.  Therefore "storagefee" would be something you'd specifically have to ask the author of that mission about as it's not something that's a standard part of the game.

 

That said, a quick google search shows that you'll probably want to look in Config_Vehicles.hpp:

class CfgVehicles {
	class Default {
		vItemSpace = -1;
		storageFee[] = { 1000, 1000, 1000, 1000 };
		garageSell[] = { 0, 0, 0, 0 };
		insurance = 2500;
		chopShop = 1200;
		textures[] = {};
	};

	class I_Truck_02_medical_F : Default {
		vItemSpace = 150;
		storageFee[] = { 0, 0, 1500, 0 };
		garageSell[] = { 0, 0, 5000, 0 };
		chopShop = 3000;
	};

 Nope doesn't work

Share this post


Link to post
Share on other sites

You might have better luck posting your question here:

 

http://www.altisliferpg.com/

 

 

As Kylania mentioned AltisLife is a specific type of mission and not part of vanilla A3 content.

Share this post


Link to post
Share on other sites

You might have better luck posting your question here:

 

Apparently he had. :)

 

Dalle, those need to be numbers, so if you have this in your hpp: 

storageFee[] = {"1000","","",""}; 

Change it to:

storageFee[] = {1000,0,0,0}; 

Share this post


Link to post
Share on other sites

 

Apparently he had. :)

 

Dalle, those need to be numbers, so if you have this in your hpp: 

storageFee[] = {"1000","","",""}; 

Change it to:

storageFee[] = {1000,0,0,0}; 

I've it like you told me to :) i am running AL v4.4

Share this post


Link to post
Share on other sites

From that forum link:

 

1st is for Civ, 2nd for bluefor, 3rd for independant, 4th for OPFOR

 

 

Are you a civ in-game? Maybe add values for all four?

storageFee[] = {1000,1000,1000,1000};

Share this post


Link to post
Share on other sites

 

From that forum link:

 

 

Are you a civ in-game? Maybe add values for all four?

storageFee[] = {1000,1000,1000,1000};

I've tried with all for four. Doesn't work either

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  

×