Arma Reforger Explorer 1.7.0.54
Arma Reforger Code Explorer by Zeroy - Thanks to MisterOutofTime
Loading...
Searching...
No Matches
EnScript.c
Go to the documentation of this file.
1
5
7{
8 ANY = 0,
16 /* stored in 4bits, max is 15 */
17}
18
31class Restrict: Managed
32{
34 private bool m_IsError;
35
36 void Restrict(EAccessLevel level, bool isError = true)
37 {
38 m_Level = level;
39 m_IsError = isError;
40 }
41}
42
44void PrintString(string s)
45{
46 Print(s);
47}
48
proto void Print(void var, LogLevel level=LogLevel.NORMAL)
Prints content of variable to console/log.
enum EAccessLevel m_Level
EAccessLevel
Definition EnScript.c:7
@ LEVEL_1
game lib module
Definition EnScript.c:10
@ LEVEL_6
Definition EnScript.c:15
@ LEVEL_2
game module
Definition EnScript.c:11
@ LEVEL_0
core module
Definition EnScript.c:9
@ LEVEL_4
Definition EnScript.c:13
@ LEVEL_5
Definition EnScript.c:14
@ ANY
Will list all servers regardless platform compatibility.
Definition EnScript.c:8
@ LEVEL_3
Definition EnScript.c:12