Neler yeni

Foruma hoş geldin, Ziyaretçi

Forum içeriğine ve tüm hizmetlerimize erişim sağlamak için foruma kayıt olmalı ya da giriş yapmalısınız. Foruma üye olmak tamamen ücretsizdir.

Türkiye'nin İlk ve tek FiveM forum adresi

Forum adresimize hoş geldin FiveMTürk olarak amacımız siz değerli kullanıcılarımıza en aktif fikir ve paylaşım platformu sunmak bir yana en güvenilir şekilde alışveriş yapabileceğiniz bir platform sunmaktır.
DF DF
DF DF
DF DF

Paylaşım Tüm M3 Eklentileri - Şifresiz

knk m3_ac sorun var bilgin olsun şifreli
 
Konu altındaki tartışma içerikli mesajlar tarafımca kaldırılmıştır.​
 
knk m3_ac sorun var bilgin olsun şifreli
Kusura bakma görmemişim.
Şifreli kısmın, şifresiz hali.
Kod:
print("[cloudfivem.com - m3_ac] - Anticheat Started!")
RegisterNetEvent("cloudfivem_ac:client:deleteEntitiesfromServerID")
AddEventHandler("cloudfivem_ac:client:deleteEntitiesfromServerID", function(a)
  for fe, fg in pairs(GetAllEnumerators()) do
    for fm in fg() do
      if GetPlayerServerId((NetworkGetEntityOwner(fm))) == a or a == false then
        if GetEntityType(fm) == 1 then
          if isPedBlacklisted(fm) then
            NetworkDelete(fm)
          end
        elseif GetEntityType(fm) == 2 then
          if isVehBlacklisted(fm) then
            NetworkDelete(fm)
          end
        elseif GetEntityType(fm) == 3 and isPropBlacklisted(fm) then
          NetworkDelete(fm)
        end
      end
    end
  end
end)
function isPropBlacklisted(a)
  for fe, fg in pairs(Config.WhitelistObjects) do
    if GetEntityModel(a) == GetHashKey(fg) then
      return false
    end
  end
  return true
end
function isVehBlacklisted(a)
  for fe, fg in pairs(Config.BlacklistVehicles) do
    if GetEntityModel(a) == GetHashKey(fg) then
      return true
    end
  end
  return false
end
function isPedBlacklisted(a)
  for fe, fg in pairs(Config.BlacklistPeds) do
    if GetEntityModel(a) == GetHashKey(fg) then
      return true
    end
  end
  return false
end
function NetworkDelete(a)
  if DoesEntityExist(a) and (not IsEntityAPed(a) or not IsPedAPlayer(a)) then
    DetachEntity(a, 0, false)
    SetEntityCollision(a, false, false)
    SetEntityAlpha(a, 0, true)
    SetEntityAsMissionEntity(a, false, true)
    DeleteEntity(a)
  end
end
Citizen.CreateThread(function()
  SetEntityProofs(PlayerPedId(), 0, 1, 0, 0, 0, 1, 1, 0)
  for fd, fe in pairs(Config.Events) do
    if Config.TriggerDetection then
      RegisterNetEvent(tostring(fe))
      AddEventHandler(tostring(fe), function()
        if Config.BlacklistEventLog then
          TriggerServerEvent("cloudfivem_ac:server:dclog", "Blacklisted event kullandi! Client Event: " .. va)
        end
        if Config.BlacklistEventDrop then
          TriggerServerEvent("cloudfivem_ac:server:drop")
        end
      end)
    end
  end
end)
Citizen.CreateThread(function()
  while true do
    Citizen.Wait(Config.CheckBLWeaponTimeOut)
    if isWeaponBlacklisted(GetCurrentPedWeapon(PlayerPedId(), true)) then
      RemoveWeaponFromPed(PlayerPedId(), GetCurrentPedWeapon(PlayerPedId(), true))
      if Config.BlacklistWeaponLog then
        TriggerServerEvent("cloudfivem_ac:server:dclog", "Blacklist silah kullandi! Silah: " .. isWeaponBlacklisted(GetCurrentPedWeapon(PlayerPedId(), true)))
      end
      if Config.BlacklistWeaponDrop then
        TriggerServerEvent("cloudfivem_ac:server:drop")
      end
    end
  end
end)
AddEventHandler("onClientResourceStop", function(a)
  if Config.StopResourceLog then
    TriggerServerEvent("cloudfivem_ac:server:dclog", "Script durdurdu! Script adi: **" .. a .. "**")
  end
  if Config.StopResourceDrop then
    TriggerServerEvent("cloudfivem_ac:server:drop")
  end
end)
function isWeaponBlacklisted(a)
  for fe, fg in pairs(Config.BlacklistedWeapons) do
    if a == GetHashKey(fg) then
      return true, fg
    end
  end
  return false, nil
