private string AssembleScript()
        {
            string current_path;

            if (this.script_name.Equals("0"))
            {
                return(null);
            }
            else
            {
                current_path = ClientUtils.AssembleCurrentPath() + "\\" + "Scripts" + "\\" + this.script_name;

                return(current_path);
            }
        }