poly~ drone synth

Dario's icon

I am trying to make a polyphonic synth that drones on multiple notes that I play on [kslider]

I am simply copying the "ezsynth" poly~ subpatcher from the help file but have tried a bunch of variations. I can't for the life of me figure out the poly~ for this purpose.
I have searched the forum and have spent a few hours trying to figure it out from the documentation and I feel really stupid cuz I've been doing some really wonderful things with max lately but I can't figure out poly~ for this or another project. It's literally driving me insane. Please help

{
    "boxes" : [         {
            "box" :             {
                "maxclass" : "newobj",
                "text" : "poly~ ez-synth 6",
                "numinlets" : 1,
                "fontname" : "Arial",
                "id" : "obj-25",
                "numoutlets" : 1,
                "patching_rect" : [ 60.0, 407.0, 106.0, 23.0 ],
                "outlettype" : [ "signal" ],
                "fontsize" : 13.0,
                "style" : ""
            }

        }
,         {
            "box" :             {
                "maxclass" : "message",
                "text" : "clear",
                "numinlets" : 2,
                "id" : "obj-9",
                "numoutlets" : 1,
                "patching_rect" : [ 60.0, 142.0, 37.0, 22.0 ],
                "outlettype" : [ "" ],
                "style" : ""
            }

        }
,         {
            "box" :             {
                "maxclass" : "ezdac~",
                "numinlets" : 2,
                "id" : "obj-7",
                "numoutlets" : 0,
                "patching_rect" : [ 43.0, 627.0, 45.0, 45.0 ],
                "style" : ""
            }

        }
,         {
            "box" :             {
                "maxclass" : "message",
                "text" : "note $1",
                "numinlets" : 2,
                "id" : "obj-6",
                "numoutlets" : 1,
                "patching_rect" : [ 60.0, 314.0, 51.0, 22.0 ],
                "outlettype" : [ "" ],
                "style" : ""
            }

        }
,         {
            "box" :             {
                "maxclass" : "gain~",
                "numinlets" : 1,
                "id" : "obj-3",
                "numoutlets" : 2,
                "patching_rect" : [ 60.0, 447.0, 22.0, 140.0 ],
                "outlettype" : [ "signal", "int" ],
                "parameter_enable" : 0,
                "style" : ""
            }

        }
,         {
            "box" :             {
                "maxclass" : "kslider",
                "presentation_rect" : [ 0.0, 0.0, 336.0, 53.0 ],
                "numinlets" : 2,
                "id" : "obj-2",
                "numoutlets" : 2,
                "patching_rect" : [ 60.0, 203.0, 336.0, 53.0 ],
                "mode" : 1,
                "outlettype" : [ "int", "int" ],
                "parameter_enable" : 0,
                "style" : ""
            }

        }
],
    "lines" : [         {
            "patchline" :             {
                "source" : [ "obj-25", 0 ],
                "destination" : [ "obj-3", 0 ],
                "hidden" : 0,
                "disabled" : 0
            }

        }
,         {
            "patchline" :             {
                "source" : [ "obj-6", 0 ],
                "destination" : [ "obj-25", 0 ],
                "hidden" : 0,
                "disabled" : 0
            }

        }
,         {
            "patchline" :             {
                "source" : [ "obj-9", 0 ],
                "destination" : [ "obj-2", 0 ],
                "hidden" : 0,
                "disabled" : 0
            }

        }
,         {
            "patchline" :             {
                "source" : [ "obj-3", 0 ],
                "destination" : [ "obj-7", 1 ],
                "hidden" : 0,
                "disabled" : 0
            }

        }
,         {
            "patchline" :             {
                "source" : [ "obj-3", 0 ],
                "destination" : [ "obj-7", 0 ],
                "hidden" : 0,
                "disabled" : 0
            }

        }
,         {
            "patchline" :             {
                "source" : [ "obj-2", 0 ],
                "destination" : [ "obj-6", 0 ],
                "hidden" : 0,
                "disabled" : 0
            }

        }
],
    "appversion" :     {
        "major" : 7,
        "minor" : 1,
        "revision" : 0,
        "architecture" : "x86",
        "modernui" : 1
    }

}

Dario's icon

never mind I got it