end
if Config.DisableRam then
  Citizen.CreateThread(function()
    while true do
      Citizen.Wait(30)
      for fd in EnumerateVehicles() do
        if GetPedInVehicleSeat(fd, -1) == 0 and 20 < GetEntitySpeed(fd) then
          NetworkDelete(fd)
        end
      end
    end
  end)
end
function DisplayEntityInformation(a)
  Draw3DText(("~g~Oyun Objesi~w~" .. [[

~r~Obje ID:~w~ ]] .. a) .. [[

~y~Obje Modeli(Hash):~w~ ]] .. GetEntityModel(a) .. "", 100, GetEntityCoords(a))
end
RegisterCommand("ac_entityinfo", function()
  va = not va
  if va then
    repeat
      Citizen.Wait(0)
      if va then
        for fd, fe in pairs(GetAllEnumerators()) do
          for fl in fe() do
            DisplayEntityInformation(fl)
          end
        end
      end
    until not va
  end
end, false)
function Draw3DText(a, b, c)
  if b > Vdist2(GetEntityCoords(PlayerPedId(), false), c.x, c.y, c.z) and World3dToScreen2d(c.x, c.y, c.z) then
    SetTextScale(tonumber(1), tonumber(0.35))
    SetTextFont(0)
    SetTextProportional(true)
    SetTextColour(255, 255, 255, 255)
    SetTextOutline()
    SetTextEntry("STRING")
    SetTextCentre(true)
    AddTextComponentString(a)
    DrawText(World3dToScreen2d(c.x, c.y, c.z))
  end
end
function EnumerateObjects()
  return va(FindFirstObject, FindNextObject, EndFindObject)
end
function EnumeratePeds()
  return va(FindFirstPed, FindNextPed, EndFindPed)
end
function EnumerateVehicles()
  return va(FindFirstVehicle, FindNextVehicle, EndFindVehicle)
end
function GetAllEnumerators()
  return {
    vehicles = EnumerateVehicles,
    objects = EnumerateObjects,
    peds = EnumeratePeds
  }
end
RegisterNetEvent("esx:playerLoaded")
AddEventHandler("esx:playerLoaded", function(a)
  va = true
end)
AddEventHandler("playerSpawned", function()
  Citizen.CreateThread(function()
    while not va do
      Citizen.Wait(100)
    end
    if vb then
      vb = false
      AddEventHandler("esx:getSharedObject", function()
        if Config.GetSharedObjectLog then
          TriggerServerEvent("cloudfivem_ac:server:dclog", "Sunucuya baglandiktan sonra ESX kutuphanesi istendi. Menu enjektesi olabilir.")
        end
        if Config.GetSharedObjectDrop then
          TriggerServerEvent("cloudfivem_ac:server:drop")
        end
      end)
    end
  end)
end)
Citizen.CreateThread(function()
  while true do
    Citizen.Wait(Config.SpectateCheckTimeout * 1000)
    if NetworkIsInSpectatorMode() then
      if Config.AntiSpectateLog then
        TriggerServerEvent("cloudfivem_ac:server:dclog", "Spectate yakalandi.")
      end
      if Config.AntiSpectateDrop then
        TriggerServerEvent("cloudfivem_ac:server:drop")
      end
    end
  end
end)
 
knk client +menu şifreli onlari at sen 1 tanesi attin bilgin olsun
 
