thanks for the update. you're my favorite author Ezepov.
I am confused as to what the left stationary target does though. It's suppose to light the side lane and top hole, i'm guessing thats the purple light on the left inlane, but it seems to be totally random and the top hole is always lit from the start of the game and goes out randomly too.
There are problems in the script:
Change:
Set Lights(24)=Light17
Set Lights(25)=Light29
To:
Set Lights(24)=Light29
Lights(25)=Array(Light28,Light17)
If you're going to do it that way, then you should delete this -
Set LampCallback=GetRef("UpdateMultipleLamps")
Sub UpdateMultipleLamps
Light28.State=Light17.State
End Sub
It won't be needed anymore with that code.

Or, simply change the numbers for lights 24 and 25 like this:
Set Lights(25)=Light17
Set Lights(24)=Light29
and leave the update multiple lamps in there.
Edited by destruk, 21 February 2012 - 03:56 AM.