Quote: --- Original message by: didymus
(script continuous timer_begin
(hud_set_timer_position 0 0 bottom_right )
(hud_set_timer_time timer_minutes timer_seconds )
(hud_set_timer_warning_time 1 0 )
(show_hud_timer true )
(set timer_active true )
)
There is the problem. I'm guessing that "timer minutes" and "timer seconds" were globals defined in bungie's original script. You need a number or the name of a value that contains a number.
So, you either need to change the line to something like this:
(hud_set_timer_time 0 45)
Or you could add these two lines to the beginning of your script(above the "(script continuous timer_begin" ):
(global short timer_minutes 0)
(global short timer_seconds 45)
That will set the timer for 0 minuets and 45 seconds, obviously you can change the numbers to get any time you want, I was just using 45 seconds as an example.