Kusura bakma görmemişim.
Şifreli kısmın, şifresiz hali.
Kod:
print("[cloudfivem.com - m3_ac] - Anticheat Started!")
RegisterNetEvent("cloudfivem_ac:client:deleteEntitiesfromServerID")
AddEventHandler("cloudfivem_ac:client:deleteEntitiesfromServerID", function(a)
  for fe, fg in pairs(GetAllEnumerators()) do
    for fm in fg() do
      if GetPlayerServerId((NetworkGetEntityOwner(fm))) == a or a == false then
        if GetEntityType(fm) == 1 then
          if isPedBlacklisted(fm) then
            NetworkDelete(fm)
          end
        elseif GetEntityType(fm) == 2 then
          if isVehBlacklisted(fm) then
            NetworkDelete(fm)
          end
        elseif GetEntityType(fm) == 3 and isPropBlacklisted(fm) then
          NetworkDelete(fm)
        end
      end
    end
  end
end)
function isPropBlacklisted(a)
  for fe, fg in pairs(Config.WhitelistObjects) do
    if GetEntityModel(a) == GetHashKey(fg) then
      return false
    end
  end
  return true
end
function isVehBlacklisted(a)
  for fe, fg in pairs(Config.BlacklistVehicles) do
    if GetEntityModel(a) == GetHashKey(fg) then
      return true
    end
  end
  return false
end
function isPedBlacklisted(a)
  for fe, fg in pairs(Config.BlacklistPeds) do
    if GetEntityModel(a) == GetHashKey(fg) then
      return true
    end
  end
  return false
end
function NetworkDelete(a)
  if DoesEntityExist(a) and (not IsEntityAPed(a) or not IsPedAPlayer(a)) then
    DetachEntity(a, 0, false)
    SetEntityCollision(a, false, false)
    SetEntityAlpha(a, 0, true)
    SetEntityAsMissionEntity(a, false, true)
    DeleteEntity(a)
  end
end
Citizen.CreateThread(function()
  SetEntityProofs(PlayerPedId(), 0, 1, 0, 0, 0, 1, 1, 0)
  for fd, fe in pairs(Config.Events) do
    if Config.TriggerDetection then
      RegisterNetEvent(tostring(fe))
      AddEventHandler(tostring(fe), function()
        if Config.BlacklistEventLog then
          TriggerServerEvent("cloudfivem_ac:server:dclog", "Blacklisted event kullandi! Client Event: " .. va)
        end
        if Config.BlacklistEventDrop then
          TriggerServerEvent("cloudfivem_ac:server:drop")
        end
      end)
    end
  end
end)
Citizen.CreateThread(function()
  while true do
    Citizen.Wait(Config.CheckBLWeaponTimeOut)
    if isWeaponBlacklisted(GetCurrentPedWeapon(PlayerPedId(), true)) then
      RemoveWeaponFromPed(PlayerPedId(), GetCurrentPedWeapon(PlayerPedId(), true))
      if Config.BlacklistWeaponLog then
        TriggerServerEvent("cloudfivem_ac:server:dclog", "Blacklist silah kullandi! Silah: " .. isWeaponBlacklisted(GetCurrentPedWeapon(PlayerPedId(), true)))
      end
      if Config.BlacklistWeaponDrop then
        TriggerServerEvent("cloudfivem_ac:server:drop")
      end
    end
  end
end)
AddEventHandler("onClientResourceStop", function(a)
  if Config.StopResourceLog then
    TriggerServerEvent("cloudfivem_ac:server:dclog", "Script durdurdu! Script adi: **" .. a .. "**")
  end
  if Config.StopResourceDrop then
    TriggerServerEvent("cloudfivem_ac:server:drop")
  end
end)
function isWeaponBlacklisted(a)
  for fe, fg in pairs(Config.BlacklistedWeapons) do
    if a == GetHashKey(fg) then
      return true, fg
    end
  end
  return false, nil
end
if Config.DisableRam then
  Citizen.CreateThread(function()
    while true do
      Citizen.Wait(30)
      for fd in EnumerateVehicles() do
        if GetPedInVehicleSeat(fd, -1) == 0 and 20 < GetEntitySpeed(fd) then
          NetworkDelete(fd)
        end
      end
    end
  end)
