* fixed exception at DefScript:substr when called with empty string * added 3 new functions: uppercase, lowercase, random[,<min>] <max>. * added some better debug output when an incorrect script is loaded
24 lines
367 B
Modula-2
24 lines
367 B
Modula-2
#permission=255
|
|
|
|
// PSEUWOW DEF_SCRIPT STARTUP FILE
|
|
|
|
LOG * DefScript StartUp [${@version_short}]...
|
|
|
|
// loads & applies the configuration
|
|
CONFIG
|
|
|
|
// set permissions for internal functions
|
|
INTERNAL_PERM
|
|
|
|
// Load some SCP files
|
|
LOADALLSCP
|
|
|
|
// do more stuff here in future...
|
|
|
|
// load the uptime counter
|
|
LOADDEF uptime
|
|
|
|
LOG * StartUp complete!
|
|
|
|
|