When I load an attempt to play a custom Arkhis preset, I get a script error. Oddly, when I created the preset it played fine, but since trying to load it in a new session my CPU usage jumps to over 3000% in Ableton and I only get the script warning flashing. No sound. (Note: my CPU usage isn't actually this high. I checked task manager.)
Also, I never edited the Arkhis script - just the effect chains, but I'll paste the only editable script here. (The other is password locked.)
{
Script by Will Bedford
Build time: 2020-07-01 21:48:57.580541
}
on init
declare $vfuqe
$vfuqe := -100
declare $pftqn
declare %lsan2[30]
declare %2ygrz[30]
while ($pftqn<30)
%lsan2[$pftqn] := -1
%2ygrz[$pftqn] := $HIDE_PART_NOTHING
inc($pftqn)
end while
$pftqn := 0
declare $fg4rw
set_ui_height_px(300)
declare %vsx1g[512]
declare %djki0[512]
declare $mei0g
declare polyphonic $p1lm5
SET_CONDITION(NO_SYS_SCRIPT_PEDAL)
end on
on note
ignore_event($EVENT_ID)
$p1lm5 := $mei0g
$mei0g := play_note($EVENT_NOTE,$EVENT_VELOCITY,0,0)
set_event_par($mei0g,$EVENT_PAR_0,2)
$fg4rw := search(%vsx1g,0)
if ($fg4rw # -1)
%vsx1g[$fg4rw] := $mei0g
%djki0[$fg4rw] := $EVENT_NOTE
else
ignore_event($mei0g)
end if
end on
on release
if (%CC[64]>=64)
message("")
else
$fg4rw := 0
while ($fg4rw<=(num_elements(%vsx1g)-1))
if (%vsx1g[$fg4rw] # 0 and (%djki0[$fg4rw]=$EVENT_NOTE))
note_off(%vsx1g[$fg4rw])
set_event_par(%vsx1g[$fg4rw],$EVENT_PAR_0,1)
%vsx1g[$fg4rw] := 0
end if
inc($fg4rw)
end while
end if
end on
on controller
if (%CC_TOUCHED[64] # 0 and (%CC[64]<64))
$fg4rw := 0
while ($fg4rw<=(num_elements(%vsx1g)-1))
if (%vsx1g[$fg4rw] # 0 and (%KEY_DOWN[%djki0[$fg4rw]]=0))
note_off(%vsx1g[$fg4rw])
set_event_par(%vsx1g[$fg4rw],$EVENT_PAR_0,1)
%vsx1g[$fg4rw] := 0
end if
inc($fg4rw)
end while
end if
end on