Dayz Explorer 1.28.160049
Loading...
Searching...
No Matches
pluginlocalenscripthistory.c
Go to the documentation of this file.
1class PluginLocalEnscriptHistory extends PluginLocalHistoryBase
2{
3 override string GetSubFolderName()
4 {
6 }
7
8 override string GetFileName()
9 {
10 if (!FileExist(GetSubFolderName()))//---ALL LINES CONTAINING THIS COMMENT CAN BE REMOVED IN 1.23
11 return "$profile:script_enscript.history";//---ALL LINES CONTAINING THIS COMMENT CAN BE REMOVED IN 1.23
12
14 }
15}
16
17class PluginLocalEnscriptHistoryServer extends PluginLocalHistoryBase
18{
19
20 override string GetSubFolderName()
21 {
22 return CFG_FILE_DEBUG_DIR;
23 }
24
25 override string GetFileName()
26 {
27 if (!FileExist(GetSubFolderName()))//---ALL LINES CONTAINING THIS COMMENT CAN BE REMOVED IN 1.23
28 return "$profile:script_enscriptServer.history";//---ALL LINES CONTAINING THIS COMMENT CAN BE REMOVED IN 1.23
29
31 }
32
33}
34
const string CFG_FILE_DEBUG_DIR
Definition constants.c:249
const string CFG_FILE_ENS_HISTORY_SERVER
Definition constants.c:246
const string CFG_FILE_ENS_HISTORY
Definition constants.c:245
proto bool FileExist(string name)
Check existence of file.
override string GetFileName()
class PluginLocalEnscriptHistory extends PluginLocalHistoryBase GetSubFolderName()