How about this modification to hdr.lua from the default scripts :
--[[
@title High Dynamic Range
@param f 1/2 stop range
@default f 4
--]]
sleep(2000) -- <- add this line to start of script for 2 second pause
print("1) normal")
shoot()
set_aflock(1)
p=get_av96()
s=get_sv96()
t=get_tv96()
print("2) bright")
set_tv96_direct(t-(f*48))
set_sv96(s)
set_av96(p)
shoot()
print("3) dark")
set_tv96_direct(t+(f*48))
set_sv96(s)
set_av96(p)
shoot()
set_aflock(0)
print("...done")
If you are using the uBASIC script, add this line :
sleep 2000