script error for ep preamp mode

Kontrolist
Kontrolist Member Posts: 9 Member

Is there a known bug for this EP Preamps engine parameter?

set_engine_par($ENGINE_PAR_EPP_EQ_MODE, $NI_EPP_EQ_MODE_E_GRAND,-1,3,$NI_MAIN_BUS)

This is a part of a select/case.
When applying the script, Kontakt 7.10.6 stops and shows this line in red.
All other other modes (70's, 80's etc), work fine. It is just the Electric Grand mode that is not accepted.

😒

Comments

  • theodorech
    theodorech Member Posts: 72 Member

    Yeah, it seems that this particular parameter isn't accessible using NI_EPP_EQ_MODE_E_GRAND. Use '4' instead.

    add_menu_item($modes,"80s",$NI_EPP_EQ_MODE_80S)
    add_menu_item($modes,"E Grand",4)

  • Kontrolist
    Kontrolist Member Posts: 9 Member

    Using 4 instead of NI_EPP_EQ_MODE_E_GRAND works 🙂
    Thanks a million 🤗

    set_engine_par($ENGINE_PAR_EPP_EQ_MODE, 4,-1,3,$NI_MAIN_BUS)

Back To Top