i want to dof this table but the slinghots have the same switch and with this old code, i don't know how to separate the two slinghots
'---------------------------------------------------------------
' SWITCH HANDLING
'---------------------------------------------------------------
Sub Drain_Hit
bsTrough.AddBall Me
PlaySound "Drain"
End Sub
Sub Targets_Hit(index)
dropTargets.Hit index + 1
End Sub
Sub Hittables_Hit(index)
vpmTimer.PulseSw hittableSwitches(index)
End Sub
Sub Lanes_Hit(index)
Controller.Switch(laneSwitches(index)) = True
End Sub
Sub Lanes_UnHit(index)
Controller.Switch(laneSwitches(index)) = False
End Sub
Sub Slingshots_Slingshot(index)
vpmTimer.PulseSw slingshotSwitches(index)
End Sub
Sub ReboundHole_Hit()
Controller.Switch(4) = True
End Sub
how can i detect in the script which slinghot has been triggered?