-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathremote.lua
More file actions
66 lines (50 loc) · 1.01 KB
/
remote.lua
File metadata and controls
66 lines (50 loc) · 1.01 KB
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
keyboard = libs.keyboard;
--@First Row
actions.galaxy_map = function ()
keyboard.press("m");
end
actions.deploy_heatsink = function ()
keyboard.press("v");
end
actions.cargo_scoop = function ()
keyboard.press("home");
end
actions.engine = function ()
keyboard.press("num1");
end
--@second row
actions.system_map = function ()
keyboard.press("ctrl","m");
end
actions.deploy_chaff = function ()
keyboard.press("c");
end
actions.hardpoints = function ()
keyboard.press("u");
end
actions.landing_gear = function ()
keyboard.press("insert");
end
--@Third row
actions.Target_Next_SiR = function ()
keyboard.press("ctrl","o");
end
actions.Use_Shield_cell = function ()
keyboard.press("b");
end
actions.ship_lights = function ()
keyboard.press("l");
end
actions.left_panel = function ()
keyboard.press("1");
end
--@Fourth row
actions.jettison_cargo = function ()
keyboard.press("ctrl","o");
end
actions.Night_Vision = function ()
keyboard.press("k");
end
actions.Silent_Run = function ()
keyboard.press("l");
end