-- iRacing SLI-PRO Custom SLIMax Manager Scripts v3 -- Copyright ©2012-2013 by Zappadoc - All Rights Reserved. -- last change by Zappadoc - 2013-02 -- ================================ -- CONSTANTS -- ================================ -- additional lua extension module dll -- ================================ -- additional scripts file require "scripts/zdoc_scripts/iracing_stuff" -- ================================ -- custom globals -- ================================ -- custom functions -- ================================ -- custom events function custom_initEvent(scriptfile) -- type your custom script initialization here end function custom_controlsEvent(deviceIdx, ctrlType, ctrlPos, value, funcIndex) -- type your custom controls script here (manage buttons, switches and encoders) return 2 end function custom_deviceReport(devType) -- type your script here (just before sending report to the device ) return 2 end function custom_ospMethodEvent(idx) -- type your custom Optimal Shift Points (OSP) method here -- custom speedlimiter for each iRacing car local result = 2 -- get current simulation name local sim = GetContextInfo("simulation") if isAppIRacing(sim) then result = iRacing_ospMethodEvent(idx, "SLI") end return result end function custom_ospFanatecMethodEvent(idx) -- type your custom Optimal Shift Points (OSP) method here -- custom speedlimiter for each iRacing car local result = 2 -- get current simulation name local sim = GetContextInfo("simulation") if isAppIRacing(sim) then result = iRacing_ospMethodEvent(idx, "FANATEC") end return result end function custom_shiftLightsMethodEvent(idx) -- type your custom shiftlights method here -- custom shiftlights for each iRacing car -- get current simulation name local sim = GetContextInfo("simulation") if isAppIRacing(sim) then iRacing_shiftLightsMethodEvent(idx, "SLI") -- skip std methods return 1 end return 2 end function custom_shiftLightsFanatecMethodEvent(idx) -- type your custom shiftlights method here -- custom shiftlights for each iRacing car -- get current simulation name local sim = GetContextInfo("simulation") if isAppIRacing(sim) then iRacing_shiftLightsMethodEvent(idx, "FANATEC") -- skip std methods return 1 end return 2 end function custom_shiftLightsBU0710Event(idx) -- type your custom shiftlights method for BU0710 device only here return 2 end function custom_leftDigitsEvent(swPosition) -- type your custom script related to left SLI-PRO digits panel here return 2 end function custom_rightDigitsEvent(swPosition) -- type your custom script related to right SLI-PRO digits panel here return 2 end function custom_fanatecDigitsEvent(swPosition) -- type your custom script related to Fanatec digits panel here return 2 end function custom_spdLmtMethodEvent(idx) -- type your custom speedlimiter method here -- custom speedlimiter for each iRacing car local result = 2 -- get current simulation name local sim = GetContextInfo("simulation") if isAppIRacing(sim) then result = iRacing_spdLmtMethodEvent(idx, "SLI") end return result end function custom_spdLmtFanatecMethodEvent(idx) -- type your custom Optimal Shift Points (OSP) method here -- custom speedlimiter for each iRacing car local result = 2 -- get current simulation name local sim = GetContextInfo("simulation") if isAppIRacing(sim) then result = iRacing_spdLmtMethodEvent(idx, "FANATEC") end return result end function custom_gearFanatecEvent(gear) -- type your custom gear event script here local sim = GetContextInfo("simulation") if isAppIRacing(sim) then iRacing_InitGearEvent(gear) end return 2 end function custom_gearEvent(gear) -- type your custom gear event script here local sim = GetContextInfo("simulation") if isAppIRacing(sim) then iRacing_InitGearEvent(gear) end return 2 end function custom_enterSessionEvent(devType) -- type your custom script on session start, here -- custom script to get the max gear of each iRacing car -- get current simulation name local sim = GetContextInfo("simulation") if isAppIRacing(sim ) then iRacing_CarSetup(0) iRacing_DebugCarInfo(devType) end return 2 end function custom_exitSessionEvent(devType) -- type your custom script on session ending, here return 2 end