The thing is, it occurs inside the script, without leaving the parameter menu, so clearing override values(which is not set) shouldn't affect it, the camera has not been shut off.
This is the script:
rem Author - Keoeeit
rem Written for S-Series
rem Should be okay on others
rem Use Endless mode with caution
rem See documentation for important info
rem first version
@title Ultra Intervalometer
@param a Delay 1st Shot (Mins)
@default a 0
@param b Delay 1st Shot (Secs)
@default b 0
@param c Number of Shots
@default c 5
@param d Interval (Minutes)
@default d 0
@param e Interval (Seconds)
@default e 0
@param f Interval (10th Seconds)
@default f 5
@param g Endless? No=0 Yes=1
@default g 0
p=a*60000+b*1000
t=d*60000+e*1000+f*100
if c<1 then let c=5
if t<100 then let t=100
if g<0 then let g=0
if g>1 then let g=1
if p<0 then let p=0
z=t*c
y=p+z
print "1 Cycle Time:", y/60000; "min", y%60000/1000; "sec"
goto "interval"
:interval
if p>0 then gosub "pause"
print "Shot 1 of", c
shoot
if c=1 then end
for n=2 to c
sleep t
print "Shot", n, "of", c
shoot
next n
if g=1 then goto "interval" else end
:pause
n=(a*60)+b
for m=1 to n
q=n-m
print "Intvl Begins:", q/60; "min", q%60; "sec"
sleep 930
next m
return
What happens is that when I load script from file, I get the normal menu, split into two part, the bottom part having the parameters to be set, the top part having the line with:
parameters set (0), and if you set your values in the bottom part, and then switch to parameters set (1), and switch back, the values I picked in set(0) should still be saved, but they revert to defaults.
It works on my other cameras, but not on this one.
Just noted something else, while I was checking the script thing, if in auto mode, I hold down the power switch for a bit while chdk is active, my settings change on screen from auto to macro symbol. I don't know if that is a normal function, and I just never saw it before.
Sorry if this stuff sounds picky, I am really happy with what there is right now, just trying to help with any testing.
Regards,
Dan