JP Deadpool
For the DOF config site, I submitted the following configs. Until it is approved, you will have to manually enter these:
Fire button: E200 blink 500/E201 blink 500
RGB Fire button: E200 White blink 500/E201 Red blink 500
Adding fire button support requires the table script changes below:
Go to "Sub UpdateLights" and replace
If BoomCount> 0 then
BoomLight.State = 2
Else
BoomLight.State = 0
End If
with
If BoomCount> 0 then
BoomLight.State = 2
If BoomCount <= 3 then
DOF 200, DOFOn: DOF 201, DOFOff 'White Fire button
Else
DOF 200, DOFOff: DOF 201, DOFOn 'Red Fire button
End If
Else
BoomLight.State = 0
DOF 200, 0: DOF 201, 0 'Fire button off
End If
Also go to "Sub CheckBoom" and replace
If BoomCount> 3 Then
SetLightColor BoomLight, red, 2
Else
SetLightColor BoomLight, white, 2
End If
with
If BoomCount> 3 Then
SetLightColor BoomLight, red, 2
DOF 200, DOFOff: DOF 201, DOFOn
Else
SetLightColor BoomLight, white, 2
DOF 200, DOFOn: DOF 201, DOFOff
End If