- Ensure meta_libs v1.3+ is installed (https://github.com/meta-hub/meta_libs/releases).
- Extract the
fivem-drilling
folder into yourresources
directory. - Add
start fivem-drilling
to yourserver.cfg
file. - Trigger the drilling event from your script, or test it with the example below.
RegisterCommand('sf_drilling', function(...)
TriggerEvent("Drilling:Start",function(success)
if (success) then
print("Drilling complete.")
else
print("Drilling failed.")
end
end)
end)