-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsuggestions.lua
More file actions
53 lines (53 loc) · 3.45 KB
/
suggestions.lua
File metadata and controls
53 lines (53 loc) · 3.45 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
RegisterCommandSuggestion({ 'me', 'do' }, 'Provide information or an action for others around you.', {
{ name = 'action/information', help = 'The action or information to disclose.' }
})
RegisterCommandSuggestion({ 'ooc', 'global' }, 'Send a global out of character message.', {
{ name = 'message', help = 'The message you would like to send.' }
})
RegisterCommandSuggestion({ 'pm', 'dm', 'message' }, 'Send a private message.', {
{ name = 'player', help = 'The player\'s server id.' },
{ name = 'message', help = 'The message you would like to send them.' },
})
RegisterCommandSuggestion({ 'ad', 'advert' }, 'Send an advert message.', {
{ name = 'message', help = 'The message you would like to advert.' },
})
RegisterCommandSuggestion({ 'darkweb' }, 'Send an anonymous darweb message.', {
{ name = 'message', help = 'The message you would like to send on the darkweb.' },
})
RegisterCommandSuggestion({ 'twt', 'tweet', 'twitter' }, 'Send a tweet.', {
{ name = 'message', help = 'The message you would like to tweet.' },
})
RegisterCommandSuggestion({ 'rt', 'retweet' }, 'Retweet the last tweet.')
RegisterCommandSuggestion({ 'dv', 'delveh' }, 'Delete the nearest vehicle.')
RegisterCommandSuggestion('duty', 'Toggle on/off duty.')
RegisterCommandSuggestion('offduty', 'Disable patrolman duties.')
RegisterCommandSuggestion('onduty', 'Enable patrolman duties.')
RegisterCommandSuggestion({ 'clean', 'wash' }, 'Clean the vehicle you\'re near.')
RegisterCommandSuggestion({ 'fix', 'repair' }, 'Fix the vehicle you\'re near.')
RegisterCommandSuggestion('hood', 'Open the hood of the vehicle you\'re near.')
RegisterCommandSuggestion('trunk', 'Open the trunk of the vehicle you\'re near.')
RegisterCommandSuggestion('door', 'Open a door of the vehicle you\'re near.', {
{ name = 'door', help = 'Can be the number of the door or the door\'s name. i.e. "driver", "passenger", "1", "2"' }
})
RegisterCommandSuggestion('door f', 'Just like /door, but forces the door to stay open.', {
{ name = 'door', help = 'Can be the number of the door or the door\'s name. i.e. "driver", "passenger", "1", "2"' }
})
RegisterCommandSuggestion('door q', 'Just like /door, but instantly opens/closes doors.', {
{ name = 'door', help = 'Can be the number of the door or the door\'s name. i.e. "driver", "passenger", "1", "2"' }
})
RegisterCommandSuggestion('taserlaser', 'Toggle your taser\'s laser. Best experienced in first-person because bullets shoot from the camera.')
RegisterCommandSuggestion({ 'heal', 'health' }, 'Set your health.', {
{ name = 'amount', help = '0 = none (dead), 1 = some, 2 = under half, 3 = over half, 4 = almost max, 5 = max.' }
})
RegisterCommandSuggestion({ 'armour', 'armor' }, 'Set your armour.', {
{ name = 'amount', help = '0 = none, 1 = some, 2 = under half, 3 = over half, 4 = almost max, 5 = max.' }
})
RegisterCommandSuggestion({ 'globalme', 'gme', 'globaldo', 'gdo' }, 'Provide information or an action for players further away.', {
{ name = 'message', help = 'The message you would like to send.' }
})
RegisterCommandSuggestion({ 'engine', 'eng' }, 'Toggle the engine of the vehicle you\'re currently in.')
RegisterCommandSuggestion({ 'handsup', 'hu' }, 'Put your hands in the air.')
RegisterCommandSuggestion('radioloud', 'Makes the radio of the vehicle you\'re in absolutely booming.')
RegisterCommandSuggestion('fuel', 'Set the fuel of the vehicle you\'re in.', {
{ name = 'amount', help = '0 = none, 1 = some, 2 = under half, 3 = over half, 4 = almost max, 5 = max.' }
})