Change scope and type of configs from name to numbers

This got discussed earlier. Since epoch got merged with DayZ Mod we have a different name for the scope and type of configs.  A proper config should use numbers for those entries. This is the same how arma configs are written.  The basicDefines.hpp has all the needed information stored.

Also, this removes the weight entries from the magazines since we have them in a separate folder, so admins can edit them.
This commit is contained in:
A Man
2020-05-29 02:04:06 +02:00
parent 4040b784b5
commit d9b9874532
291 changed files with 3439 additions and 3069 deletions

View File

@@ -24,7 +24,7 @@ class CAAnimalBase: Animal
};
class Pastor: CAAnimalBase {
scope = public;
scope = 2;
side = 1;
model = "\ca\animals2\Dogs\Pastor\Pastor";
displayName = "Alsatian";
@@ -45,7 +45,7 @@ class Pastor: CAAnimalBase {
};
class Fin: CAAnimalBase {
scope = public;
scope = 2;
model = "\ca\animals2\Dogs\Fin\Fin";
displayName = "Fin";
moves = "CfgMovesDogDZ";
@@ -56,7 +56,7 @@ class Fin: CAAnimalBase {
class Cow: CAAnimalBase
{
scope = private;
scope = 0;
model = "\ca\animals2\cow\cow";
displayName = "$STR_DN_COW";
moves = "CfgMovesCow";
@@ -89,7 +89,7 @@ class Cow: CAAnimalBase
};
class Cow01: Cow
{
scope = public;
scope = 2;
accuracy = 1000;
model = "\ca\animals2\cow\cow";
displayName = "$STR_DN_COW01";
@@ -115,7 +115,7 @@ class Cow01_EP1 : Cow_Base_EP1 {};
class Goat: CAAnimalBase
{
scope = public;
scope = 2;
model = "\ca\animals2\Goat\Goat";
displayName = "$STR_DN_GOAT";
moves = "CfgMovesGoat";
@@ -143,7 +143,7 @@ class Goat02_EP1 : Goat01_EP1 {};
class Rabbit: CAAnimalBase
{
scope = public;
scope = 2;
side = 3;
model = "\ca\animals2\rabbit\rabbit";
displayName = "$STR_DN_RABBIT";
@@ -177,7 +177,7 @@ class Rabbit: CAAnimalBase
class Sheep: CAAnimalBase
{
scope = public;
scope = 2;
model = "\ca\animals2\Sheep\Sheep";
displayName = "$STR_DN_SHEEP";
moves = "CfgMovesSheep";
@@ -206,7 +206,7 @@ class Sheep02_EP1 : Sheep01_EP1 {};
class WildBoar: CAAnimalBase
{
scope = public;
scope = 2;
model = "\ca\animals2\WildBoar\WildBoar";
displayName = "$STR_DN_WILDBOAR";
moves = "CfgMovesWildBoar";