inIimbo Posted November 27, 2019 Share Posted November 27, 2019 i think changing something here will acomplish what im trying to do anyone who is GECK literate, can you give me guidance im trying to remove the zoom in function of the visor overlay ; Overlay scale Begin GameMode ; Zooming if isControlPressed 6 == 1 set nextScale to PNxCVisorZoomScale else set nextScale to PNxCVisorScale endif if curScale != nextScale || updateScale == 1 set updateScale to 1 if curScale > nextScale set curScale to curScale - 0.05 if curScale < nextScale set curScale to nextScale endif else set curScale to curScale + 0.05 if curScale > nextScale set curScale to nextScale endif endif setUIFloat "HUDMainMenu\_PNxVisorScale" curScale endif End Link to comment Share on other sites More sharing options...
Recommended Posts