Jump to content
spookygnu

Config Error when packing terrain with custom buildings.

Recommended Posts

Hello folks, 

 

can anyone see the error of my ways here. 

 

this is the map config.

http://pastebin.com/zR13sAC0

 

this is the packing log from pboproject. 

 

http://pastebin.com/CKxmc2sf

 

I have already read the wiki page on Land_xx and I've tried my best to Digest it and learn this shit, I've also had help with getting this far with the code. can someone else point out what I am supposed to do here. 

One building is not in here FYI. Its the first building in the map config. It doesn't show up on the packing log, so something is correct there, I just don't know how to continue with the rest of the other individual buildings.

 

thanks.

Share this post


Link to post
Share on other sites

check the model and your config for the OPX Building.

you see on the Geolod they are defined with class:House!

you have to define them also in your config with class house:

 

class CfgVehicles
{
    class House;
    class House_F: House
    {
        class DestructionEffects;
    };
    class Ruins_F;

 

 class Land_mural : House
    {
          scope = 2;
          vehicleClass = "OPX_miscclass";
          model = "\opxmisc\mural";
          destrType="DestructTree";
          displayName = "Mural";
          armor = 70;
    };

};

 

reexport your wrp and try to pack.

Share this post


Link to post
Share on other sites

I thought I had defined them with class house? If I haven't can you point out where I am suppose too?

Also, how do I check the model is defined aswell? I opened it in OB but I don't know my way around it very well either. 

Share this post


Link to post
Share on other sites

point pbo project to the correct path for the config for those building 

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

×