forked from Isigar/relisoft_core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheventConfig.lua
More file actions
28 lines (26 loc) · 936 Bytes
/
eventConfig.lua
File metadata and controls
28 lines (26 loc) · 936 Bytes
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
--Server side event config for esx addon scripts
EventConfig = {}
EventConfig.Account = {
['getAccount'] = 'esx_addonaccount:getAccount',
['getSharedAccount'] = 'esx_addonaccount:getSharedAccount',
}
EventConfig.Datastore = {
['getSharedDatastore'] = 'esx_datastore:getSharedDataStore',
['getDatastore'] = 'esx_datastore:getDataStore',
}
EventConfig.Common = {
['showHelpNotif'] = 'esx:showHelpNotification',
['playerDropped'] = 'esx:playerDropped',
['setJob'] = 'esx:setJob',
['playerLoaded'] = 'esx:playerLoaded',
['phoneRegisterNumber'] = 'esx_phone:registerNumber',
['addMessage'] = 'chat:addMessage',
}
EventConfig.Inventory = {
['getInventory'] = 'esx_addoninventory:getInventory',
['getSharedInventory'] = 'esx_addoninventory:getSharedInventory',
}
EventConfig.Society = {
['registerSociety'] = 'esx_society:registerSociety',
['getSociety'] = 'esx_society:getSociety',
}