-
Notifications
You must be signed in to change notification settings - Fork 149
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #342 from Wired-Tiger/moduleDevelopment
Module development
- Loading branch information
Showing
12 changed files
with
1,447 additions
and
0 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
x\cba\addons\modules |
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
class CfgFactionClasses { | ||
class NO_CATEGORY; | ||
class CBA_Modules: NO_CATEGORY { | ||
displayName = CSTRING(Category_DisplayName); | ||
}; | ||
}; |
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 |
---|---|---|
@@ -0,0 +1,37 @@ | ||
|
||
class CfgFunctions | ||
{ | ||
class CBA | ||
{ | ||
class Modules | ||
{ | ||
// CBA_fnc_getPosFromString | ||
class getPosFromString | ||
{ | ||
description = "A function to get the position of an item passed as a string."; | ||
file = "\x\cba\addons\modules\fnc_getPosFromString.sqf"; | ||
}; | ||
|
||
// CBA_fnc_moduleAttack | ||
class moduleAttack | ||
{ | ||
description = "A function used to set a group to attack a position through a module."; | ||
file = "\x\cba\addons\modules\fnc_moduleAttack.sqf"; | ||
}; | ||
|
||
// CBA_fnc_moduleDefend | ||
class moduleDefend | ||
{ | ||
description = "A function used to set a group to defend a position through a module."; | ||
file = "\x\cba\addons\modules\fnc_moduleDefend.sqf"; | ||
}; | ||
|
||
// CBA_fnc_modulePatrol | ||
class modulePatrol | ||
{ | ||
description = "A function used to set a group to patrol a position through a module."; | ||
file = "\x\cba\addons\modules\fnc_modulePatrol.sqf"; | ||
}; | ||
}; | ||
}; | ||
}; |
Oops, something went wrong.