Skip to main content

RiP-Crosshair

Improve your aim and game mechanics with RiP-Crosshair!

Config

Some options are explained here. However this does not represent the original config file.

RiP.Commands

With this option you can change the command names for opening the menu and resetting the crosshair.

RiP.Commands = {
Menu = 'crosshair', -- [STRING] command name to open menu
Reset = 'resetcrosshair', -- [STRING] command name to reset crosshair (RiP.Crosshair)
}

RiP.OnlyAiming

With this you can set the crosshair to always visible when a weapon is selected or only when aiming.

RiP.OnlyAiming = false          -- [BOOLEAN] enable crosshair only when aiming (false = always with weapon)

RiP.Effects

Activate the hover and kill effects for the crosshair. This is optional to give you the opportunity to improve realism and performance.

RiP.Effects = {
Hover = true, -- [BOOLEAN] enable crosshair color effect on player hover
Kill = true, -- [BOOLEAN] enable crosshair color effect on player kill
}

RiP.DisableDefault

Disable the default GTA crosshair. This may impair the performance.

RiP.DisableDefault = true       -- [BOOLEAN] disable default crosshair

RiP.Crosshair

Change the default crosshair for new players or the reset command.

RiP.Crosshair = {               -- [TABLE] default crosshair settings
Point = {
Opacity = 100, -- [INTEGER] point opacity in percent (0-100)
Color = '#FFFFFF', -- [STRING] point color as hex-code (e.g. #755eaa)
Size = 0.5, -- [DECIMAL] point size (0.25-0.75)
Outline = true -- [BOOLEAN] dark point outline
},
Circle = {
Opacity = 50, -- [INTEGER] circle opacity in percent (0-100)
Color = '#FFFFFF', -- [STRING] circle color as hex-code (e.g. #755eaa)
Size = 3, -- [INTEGER] circle size (1-5)
Width = 100, -- [INTEGER] circle width (60-100)
},
Cross = {
Opacity = 0, -- [INTEGER] cross opacity in percent (0-100)
Color = '#FFFFFF', -- [STRING] cross color as hex-code (e.g. #755eaa)
Size = 1, -- [DECIMAL] cross size (0.5-2.0)
Margin = 1 -- [DECIMAL] cross margin (0.5-1.5)
},
Effect = {
Color = '#c24242' -- [STRING] aim/kill effect color as hex-code (e.g. #755eaa)
}
}