Page 1 of 1

time‐speed

Posted: 04.08.2003, 11:17
by kamegawa
If we put L‐button,we can make time‐speed 10 times faster, put L ‐utton twice, we can make time‐speed 100 times faster.

But I want to make time‐speed 5 or 6or 7or ‥‥‥times faster.

Is it possible?

Posted: 04.08.2003, 14:14
by JackHiggins
You'll have to use a script if you want to make time go faster by say 5, 6 or 7 times...

Re: time‐speed

Posted: 04.08.2003, 15:02
by don
The script below will set Celestia's Time Rate to 5x.

* Copy the text in the Code box
* Paste it into your texty editor
* Edit the "rate" value of "5.0" to be the TimeRate you want
* Save the file as "SetTimeRate.cel" into the Celestia directory
* Double click the filename -or- use Celestia's File/Open Script dialog

If you double-click a .cel filename, Celestia will run that script. If Celestia is not currently running, it will be run automatically.

Hope this helps.

-Don G.

Code: Select all

{
#****************************************************************************
#*                 This Celestia Script Sets the Time Rate                  *
#****************************************************************************

# Set Time Rate (1x, 5x, 100x, 1000x, etc.)...
# (A negative value = Reverse time
#               1.0 = Real Time (default)
#            1000.0 = Good moon orbit motion)
    timerate { rate 5.0 }

#----------------------------------------------------------------------------
# End of Script - Let the user know the script is done running ...
#----------------------------------------------------------------------------

    print  { text "The script is finished."
             row  -2
             column 25
             duration 5 }

    wait   { duration 5 }

}