- Katılım
- 4 yıl 2 ay 21 gün
- Mesajlar
- 2,765
- Discord
- tgemre#6161
Merhabalar Bir nebze hilecileri önlemek için yapılan bir koddur prop çıkarmasını engellemektedir Kod :
Aynı zamanda bu kodu discord loga düşürmek isterseniz :
iyi forumlar
Kod:
AddEventHandler('entityCreating', function(entity)
local src = NetworkGetEntityOwner(entity)
local id = src
local model = GetEntityModel(entity)
local whitelisted = false
local type = GetEntityType(entity)
if type == 1 then
elseif type == 2 then
elseif type == 3 then
print("Kisi obje spawnladı Name : "..GetPlayerName(src).. "Obje hash : "..model)
CancelEvent()
else
end
end)
Aynı zamanda bu kodu discord loga düşürmek isterseniz :
Kod:
function sendToWebhook(content)
local connect = {
{
["color"] = "23295",
["title"] = "Discord Logger",
["description"] = content,
["footer"] = {
["text"] = "Made By ....",
},
}
}
PerformHttpRequest("webhookburaya", function(err, text, headers) end, 'POST', json.encode({username = "name buraya", embeds = connect}), { ['Content-Type'] = 'application/json' })
end
iyi forumlar