Reply To: Flash Gordon (Bally 1981)

#58134
rothbauerw
Moderator
    @rothbauerw

    Had time to play this table now and I must say that is really nice. Thank you guys. I do have a question though. I can’t seem to use the magnasave keys to change contrast as described in the table script ?!

    Good catch.  I didn’t actually script that into the table.  Add the following to the Table1_KeyDown sub and you’ll be able to play with contrast settings on the fly:

    If keycode = RightMagnaSave Then
    ContrastSetting = ContrastSetting + 1
    If ContrastSetting > 7 Then ContrastSetting = 7 End If
    If ContrastSetting=0 or ContrastSetting=2 or ContrastSetting=4 or ContrastSetting=6 Then ChangeGlow(True) Else ChangeGlow(False) End If
    ColorGrade()
    End If
    If keycode = LeftMagnaSave Then
    ContrastSetting = ContrastSetting – 1
    If ContrastSetting < 0 Then ContrastSetting = 0 End If
    If ContrastSetting=0 or ContrastSetting=2 or ContrastSetting=4 or ContrastSetting=6 Then ChangeGlow(True) Else ChangeGlow(False) End If
    ColorGrade
    End If

    Current Project: Perpetual updates of VPX physics.

    Current Project: Perpetual updates of VPX physics.

    1 user thanked author for this post.

    ©2024 VPinBall.com

    Log in with your credentials

    Forgot your details?