Dispatch

  • The script doesn't have any dispatch function built in, you need to trigger your own dispatch using exports/events (read your dispatch script docs)

  • In av_houserobbery/client/framework/cops.lua line 13 inside callCops() you can place your own dispatch trigger/export.

-- Example for ps-dispatch:
function callCops()
    -- Your dispatch event/export goes here:
    exports['ps-dispatch']:HouseRobbery()
end

Last updated