Trigger calls should be placed in the table scripts,
for example, as is done in the electromechanical or original tables.
Example to turn on the bulb 10 of the backglass via the trigger 1 of the table
Sub Trigger1_Hit
If B2SOn Then
Controller.B2SSetData 10, 1
End If
End Sub
Having a problem with backglass I am working on.
I am trying to call a snippit using the above method, and not getting any results.
I am fairly good at using snippits that use rom ID's, but this method doesn't use rom ID.
There is only 1 snippet in the backglass and no other lamps.
So using the method above, it should look like this after changing 10 to 1 because it is lamp 1 (The only thing added to backglass.)....
Sub Trigger1_Hit
If B2SOn Then
Controller.B2SSetData 1, 1
End If
End Sub
Is there a different way to type the command when using a snippit?
I am also assuming you would use Controller.B2SSetData 1, 0 command to shut it off?
Thanks for any other helpful info!