|
DayZ 1.24
|
Go to the source code of this file.
Classes | |
| class | Class |
| Super root of all classes in Enforce script. More... | |
| class | Managed |
| TODO doc. More... | |
| class | NonSerialized |
| TODO doc. More... | |
| class | ScriptModule |
| Module containing compiled scripts. More... | |
| class | EnScript |
| class | array< Class T > |
| class | set< Class T > |
| class | map< Class TKey, Class TValue > |
| Associative array template usage: More... | |
Functions | |
| proto void | Sort (void param_array[], int num) |
| Sorts static array of integers(ascendically) / floats(ascendically) / strings(alphabetically) | |
| proto void | reversearray (void param_array) |
| proto void | copyarray (void destArray, void srcArray) |
| proto int | ParseStringEx (inout string input, string token) |
| Parses one token from input string. Result is put into token string, and type of token is returned. Input string is left-truncated by the resulting token length. | |
| proto int | ParseString (string input, out string tokens[]) |
| Parses string into array of tokens returns number of tokens. | |
| proto native int | KillThread (Class owner, string name) |
| Kills thread. | |
| proto volatile void | Idle () |
| proto owned string | ThreadFunction (Class owner, string name, int backtrace, out int linenumber) |
| Debug function. Returns current function on stack of the thread. | |
| string | String (string s) |
| Helper for passing string expression to functions with void parameter. Example: Print(String("Hello " + var));. | |
| void | PrintString (string s) |
| Helper for printing out string expression. Example: PrintString("Hello " + var);. | |