-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Initial fix push - Corrected various of config things * More fixes - Mostly just some names that were forgotten to be changed initially * Suggested vest changes - Apply suggested changes from jack
- Loading branch information
Kresky
authored
Sep 19, 2019
1 parent
f2f6590
commit ea8745d
Showing
88 changed files
with
1,336 additions
and
1,327 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,38 +1,28 @@ | ||
class CfgFactionClasses { | ||
class TACU_Revolutionaries_O { | ||
displayName = "Revolutionaries"; | ||
side = 0; | ||
priority = 2; | ||
}; | ||
class TACU_Revolutionaries_I { | ||
displayName = "Civil Defense"; | ||
side = 2; | ||
priority = 2; | ||
}; | ||
|
||
class TACU_Revolutionaries_O { | ||
displayName = "Revolutionaries"; | ||
side = 0; | ||
priority = 2; | ||
}; | ||
}; | ||
|
||
class CfgEditorSubcategories { | ||
class TACU_Revolutionaries_EdSubCat_O_Tanoan { | ||
displayName = "Men (Tanoan)"; | ||
}; | ||
class TACU_Revolutionaries_EdSubCat_O_Russian { | ||
displayName = "Men (Russian)"; | ||
}; | ||
class TACU_Revolutionaries_EdSubCat_O_Cars_Tanoa { | ||
displayName = "Cars (Tanoan)"; | ||
class TACU_Revolutionaries_EdSubCat_Tanoan { | ||
displayName = "Men (Tanoans)"; | ||
}; | ||
class TACU_Revolutionaries_EdSubCat_O_Cars_Russian { | ||
displayName = "Cars (Russian)"; | ||
class TACU_Revolutionaries_EdSubCat_Russian { | ||
displayName = "Men (Russians)"; | ||
}; | ||
class TACU_Revolutionaries_EdSubCat_I_Tanoan { | ||
displayName = "Men (Tanoan)"; | ||
class TACU_Revolutionaries_EdSubCat_Cars_Tanoa { | ||
displayName = "Cars (Tanoans)"; | ||
}; | ||
class TACU_Revolutionaries_EdSubCat_I_Russian { | ||
displayName = "Men (Russian)"; | ||
class TACU_Revolutionaries_EdSubCat_Cars_Russian { | ||
displayName = "Cars (Russians)"; | ||
}; | ||
class TACU_Revolutionaries_EdSubCat_I_Cars_Tanoa { | ||
displayName = "Cars (Tanoan)"; | ||
}; | ||
class TACU_Revolutionaries_EdSubCat_I_Cars_Russian { | ||
displayName = "Cars (Russian)"; | ||
}; | ||
}; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,17 @@ | ||
class CfgGroups { | ||
class EAST { | ||
#include "CfgGroups_East.hpp" | ||
}; | ||
class CfgGroups { | ||
class INDEP { | ||
#include "CfgGroups_Indep.hpp" | ||
class TACU_Revolutionaries_I { | ||
name = "Civil Defense"; | ||
#include "CfgGroups_Indep_Russians.hpp" | ||
#include "CfgGroups_Indep_Tanoans.hpp" | ||
}; | ||
}; | ||
|
||
class EAST { | ||
class TACU_Revolutionaries_O { | ||
name = "Revolutionaries"; | ||
#include "CfgGroups_Opfor_Russians.hpp" | ||
#include "CfgGroups_Opfor_Tanoans.hpp" | ||
}; | ||
}; | ||
}; | ||
}; |
Oops, something went wrong.