Home   Help Search Login Register  

Author Topic: Static Object Config  (Read 880 times)

0 Members and 1 Guest are viewing this topic.

cpt.Hawkeyez

  • Guest
Static Object Config
« on: 02 Feb 2004, 01:42:24 »
How do I write a config for a static object that all it does is stand there and do nothing.
/CymPatheeY

Rastavovich

  • Guest
Re:Static Object Config
« Reply #1 on: 03 Feb 2004, 00:06:17 »
Code: [Select]
class CfgPatches
{
   class Your_addon
   {
      units[] =   {Your_addon};
      weapons[] = {};
      requiredVersion = 1.92;
      requiredaddons[]={bis_resistance};
   };
};
class CfgModels
{
   class Default {};
   class Yourmodelname : default {};
};
class CfgVehicles
{
   class All {};
    class Thing: All {};
    class Yourclass : Thing
    {
          displayname = "My addon";
          model = "\my_addon\my_addon.p3d";
    };
};

could be a start.