Jump to content
Sign in to follow this  
OFP_gamer

Config Problem

Recommended Posts

Hey guys,

i have a Problem with my config for a vehicle in the editor

here 4 screenshots :

1

2

3

4

there is no vehicle class and no faction entry in the editor but the vehilce is there !

can someone pls help me ??

here is the config :

CONFIG

Edited by OFP_gamer

Share this post


Link to post
Share on other sites

Please use www.pastebin.com for textfiles (like config or scripts). Once you know it you will start to love it since people can make changes directly to it and you can then compare your original with the edited version.

Share this post


Link to post
Share on other sites
Myke;1991555']Please use www.pastebin.com for textfiles (like config or scripts). Once you know it you will start to love it since people can make changes directly to it and you can then compare your original with the edited version.

Ok i have edit my Post

Share this post


Link to post
Share on other sites

If you're going to use a non-default Faction you need to make a new class for that faction. Include this between CfgPatches and CfgVehicles:

class CfgFactionClasses {
access = ReadAndCreate;

class CombinedArms {
	displayName = "Combined Arms";
	priority = 5;  //or whatever number, depending where you want it to be sorted
	side = 1;
};
};

Never made a vehicleClass before but I'm guessing it's the same reason its appearing blank. Just use "Car" or something if its a bus.

Share this post


Link to post
Share on other sites
If you're going to use a non-default Faction you need to make a new class for that faction. Include this between CfgPatches and CfgVehicles:

class CfgFactionClasses {
access = ReadAndCreate;

class CombinedArms {
	displayName = "Combined Arms";
	priority = 5;  //or whatever number, depending where you want it to be sorted
	side = 1;
};
};

Never made a vehicleClass before but I'm guessing it's the same reason its appearing blank. Just use "Car" or something if its a bus.

Ok thank you for help it works

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  

×