|
Revision 72, 255 bytes
(checked in by GrAnd, 2 years ago)
|
+ Script description
+ Script variables names
+ Script variables defaults
* Fixed FileBrowser? glitch (I hope)
+ Russian fonts (CP866 codepage)
+ Dynamic menu for scripts parameters
|
| Line | |
|---|
| 1 |
@title Default script |
|---|
| 2 |
@param a Shoot count |
|---|
| 3 |
@default a 2 |
|---|
| 4 |
@param b Step |
|---|
| 5 |
@default b 3 |
|---|
| 6 |
|
|---|
| 7 |
sleep 1000 |
|---|
| 8 |
|
|---|
| 9 |
if a<1 then let a=2 |
|---|
| 10 |
if b<1 then let b=3 |
|---|
| 11 |
|
|---|
| 12 |
for s=1 to a |
|---|
| 13 |
shoot |
|---|
| 14 |
for n=1 to b |
|---|
| 15 |
click "right" |
|---|
| 16 |
next n |
|---|
| 17 |
next s |
|---|
| 18 |
shoot |
|---|
| 19 |
|
|---|
| 20 |
for n=1 to a*b |
|---|
| 21 |
click "left" |
|---|
| 22 |
next n |
|---|
| 23 |
|
|---|
| 24 |
end |
|---|