fusion13 11 Posted April 2, 2014 Oks so I have a model I made but I need a config sofar I have class CfgPatches { class Fus_Addons { units[] = {Fus_Addons}; weapons[] = {}; requiredVersion = 0.1; requiredAddons[] = {Fus_Addons}; }; }; class CfgVehicles { class HDD: Item { model = "\HDD\model\hdd.p3d"; armor=100; scope=2; displayName="HDD"; faction = "Empty"; vehicleClass = "Fusion"; }; }; But it says there is an error in the config.... I am VERY new to this type of things, I searched endlessly for a Item config guidlines and I couldn't find one, so basically what I want is this to work then have an acting (was going for making it work first xD) Using: BinPBO Error is: Error in config (path)\config.cpp It still makes the bin but it wont show up in game. Share this post Link to post Share on other sites
haleks 8212 Posted April 2, 2014 You know that a config.cpp file works just as fine as a .bin? You might also remove Fus_Addons from the requiredAddons line - it is redundant. Share this post Link to post Share on other sites
fusion13 11 Posted April 2, 2014 Yea I messed with it, got it to show in game and stop the errors, and I do put it in the bin, you have to edit it in a CPP tho,, But I got it show in game the new Config is class CfgPatches { class Fus_Addons { units[] = {Fus_Addons}; weapons[] = {}; requiredVersion = 0.1; requiredAddons[] = {}; }; }; class CfgVehicles { class sweg; class HDD: sweg { model = "\HDD\model\hdd.p3d"; armor=100; scope=1; displayName="HDD"; faction = "Empty"; vehicleClass = "Fusion"; }; }; And now its messing up again, Actually, it says no config.bin\cfgvehciles\sweg.scope not found or some shti Share this post Link to post Share on other sites
six_ten 208 Posted April 2, 2014 Oks so I have a model I made but I need a config sofar I have I'd suggest you get mikero's PboProject and use that. I didn't know much at all about configs until I started using it and it shows just where errors are so you can fix them (and learn along the way.) Share this post Link to post Share on other sites
fusion13 11 Posted April 2, 2014 Can u provide a link? Share this post Link to post Share on other sites
six_ten 208 Posted April 2, 2014 Here you go, it is on this page. (the most recent versions seem to be lower on the list) http://dev.withsix.com/projects/mikero-pbodll/files This tool has been so useful to me I want to buy him a beer. Share this post Link to post Share on other sites