Hey, I'm following this tutorial for OFP: http://ofp.gamepark.cz/_hosted/brsseb/tutorials.htm (the crate one).
And the config reads as follows:
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="\crate\crate";
armor=20000;
scope=2;
displayName="My lovely crate";
}
}
However, in the editor, I can't find it in: 'Empty/objects'.
I'm not sure where else to look. I placed the .PBO in: C:\Program Files (x86)\Steam\SteamApps\common\arma 2 operation arrowhead\Expansion\Addons
I also tried to place it in an @addon (random addon) AddOns folder but that didn't help either.
Any help appreciated, thanks!