// =============================================================================== // DESCRIPTION: // CALLED BY: // PARAMS: // TYPE: // =============================================================================== // Init ========================================================================== @INIT if [__debug == 1] goto DEBUG goto SCRIPT // =============================================================================== // Debug ========================================================================= @DEBUG Echo #__debug_prefix#"Calling script scriptinput" Echo #__debug_prefix#"SCRIPTINPUT clientid: "#GetScriptParam(clientid)#" name: "#GetScriptParam(name)#" accountid: "#GetScriptParam(accountid)#" index: "#GetScriptParam(index)#" :: "#GetScriptParam(::)#" goto SCRIPT // =============================================================================== // Script ======================================================================== @SCRIPT if [__debug == 1] Echo #__debug_prefix#"Calling method scriptinput::"#GetScriptParam(::)# goto #GetScriptParam(::)# goto EOF @EOF // ===============================================================================