-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMENUDEF.BASIC
33 lines (31 loc) · 1.19 KB
/
MENUDEF.BASIC
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
OptionValue "AimAssist_AssistMethods" {
1,"Closest to Crosshair"
0,"Closest to Player"
}
OptionValue "AimAssist_EnableMode" {
0,"Always"
1,"Only When Looking or Moving"
2,"Only When Moving"
}
OptionMenu "AimAssistBasicOptions" {
Title "Aim Assist Options"
StaticText ""
Slider "Max Assist Angle","cl_aim_assist_angle_max",1,15,0.5
StaticText "Max Angle for Aim Assist","DarkRed"
StaticText "Lower to increases performance","DarkRed"
StaticText ""
Slider "Max Assist Distance","cl_aim_assist_max_dist",100,5000,100
StaticText "Max Distance for Aim Assist","DarkRed"
StaticText "Lower to increases performance","DarkRed"
StaticText ""
Slider "Assist Intensity","cl_aim_assist_rot_speed",0.1,5,0.1
StaticText "Intensity in angle per tick for Aim Assist","DarkRed"
StaticText "Lower to decrease assist force","DarkRed"
StaticText ""
Option "Targeting Method","cl_aim_assist_method","AimAssist_AssistMethods"
StaticText "Target Selection Method","DarkRed"
StaticText "\"Closer to crosshair\" has better performance","DarkRed"
StaticText ""
Option "Enable Mode","cl_aim_assist_enable_mode","AimAssist_EnableMode"
StaticText "Whether to always aim assist, or only when moving/looking","DarkRed"
}