solution found but I'll just give this tip to people who might still read this.
When there's a lot of quotation marks, split it into more aliases to make it easier on the eyes. Makes it easier to find bugs and helps with editing things later on
alias "bhop" "bind "mwheeldown" "+jump";bind 5 "normalhop""
alias "normalhop" "bind mwheeldown melee;bind 5 "bhop""
can be
alias bindjump "bind mwheeldown +jump"
alias bindmelee "bind mwheeldown slot3"
alias bhop "bindjump; bind 5 normalhop"
alias normalhop "bindmelee; bind 5 bhop"