Dayz Explorer
1.24.157551 (v105080)
Dayz Code Explorer by Zeroy
|
Modules | |
Keyboard input API | |
Mouse API | |
returns index of defined key in InputDevice by its name | |
API | |
FileIO API | |
Functions | |
proto void | GetHourMinuteSecond (out int hour, out int minute, out int second) |
Returns world time. More... | |
proto void | GetYearMonthDay (out int year, out int month, out int day) |
Returns world date. More... | |
proto void | GetHourMinuteSecondUTC (out int hour, out int minute, out int second) |
Returns UTC world time. More... | |
proto void | GetYearMonthDayUTC (out int year, out int month, out int day) |
Returns UTC world date. More... | |
proto string | GetProfileName () |
proto string | GetMachineName () |
proto native int | TickCount (int prev) |
performance counter. Returns number of CPU ticks between 'prev' and 'now' More... | |
proto native void | MemoryValidation (bool enable) |
Switches memory validation (huge slowdown! Use with care only for certain section of code!) More... | |
proto bool | GetCLIParam (string param, out string val) |
Returns command line argument. More... | |
proto native bool | IsCLIParam (string param) |
Returns if command line argument is present. More... | |
Variables | |
DIRECTORIES | |
Looks for files in fs directories only. More... | |
ARCHIVES | |
Looks for files in archive only. (.pak) More... | |
ALL | |
<Looks in archives and fs directories. More... | |
Returns command line argument.
name | of a command line argument |
val | string value of the param or empty string if the param hasn't been found |
Returns world time.
[out] | hour | int Hour |
[out] | minute | int Minute |
[out] | second | int Second |
void
Returns UTC world time.
[out] | hour | int Hour |
[out] | minute | int Minute |
[out] | second | int Second |
void
proto string GetMachineName | ( | ) |
proto string GetProfileName | ( | ) |
Returns world date.
[out] | year | int Year |
[out] | month | int Month |
[out] | day | int Day |
void
Returns UTC world date.
[out] | year | int Year |
[out] | month | int Month |
[out] | day | int Day |
void
Returns if command line argument is present.
name | of a command line argument |
proto native void MemoryValidation | ( | bool | enable | ) |
Switches memory validation (huge slowdown! Use with care only for certain section of code!)
enable | bool Enable |
void
performance counter. Returns number of CPU ticks between 'prev' and 'now'
@ ALL |
<Looks in archives and fs directories.
Looks in archives and fs directories.
Definition at line 507 of file ensystem.c.
ARCHIVES |
Looks for files in archive only. (.pak)
Definition at line 505 of file ensystem.c.
DIRECTORIES |
Looks for files in fs directories only.
Definition at line 504 of file ensystem.c.