|
Revision 73, 455 bytes
(checked in by GrAnd, 2 years ago)
|
+ Script: Reimplemented 'print' command
|
| Line | |
|---|
| 1 |
@title Bracketing |
|---|
| 2 |
@param a Number of �ps |
|---|
| 3 |
@default a 2 |
|---|
| 4 |
@param b Step size |
|---|
| 5 |
@default b 2 |
|---|
| 6 |
|
|---|
| 7 |
if a<1 then let a=2 |
|---|
| 8 |
if b<1 then let b=2 |
|---|
| 9 |
|
|---|
| 10 |
sleep 1000 |
|---|
| 11 |
|
|---|
| 12 |
print "Preparing..." |
|---|
| 13 |
for n=1 to a*b |
|---|
| 14 |
click "left" |
|---|
| 15 |
next n |
|---|
| 16 |
|
|---|
| 17 |
print "Shoot 1 of", a*2+1 |
|---|
| 18 |
shoot |
|---|
| 19 |
for s=1 to a*2 |
|---|
| 20 |
for n=1 to b |
|---|
| 21 |
click "right" |
|---|
| 22 |
next n |
|---|
| 23 |
print "Shoot", s+1, "of", a*2+1 |
|---|
| 24 |
shoot |
|---|
| 25 |
next s |
|---|
| 26 |
|
|---|
| 27 |
print "Finalizing..." |
|---|
| 28 |
for n=1 to a*b |
|---|
| 29 |
click "left" |
|---|
| 30 |
next n |
|---|
| 31 |
|
|---|
| 32 |
end |
|---|