Dayz Explorer
1.24.157551 (v105080)
Dayz Code Explorer by Zeroy
|
Go to the source code of this file.
Data Structures | |
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) More... | |
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. More... | |
proto int | ParseString (string input, out string tokens[]) |
Parses string into array of tokens returns number of tokens. More... | |
proto native int | KillThread (Class owner, string name) |
Kills thread. More... | |
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. More... | |
string | String (string s) |
Helper for passing string expression to functions with void parameter. Example: Print(String("Hello " + var));. More... | |
void | PrintString (string s) |
Helper for printing out string expression. Example: PrintString("Hello " + var);. More... | |