Jump to content
Sign in to follow this  
natanbrody

ArmA 2 Building Modelling Help

Recommended Posts

Hey guys

I am trying to create some buildings with Oxygen 2 but I have not found any good tutorials that explain how to create your first mod except Mondklabs tutorial which did not help me that much

any nice tutorials you find please post them here

Thanks in advance

Share this post


Link to post
Share on other sites

class CfgPatches

{

class Crate

{

units[] = {Crate};

weapons[] = {};

requiredVersion = 1.0;

};

};

class CfgVehicles

{

class All {};

class Static: All {};

class Building: Static {};

class NonStrategic: Building {};

class TargetTraining: NonStrategic {};

class TargetGrenade: TargetTraining {};

class Crate: TargetGrenade

{

model="\Lesson1\container";

armor=20000;

scope=2;

displayName="My lovely crate";

}

}

I need to know what all of these words mean :D And was a perfect website for me thanks man!!

Share this post


Link to post
Share on other sites

yo dont need to know what they all mean, just some things that are important.

model="\Lesson1\container"; - This is your p3d model file, a box, and should be in your p:\ "arma work" directory. inside a folder called "lesson1" and the p3d file from o2 is called "container". all the CLASS bits above jsut tell the game what the obj is and where to find it.

Display name is what shows under editor. with this particular example in arma2/oa you will fond it in - "EMPTY UNITS - TARGETS - MyLovelyCrate"

To start with, dont do texturing, just do the 0.000 LOD and GEOMETRY. then save the p3d... use BINPBO from arma tools to pack/binarize the folder from your p:\ drive "Lesson1" folder.

this will output a PBO file..

Go to my Documents\Arma2 and make a folder called "Lesson1" - In that folder make another folder called AddOns.

Copy\Paste your PBO into here. and run the game by adding the MOD extension to shortcut, or just activate it using arrowheads "expansions" menu (if using arrowhead).

Hope that helps, If not, PM me and we can chat more about it.

Cheers and Good Luck.

Share this post


Link to post
Share on other sites

Nice man thanks!! could you also please tell me how I could somehow make another like folder thing in the EMPTY section like Natan's Objects or something like that?

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  

×