Last active
October 9, 2020 08:04
-
-
Save creativ3lab/5d73b976410edc830c86e7296be425e1 to your computer and use it in GitHub Desktop.
Enscript #DayZ #Arma3
This file contains hidden or 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
class CfgMods | |
{ | |
class , | |
{ | |
dir = ""; | |
picture = ""; | |
action = ""; | |
hideName = 1; | |
hidePicture = 1; | |
name = ""; | |
credits = "Andrew"; | |
author = "creativ3lab"; | |
authorID = "0"; | |
version = 1.0; | |
extra = 0; | |
type = "mod"; | |
dependencies[] = {"Game","World","Mission"}; | |
class defs | |
{ | |
class gameScriptModule | |
{ | |
value = ""; | |
files[] = {"/3_Game"}; | |
}; | |
class worldScriptModule | |
{ | |
value = ""; | |
files[] = {"/4_World"}; | |
}; | |
class missionScriptModule | |
{ | |
value = ""; | |
files[] = {"/5_Mission"}; | |
}; | |
}; | |
}; | |
}; | |
class CfgPatches | |
{ | |
class , | |
{ | |
units[] = {}; | |
weapons[] = {}; | |
requiredVersion = 0.1; | |
requiredAddons[] = {}; | |
}; | |
}; |
This file contains hidden or 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
/* | |
#include "(ReplacewithFilename)" | |
*/ | |
#include "(ReplacewithFilename)\4_World\(ReplacewithFilename)\State\(ReplacewithFilename) |
This file contains hidden or 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
/* | |
#pragma "(ReplacewithFilename)" | |
*/ | |
#include "(ReplacewithFilename)\4_World\(ReplacewithFilename)\(ReplacewithFilename)" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment