29 lines
491 B
Modula-2
29 lines
491 B
Modula-2
#permission=255
|
|
|
|
// PSEUWOW DEF_SCRIPT STARTUP FILE
|
|
|
|
LOG * DefScript StartUp [${@version_short}]...
|
|
|
|
// loads & applies the configuration
|
|
CONFIG
|
|
|
|
// preload the scripts, however its not important to load them now.
|
|
//they will get loaded automatically if needed
|
|
LOADALL
|
|
|
|
// load the uptime counter
|
|
LOADDEF uptime
|
|
|
|
// RELOADDEF myscript
|
|
// ...
|
|
|
|
// set permissions for internal functions
|
|
INTERNAL_PERM
|
|
|
|
|
|
// do more stuff here in future...
|
|
|
|
LOG * StartUp complete!
|
|
|
|
|