dco28 Posted June 18, 2013 Share Posted June 18, 2013 ScriptName scrSwapShoulderQuest int bIsNPressed int bKeyState int bLastKeyState int bRunOnce int bSwapShoulder float CameraPos float CameraPosTarget Begin GameMode if bRunOnce == 0 set CameraPos to 40 set CameraPosTarget to 40 set bRunOnce to 1 endif if bIsNPressed != IsKeyPressed 16 ; N set bIsNPressed to IsKeyPressed 16 ; N if bIsNPressed==1 && bKeyState==0 set bSwapShoulder to 1 set CameraPosTarget to CameraPosTarget*(-1) set bKeyState to 1 endif if bIsNPressed==0 && bKeyState==1 set bKeyState to 0 endif endif if bSwapShoulder==1 && CameraPos > CameraPosTarget set CameraPos to CameraPos - 20 SetNumericGameSetting fOverShoulderPosX CameraPos endif if bSwapShoulder==1 && CameraPos < CameraPosTarget set CameraPos to CameraPos + 20 SetNumericGameSetting fOverShoulderPosX CameraPos endif End I'm just editing a script, i just changed to hotkey to be pressed "16". But im having this error and i cant save line 32, SetNumericGameSetting Not found Link to comment Share on other sites More sharing options...
blove Posted June 18, 2013 Share Posted June 18, 2013 The syntax looks correct. Are you sure that you are using a NVSE enabled GECK? Link to comment Share on other sites More sharing options...
Recommended Posts