// =============================================================================== // DESCRIPTION: Called whenever a player spawns // CALLED BY: spawn // PARAMS: name // clientid // index // TYPE: // =============================================================================== // Init ========================================================================== @INIT if [__debug == 1] goto DEBUG goto SCRIPT // =============================================================================== // Debug ========================================================================= @DEBUG Echo #__debug_prefix#"Calling script spawn" goto SCRIPT // =============================================================================== // Script ======================================================================== @SCRIPT Echo #__debug_prefix#"spawn: name: "#GetScriptParam(name)#" clientid: "#GetScriptParam(clientid)#" index: "#GetScriptParam(index)# goto EOF @EOF // ===============================================================================