end
function DisplayEntityInformation(a)
  Draw3DText(("~g~Oyun Objesi~w~" .. [[

~r~Obje ID:~w~ ]] .. a) .. [[

~y~Obje Modeli(Hash):~w~ ]] .. GetEntityModel(a) .. "", 100, GetEntityCoords(a))
end
RegisterCommand("ac_entityinfo", function()
  va = not va
  if va then
    repeat
      Citizen.Wait(0)
      if va then
        for fd, fe in pairs(GetAllEnumerators()) do
          for fl in fe() do
            DisplayEntityInformation(fl)
          end
        end
      end
    until not va
  end
end, false)
function Draw3DText(a, b, c)
  if b > Vdist2(GetEntityCoords(PlayerPedId(), false), c.x, c.y, c.z) and World3dToScreen2d(c.x, c.y, c.z) then
    SetTextScale(tonumber(1), tonumber(0.35))
    SetTextFont(0)
    SetTextProportional(true)
    SetTextColour(255, 255, 255, 255)
    SetTextOutline()
    SetTextEntry("STRING")
    SetTextCentre(true)
    AddTextComponentString(a)
    DrawText(World3dToScreen2d(c.x, c.y, c.z))
  end
end
function EnumerateObjects()
  return va(FindFirstObject, FindNextObject, EndFindObject)
end
function EnumeratePeds()
  return va(FindFirstPed, FindNextPed, EndFindPed)
end
function EnumerateVehicles()
  return va(FindFirstVehicle, FindNextVehicle, EndFindVehicle)
end
function GetAllEnumerators()
  return {
    vehicles = EnumerateVehicles,
    objects = EnumerateObjects,
    peds = EnumeratePeds
  }
end
RegisterNetEvent("esx:playerLoaded")
AddEventHandler("esx:playerLoaded", function(a)
  va = true
end)
AddEventHandler("playerSpawned", function()
  Citizen.CreateThread(function()
    while not va do
      Citizen.Wait(100)
    end
    if vb then
      vb = false
      AddEventHandler("esx:getSharedObject", function()
        if Config.GetSharedObjectLog then
          TriggerServerEvent("cloudfivem_ac:server:dclog", "Sunucuya baglandiktan sonra ESX kutuphanesi istendi. Menu enjektesi olabilir.")
        end
        if Config.GetSharedObjectDrop then
          TriggerServerEvent("cloudfivem_ac:server:drop")
        end
      end)
    end
  end)
end)
Citizen.CreateThread(function()
  while true do
    Citizen.Wait(Config.SpectateCheckTimeout * 1000)
    if NetworkIsInSpectatorMode() then
      if Config.AntiSpectateLog then
        TriggerServerEvent("cloudfivem_ac:server:dclog", "Spectate yakalandi.")
      end
      if Config.AntiSpectateDrop then
        TriggerServerEvent("cloudfivem_ac:server:drop")
      end
    end
  end
end)
reis menu atarmisin menüsü şifreli
 
AB BU DİSC UYUMLU???!???????
 
m3 uyumlu ymap var mı abi elinde?
 
 
Merhaba
12 saat içinde virüs total linkini güncelleyin aksi taktirde konu kapatılacaktır
İyi forumlar dilerim​
 
konu sweety tarafından paylaşıldı zaten, hepsi şifresiydi onun paylaştığındada?
 
konu sweety tarafından paylaşıldı zaten, hepsi şifresiydi onun paylaştığındada?
Kanka onun paylaştıkları eski sürümleri m3 eklentilerinin, benim paylaştıklarım onunkinden daha güncel ve arasında bir kaç tane yeni eklenti var forum üzerinde paylaşılmaya.​
 

Forumdan daha fazla yararlanmak için giriş yapın yada üye olun!

Forumdan daha fazla yararlanmak için giriş yapın veya kayıt olun!

Kayıt ol

Forumda bir hesap oluşturmak tamamen ücretsizdir.

Şimdi kayıt ol
Giriş yap

Eğer bir hesabınız var ise lütfen giriş yapın

Giriş yap

Bu konuyu görüntüleyen kullanıcılar

Tema düzenleyici

Tema özelletirmeleri

Granit arka planlar

Lütfen Javascript'i etkinleştirin!Javascript'i etkinleştirin!