Hi guys,
I need a script that gives me on Discord via webhook the logs of the robberies started in stores, banks and jewelers.
Can someone help me?
Hi guys,
I need a script that gives me on Discord via webhook the logs of the robberies started in stores, banks and jewelers.
Can someone help me?
You can make like this,
function Webhook()
local whook = "Webhook link"
local title = "Title"
local desc = "Description"
local image = "Image link"
local connect = {
{
['title'] = title,
['description'] = desc,
['footer'] = {
['text'] = 'Text',
['icon_url'] = 'Image link',
},
['image'] = {
['url'] = image,
},
['fields'] = {{
['name'] = 'First Field',
['value'] = 'Text' ,
},
{
['name'] = 'Second field',
['value'] = 'Text',
}},
}
}
PerformHttpRequest(whook, function(err, text, headers) end, 'POST', json.encode({username = "Name", embeds = connect, avatar_url = "Avatar image"}), { ['Content-Type'] = 'application/json' })
end
any discord logs when someone gives items to another player?
i am using esx 1.2 and esx_inventoryhud last version
Paste in somewhere inside server side
RegisterServerEvent("esx_inventoryhud:tradePlayerItem")
AddEventHandler("esx_inventoryhud:tradePlayerItem", function(from, target, type, itemName, itemCount)
local _source = from
local sourceXPlayer = ESX.GetPlayerFromId(_source)
local targetXPlayer = ESX.GetPlayerFromId(target)
local whook = "Webhook link"
local title = "Item Transfer"
local desc = "Inventory transfered from " .. sourceXPlayer.identifier .. " to " .. targetXPlayer.identifier
local image = "Image link"
local connect = {
{
['title'] = title,
['description'] = desc,
['image'] = {
['url'] = image,
},
['fields'] = {{
['name'] = 'Item Name',
['value'] = itemName,
},
{
['name'] = 'Item Count',
['value'] = itemCount,
}},
}
}
PerformHttpRequest(whook, function(err, text, headers) end, 'POST', json.encode({username = "Discord Log", embeds = connect}), { ['Content-Type'] = 'application/json' })
end)
what do you mean by server side ? where should i put the inv transfer file code?