Skip to content

Commit

Permalink
Update csrp_server.lua
Browse files Browse the repository at this point in the history
  • Loading branch information
harleykradovill authored Aug 9, 2024
1 parent 4eadb5b commit c687e28
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions csrp_server.lua
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
local oovURL = 'https://coastalstateroleplay.bubbleapps.io/api/1.1/wf/setoov?api_token=[]'
local vehregURL = 'https://coastalstateroleplay.bubbleapps.io/api/1.1/wf/registervehicle?api_token=[]'
local rtiURL = 'https://coastalstateroleplay.bubbleapps.io/api/1.1/wf/incidentdetails?api_token=[]'
local showidURL = 'https://coastalstateroleplay.bubbleapps.io/api/1.1/wf/showid?api_token=[]'
local apiKey = ''

local oovURL = 'https://coastalstateroleplay.bubbleapps.io/api/1.1/wf/setoov?api_token=' .. apiKey
local vehregURL = 'https://coastalstateroleplay.bubbleapps.io/api/1.1/wf/registervehicle?api_token=' .. apiKey
local rtiURL = 'https://coastalstateroleplay.bubbleapps.io/api/1.1/wf/incidentdetails?api_token=' .. apiKey
local showidURL = 'https://coastalstateroleplay.bubbleapps.io/api/1.1/wf/showid?api_token=' .. apiKey

RegisterServerEvent('fetchIncidentDetails')
AddEventHandler('fetchIncidentDetails', function()
Expand Down

0 comments on commit c687e28

Please sign in to comment.