Core
Configure the script core dependency according to your server preference
Step 1: Navigate to mm_carkeys/shared/init.lua
Step 2: If you have renamed the core folder, then change the name. Ex: I have renamed qb-core to mm_core
if GetResourceState('mm_core') == 'started' then -- change your core script
Shared.Core = 'qb' -- dont touch this
elseif GetResourceState('es_extended') == 'started' then -- change your core script
Shared.Core = 'esx' -- dont touch this
else
Shared.Core = false
warn('No Core Script found')
end
Step 3: Consider Checking the mm_carkeys/client/interface.lua
and mm_carkeys/server/bridge.lua
folder for renaming the exports of core
Last updated