Error in USER formula copy-pasted formula

I'm getting an error in _price.afl on my charts. I don't believe I edited it in any way but I can't be sure as I'm still learning. When I go to look at the .afl code there error is here:

SColor  = IIf( selectedC > Line4, scol, rcol );

    if ( SDSwitch )
    {
        zorder  = -i - 2;
        zorder2 = zorder + 2;

        PlotOHLC( Line1, Line1, Line2, Line2, "", Rcolor, style1, 0, 1, 0, zorder=0 );
        Plot( Line1, "", Colorline, style2, 0, 1, 0, zorder=0 );

        PlotOHLC( Line3, Line3, Line4, Line4, "", Scolor, style1, 0, 1, 0, zorder=0);
        Plot( Line3, "", Colorline, style2, 0, 1, 0, zorder=0 );

    }
}
And 2nd, is Edward's Gap Zones:
_SECTION_END();

Error 30 and 58 below the "Edward's Gap" line. Is there a way to redownload this? Thank you.

afl

You are getting an error because you have MODIFIED (probably copy-pasted) random code form who-knows-where together with parts that don't belong to it.
The sentence " And 2nd, is Edward's Gap Zones: " does NOT belong to formula. Remove it.

Thank you. I had to google it to figure out it's from some "supply/demand zone" post on this forum. Who knows how I got just 1 line in there.