-
Set sustain level in dB from script
Is there a way to set the decibel value of the sustain portion of an envelope in script? I would like a specific dB value but the units for setting it in script don't relate to dB at all. I've tried using Koala library with Bob's math conversion functions, and they work for the times (attack, decay, etc) but the volume…
-
Create modulation using KSP
I know this is a basic question, but can someone tell me how to create a new modulation in KSP (or point me in the right direction). I can add effects (filters, etc), but how would I add a ADSR envelope or LFO or something like that. I would like to be able to write a script that, when run, will add an envelope to each…
-
Searching for vibrato script
Hi, Does anybody have Dynamitec's UltraVib vibrato script? Every link that I find on Google is down. In addition, if you have any other vibrato script (excluding SIPS, I have that already), feel free to share. Niklas
-
KSP scripting error, "callback type not allowed" cant solve
So I'm attempting to make a simple script that takes the state of the soft pedal and when pressed lowers the velocity values by 15 points. I'd prefer 20% but this seems simpler. I keep getting the error "error (line 17): callback type not allowed in this context" referring to the "on note" use and even GPT cant figure it…
-
Poly Aftertouch Cymbal Choke Script issue.
I tried implementing this script I found for poly aftertouch cymbal choking from EvilDragon, and it sort of works. The issue, however, is that it doesn't totally kill the voice, it just reduces it in volume. The sample continues playing at this reduced volume. I've implemented it verbatim, and I'm a bit stumped. on init…
-
How to make the "Tune" Knob move in semitones? And control it in high resolution
I want to tell the Tune-Knob to move up/down differently. Not in 0.01 or 0.1 steps, but 1.0, which means in semitones. I m using Komplete Kontrol 2.7.2 to host Kontakt, because i m using the KK S MK2 Keyboard. I ve found a script for the semitone movement, which works for MidiAssignments, like Midi cc11 - but it also…
-
How do i save my instrument?
I just finished my own instrument and I know how to save the patch and samples but i don't know how to protect all the resources of my instrument and do a library to install with a wallpaper and all that stuff
-
Override sustain pedal on a per-pitch basis with velocity = 1 note events
I have this very simple script working fine below but it's only able to send note-offs for all note events. I want to be able to only send note-offs to note events of the same pitch as the note event with velocity = 1, the instant that note is played. on init declare polyphonic $v declare polyphonic $notenumber end on on…
-
Zero experience - Trying to write a script for multi for round robin of 8 instruments
I'm trying to write a script that will send incoming MIDI notes sequentially to 8 separate instruments in a multi. I keep getting errors. I'd be grateful for pointers. I started by trying with 2 instruments. Here's my bad script: on init declare $currentInstrument := 0 declare $numberOfInstruments := 2 { Assuming 2…
-
How can the arpeggiator script affect only one group instead of all?
im doing my own instrument and i want to use the arpeggiator but only in one group, i want the others to play normally but i dont know where and how modify the script to do that
-
Need help to create a simple knob for CC11 (expression)
Hi everyone, I want to add a simple knob for CC11 (controlling volume) to one of my custom Kontakt Instruments. So far I added an modulator (amplifier => external sources => midi CC) to tweak the volume. This is my script so far: on init make_perfview set_ui_height_px(120) declare ui_knob $Expression (0,127,1) move_control…
-
What's the best way to recreate an instrument in an older version of Kontakt?
Hi, first time posting here... I'm just starting out creating some of my own Kontakt Instruments and have realised that Kontakt is not forwards compatible. The instruments I have created in Kontakt 7 will not open in older versions. I'd like to recreate the instruments in Kontakt 6 to allow wider access but I just wondered…
-
Menu to control which group could be filtered
Hi there, can anyone help me with a code for a drop down menu for my filter section where I can chose between a Main and Bass group? At the moment the filter controls all layers but I want it separate that I could filter the Bass group maybe a bit more than the Instrument group/s. Here is what I already have: declare…
-
[Feature Request] Kontakt: save/load map maps
Taking a note from HISE, the ability to save/load sample maps (manually and via KSP) from the Mapping Editor as an external file (xml, csv, etc.) I believe would be huge for us sample library creators (instead of using tons of groups that can get confusing and complicated).
-
Deactivate a activated Button when a other one gets activated
Hi, when for example Button 2 is activated and I activate Button 5 the second one should be deactivated and so on. is there another way to do this? because since I'm using this code I've many problems with the functions of my script. on init declare $i declare ui_button $button0 declare ui_button $button1 declare ui_button…