// =============================================================================== // DESCRIPTION: Contains the mod settings - Change at will // CALLED BY: maploaded // PARAMS: none // TYPE: Server-Side // =============================================================================== // Init ========================================================================== @INIT // Debug settings CreateVar int scr_debug "1" CreateVar string scr_debug_prefix "^c::SCRDEBUG:: ^y" if [scr_debug == 1] goto DEBUG goto SCRIPT // =============================================================================== // Debug ========================================================================= @DEBUG Echo #scr_debug_prefix#"Calling script __SETTINGS" goto SCRIPT // =============================================================================== // Script ======================================================================== @SCRIPT goto EOF @EOF // ===============================================================================