-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathKEYCONF.txt
94 lines (72 loc) · 4.01 KB
/
KEYCONF.txt
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
//Toby Compass
addkeysection "Compass Options" CompassMod
addmenukey "Check Direction" "pukename CompassScript"
defaultbind Q "pukename CompassScript"
addmenukey "Face North" "pukename FaceNorth"
defaultbind F "pukename FaceNorth"
addmenukey "Turn Left" "pukename TurnCompass 1"
defaultbind E "pukename TurnCompass 1"
addmenukey "Turn Right" "pukename TurnCompass 0"
defaultbind R "pukename TurnCompass 0"
//Special Movement
//addkeysection "Toby Special Movement" TobyMove
//alias turnaround "turn180; give 180Giver"
//addmenukey "Quick Turn - 180 Degree Turn" "turnaround"
//Stat Checker - Health, Armor, Ammo, Keys
addkeysection "Status Checker Options" CheckMod
addmenukey "Check Coordinates" "netevent Toby_CheckCoordinates"
defaultbind U "netevent Toby_CheckCoordinates"
addmenukey "Check Health Stats" "netevent Toby_CheckHealth"
addmenukey "Check Armor Stats" "netevent Toby_CheckArmor"
defaultbind H "netevent Toby_CheckHealth"
addmenukey "Check Ammo Stats" "netevent Toby_CheckAmmo"
defaultbind B "netevent Toby_CheckAmmo"
addmenukey "Check Keys" "netevent Toby_CheckKeys"
defaultbind K "netevent Toby_CheckKeys"
addmenukey "Check current item" "netevent Toby_CheckCurrentItem"
defaultbind I "netevent Toby_CheckCurrentItem"
addmenukey "Check level stats" "netevent Toby_CheckLevelStats"
//God Mode Hotkey
addkeysection "Quick Cheats" TobyCheats
alias godmode "iddqd; give GodModeGiver"
addmenukey "Toggle God Mode" "godmode"
defaultbind KP5 "godmode"
//IDKFA Hotkey
alias allstuff "give all; give IDKFAGiver"
addmenukey "Give All" "allstuff"
defaultbind KP7 "allstuff"
//Level Warp Hotkey
alias levelwarp "give MapWarpSound; wait 52; changemap +"
addmenukey "Change to Next Level" "levelwarp"
defaultbind KP9 "levelwarp"
//Map Markers Section
AddKeySection "$ZS_EM_KEYS_TITLE" ExtendedMarkers
AddMenuKey "$ZS_EM_KEY_LABEL_OPEN_MENU" "openmenu toby_marker_main"
//AddMenuKey "$ZS_EM_KEY_LABEL_PLACE_NEXT_MARKER" zs_em_place_next_marker_keybind
//AddMenuKey "$ZS_EM_KEY_LABEL_REMOVE_LAST_MARKER" zs_em_remove_last_marker_keybind
alias zs_em_place_next_marker_keybind "netevent ZS_PlaceNextMarker";
alias zs_em_remove_last_marker_keybind "netevent ZS_RemoveLastMarker";
alias zs_em_remove_last_marker_menu "closemenu; netevent ZS_RemoveLastMarker";
alias zs_em_remove_nearest_menu "closemenu; netevent ZS_RemoveMarker:ZS_Marker_Base"
addkeysection "Snap to Target System" TargetSnap
alias +toby_snap_to_target_keybind "netevent Toby_SnapToTarget_KeyDown"
alias -toby_snap_to_target_keybind "netevent Toby_SnapToTarget_KeyUp"
AddMenuKey "$TOBY_SNAP_TO_TARGET" +toby_snap_to_target_keybind
alias toby_actors_in_viewport_narration_preset_0_keybind "netevent Toby_CheckActorsInViewport_Preset0"
alias toby_actors_in_viewport_narration_preset_1_keybind "netevent Toby_CheckActorsInViewport_Preset1"
alias toby_actors_in_viewport_narration_preset_2_keybind "netevent Toby_CheckActorsInViewport_Preset2"
alias toby_actors_in_viewport_narration_preset_3_keybind "netevent Toby_CheckActorsInViewport_Preset3"
alias toby_actors_in_viewport_narration_preset_4_keybind "netevent Toby_CheckActorsInViewport_Preset4"
alias toby_actors_in_viewport_narration_preset_5_keybind "netevent Toby_CheckActorsInViewport_Preset5"
//Area Scanner System
addkeysection "Area Scanner System" Scanner
AddMenuKey "$TOBY_VIEWPORT_NARRATION_PRESET0" toby_actors_in_viewport_narration_preset_0_keybind
AddMenuKey "$TOBY_VIEWPORT_NARRATION_PRESET1" toby_actors_in_viewport_narration_preset_1_keybind
AddMenuKey "$TOBY_VIEWPORT_NARRATION_PRESET2" toby_actors_in_viewport_narration_preset_2_keybind
AddMenuKey "$TOBY_VIEWPORT_NARRATION_PRESET3" toby_actors_in_viewport_narration_preset_3_keybind
AddMenuKey "$TOBY_VIEWPORT_NARRATION_PRESET4" toby_actors_in_viewport_narration_preset_4_keybind
AddMenuKey "$TOBY_VIEWPORT_NARRATION_PRESET5" toby_actors_in_viewport_narration_preset_5_keybind
//Proximity Detector
addkeysection "Proximity Detector System" ProximityDetector
alias toby_proximity_toggle_keybind "netevent Toby_ProximityToggle";
AddMenuKey "Toggle proximity detector" toby_proximity_toggle_keybind