|
@@ -8136,11 +8136,9 @@ of the "clock" and can be one of the following values:
|
|
|
1 - Incremental counter (1 tick/second).
|
|
|
2 - Decremental counter (1 tick/second). Does not stop at zero,
|
|
|
but overflows.
|
|
|
- 3 - Decremental counter (1 tick/second). Two digits only, stops
|
|
|
+ 3 - Decremental counter (2 ticks/second). Two digits only, stops
|
|
|
at zero.
|
|
|
|
|
|
-For type 1 and 2 the start value is set by using negative number of
|
|
|
-the one intended to set (ex. -10 starts the counter at 10 seconds).
|
|
|
Except for type 3 the value is interpreted as seconds and formatted
|
|
|
as time in days, hours, minutes and seconds. Note, that the official
|
|
|
script command does not have the optional parameter.
|
|
@@ -8148,7 +8146,7 @@ script command does not have the optional parameter.
|
|
|
// displays 23:59:59 for 5 seconds
|
|
|
showdigit 86399;
|
|
|
|
|
|
- // counter that starts at 60 and runs for 60 seconds
|
|
|
+ // counter that starts at 60 and runs for 30 seconds
|
|
|
showdigit 60,3;
|
|
|
|
|
|
---------------------------------------
|