For VPW's Johnny Mnemonic version 1.1 you will need to modify lines 220 and 244 by adding "or keycode = lockbarkey" to both lines.
Edited by Bushav, 20 June 2024 - 01:37 PM.
Posted 09 September 2024 - 12:11 PM
For VPW's Goldeneye edit the following lines
line 390
If KeyCode=PlungerKey or keycode=lockbarkey Then Controller.Switch(9)=1 ': SoundPlungerPull()
line 412
If KeyCode=PlungerKey or keycode=lockbarkey Then Controller.Switch(9)=0 ': SoundPlungerReleaseBall()
Edited by Bushav, 09 September 2024 - 12:17 PM.
Posted 27 September 2024 - 04:36 PM
For Die Hard Trilogy (VPW) you have to just duplicate the PlungerKey
keydown
If keycode = LockBarKey Then
If bBallInPlungerLane=True Then DOF 122,DOFPulseIf CatchSkillShot = True Then
SkillShotReceived
End If'Plunger.Pullback
bAutoPlunger = True
autoplungerdelay.interval = 300
autoplungerdelay.enabled = True
' PlungerIM.Strength = 55 : PlungerIM.AutoFire
End If
keyup
If keycode = LockBarKey and VRRoom =1 Then 'VR Callout
PinCab_GunTrigger.y = PinCab_GunTrigger.y - 9
PinCab_GunTrigger.z = 0
end If
Dont even have to duplicate
If keycode = plungerkey or lockbarkey
I did the Die Hard work using "Or keycode = LockBarKey". I'm adding here so I can be lazy and copy paste it later. ; ) Also, I'm adding a bit extra so we have something to search for.
In sub KeyDown Line 1925 :
Sub Table1_KeyDown(ByVal keycode) If keycode = PlungerKey and VRRoom = 1 or keycode = LockBarKey and VRRoom = 1 Then PinCab_GunTrigger.y = PinCab_GunTrigger.y + 9: PinCab_GunTrigger.z = 3 'VR Callout
and line 2025
If keycode = PlungerKey or keycode = LockBarKey Then If bBallInPlungerLane=True Then DOF 122,DOFPulse
In sub KeyUp line 2089:
Sub Table1_KeyUp(ByVal keycode) If keycode = PlungerKey and VRRoom = 1 Or keycode = LockBarKey and VRRoom = 1 Then 'VR Callout
In Sub EnterHighScoreKey line 2607 :
If keycode = PlungerKey Or keycode = StartGameKey Or keycode = LockBarKey Then
Posted 22 January 2025 - 02:43 PM
Posted 27 October 2025 - 11:14 AM
SPONGEBOB (VPW)
Kids couldnt push plunger to launch and with no actual launch button needed to add fire button. I Only changed the Std Callout though as i dont use VR but changed Lines 1001-1007 and replaced with:
End If
Posted 29 October 2025 - 09:44 AM
I would not mind taking PR for any script - it has to be more easy to keep one copy of a script under version control and let people just download the changed one(s) ?
https://github.com/s...pxtable_scripts
From now on. I won't help anyone here at VPF. Please ask Noah why that is.