mirror of
https://github.com/ND-Framework/ND_Core.git
synced 2026-08-17 05:56:01 +01:00
Delete ND_Chat directory
This commit is contained in:
@@ -1,26 +0,0 @@
|
||||
config = {
|
||||
["/me"] = true,
|
||||
["/gme"] = true,
|
||||
["/ooc"] = true,
|
||||
["/twt"] = true,
|
||||
["/pay"] = true,
|
||||
["/give"] = true,
|
||||
["/darkweb"] = {
|
||||
enabled = true,
|
||||
canNotSee = {
|
||||
"LSPD",
|
||||
"BCSO",
|
||||
"SAHP",
|
||||
"LSFD"
|
||||
}
|
||||
},
|
||||
["/911"] = {
|
||||
enabled = true,
|
||||
callTo = {
|
||||
"LSPD",
|
||||
"BCSO",
|
||||
"SAHP",
|
||||
"LSFD"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,14 +0,0 @@
|
||||
-- For support join my discord: https://discord.gg/Z9Mxu72zZ6
|
||||
author "Andyyy#7666, N1K0#0001"
|
||||
description "ND Chat commands"
|
||||
version "2.2.0"
|
||||
|
||||
fx_version "cerulean"
|
||||
game "gta5"
|
||||
lua54 "yes"
|
||||
|
||||
shared_script "config.lua"
|
||||
client_script "source/client.lua"
|
||||
server_script "source/server.lua"
|
||||
|
||||
dependency "ND_Core"
|
||||
@@ -1,49 +0,0 @@
|
||||
NDCore = exports["ND_Core"]:GetCoreObject()
|
||||
|
||||
if config["/me"] then
|
||||
TriggerEvent("chat:addSuggestion", "/me", "Send message in the third person (Proximity).", {{ name="Action", help="Describe your action."}})
|
||||
end
|
||||
|
||||
if config["/gme"] then
|
||||
TriggerEvent("chat:addSuggestion", "/gme", "Send message in the third person (Global).", {{ name="Action", help="Describe your action."}})
|
||||
end
|
||||
|
||||
if config["/ooc"] then
|
||||
TriggerEvent("chat:addSuggestion", "/ooc", "Out of Character chat message (Global).", {{name="Message", help="Put your questions or help request."}})
|
||||
end
|
||||
|
||||
if config["/twt"] then
|
||||
TriggerEvent("chat:addSuggestion", "/twt", "Send a Twotter in game. (Global)", {{name="Message", help="Twotter Message."}})
|
||||
end
|
||||
|
||||
if config["/darkweb"].enabled then
|
||||
TriggerEvent("chat:addSuggestion", "/darkweb", "Send a anonymous message in game (Global).", {{ name="Message", help=""}})
|
||||
end
|
||||
|
||||
if config["/911"].enabled then
|
||||
RegisterNetEvent("ND_Chat:911", function(coords, callDescription)
|
||||
local selectedCharacter
|
||||
NDCore.Functions.GetSelectedCharacter(function(character)
|
||||
selectedCharacter = character
|
||||
end)
|
||||
for _, department in pairs(config["/911"].callTo) do
|
||||
if selectedCharacter.job == department then
|
||||
local location = GetStreetNameFromHashKey(GetStreetNameAtCoord(coords.x, coords.y, coords.z))
|
||||
TriggerEvent("chat:addMessage", {
|
||||
color = {255, 0, 0},
|
||||
args = {"^*[911] ^3Location: " .. location .. " ^1| Call infomation^0", callDescription}
|
||||
})
|
||||
local blip = AddBlipForCoord(coords.x, coords.y, coords.z)
|
||||
SetBlipSprite(blip, 817)
|
||||
SetBlipAsShortRange(blip, true)
|
||||
BeginTextCommandSetBlipName("STRING")
|
||||
SetBlipColour(blip, 1)
|
||||
AddTextComponentString("911 CALL: " .. location)
|
||||
EndTextCommandSetBlipName(blip)
|
||||
Citizen.Wait(60 * 1000)
|
||||
RemoveBlip(blip)
|
||||
break
|
||||
end
|
||||
end
|
||||
end)
|
||||
end
|
||||
@@ -1,119 +0,0 @@
|
||||
NDCore = exports["ND_Core"]:GetCoreObject()
|
||||
NDCore.Functions.VersionChecker("ND_Chat", GetCurrentResourceName(), "https://github.com/ND-Framework/ND_Framework", "https://raw.githubusercontent.com/ND-Framework/ND_Framework/main/ND_Chat/fxmanifest.lua")
|
||||
|
||||
if config["/me"] then
|
||||
RegisterCommand("me", function(source, args, rawCommand)
|
||||
local player = source
|
||||
local players = NDCore.Functions.GetPlayers()
|
||||
local playerCoords = GetEntityCoords(GetPlayerPed(player))
|
||||
for serverPlayer, _ in pairs(players) do
|
||||
local targetCoords = GetEntityCoords(GetPlayerPed(serverPlayer))
|
||||
if (#(playerCoords - targetCoords) < 20.0) then
|
||||
TriggerClientEvent("chat:addMessage", serverPlayer, {
|
||||
color = {255, 0, 0},
|
||||
args = {"^*ME | ^0" .. players[player].firstName .. " " .. players[player].lastName .. " (#" .. player .. ")", table.concat(args, " ")}
|
||||
})
|
||||
end
|
||||
end
|
||||
end, false)
|
||||
end
|
||||
|
||||
if config["/gme"] then
|
||||
RegisterCommand("gme", function(source, args, rawCommand)
|
||||
local player = source
|
||||
local players = NDCore.Functions.GetPlayers()
|
||||
TriggerClientEvent("chat:addMessage", -1, {
|
||||
color = {255, 0, 0},
|
||||
args = {"^*GME | ^0" .. players[player].firstName .. " " .. players[player].lastName .. " (#" .. player .. ")", table.concat(args, " ")}
|
||||
})
|
||||
end, false)
|
||||
end
|
||||
|
||||
if config["/ooc"] then
|
||||
RegisterCommand("ooc", function(source, args, rawCommand)
|
||||
local player = source
|
||||
TriggerClientEvent("chat:addMessage", -1, {
|
||||
color = {150, 150, 150},
|
||||
args = {"^*OOC | ^0" .. GetPlayerName(player) .. " (#" .. player .. ")", table.concat(args, " ")}
|
||||
})
|
||||
end, false)
|
||||
end
|
||||
|
||||
if config["/twt"] then
|
||||
RegisterCommand("twt", function(source, args, rawCommand)
|
||||
local player = source
|
||||
local players = NDCore.Functions.GetPlayers()
|
||||
TriggerClientEvent("chat:addMessage", -1, {
|
||||
template = "<img src='data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+Cjxz%0D%0AdmcKICB2aWV3Ym94PSIwIDAgMjAwMCAxNjI1LjM2IgogIHdpZHRoPSIyMDAwIgogIGhlaWdodD0i%0D%0AMTYyNS4zNiIKICB2ZXJzaW9uPSIxLjEiCiAgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAv%0D%0Ac3ZnIj4KICA8cGF0aAogICAgZD0ibSAxOTk5Ljk5OTksMTkyLjQgYyAtNzMuNTgsMzIuNjQgLTE1%0D%0AMi42Nyw1NC42OSAtMjM1LjY2LDY0LjYxIDg0LjcsLTUwLjc4IDE0OS43NywtMTMxLjE5IDE4MC40%0D%0AMSwtMjI3LjAxIC03OS4yOSw0Ny4wMyAtMTY3LjEsODEuMTcgLTI2MC41Nyw5OS41NyBDIDE2MDku%0D%0AMzM5OSw0OS44MiAxNTAyLjY5OTksMCAxMzg0LjY3OTksMCBjIC0yMjYuNiwwIC00MTAuMzI4LDE4%0D%0AMy43MSAtNDEwLjMyOCw0MTAuMzEgMCwzMi4xNiAzLjYyOCw2My40OCAxMC42MjUsOTMuNTEgLTM0%0D%0AMS4wMTYsLTE3LjExIC02NDMuMzY4LC0xODAuNDcgLTg0NS43MzksLTQyOC43MiAtMzUuMzI0LDYw%0D%0ALjYgLTU1LjU1ODMsMTMxLjA5IC01NS41NTgzLDIwNi4yOSAwLDE0Mi4zNiA3Mi40MzczLDI2Ny45%0D%0ANSAxODIuNTQzMywzNDEuNTMgLTY3LjI2MiwtMi4xMyAtMTMwLjUzNSwtMjAuNTkgLTE4NS44NTE5%0D%0ALC01MS4zMiAtMC4wMzksMS43MSAtMC4wMzksMy40MiAtMC4wMzksNS4xNiAwLDE5OC44MDMgMTQx%0D%0ALjQ0MSwzNjQuNjM1IDMyOS4xNDUsNDAyLjM0MiAtMzQuNDI2LDkuMzc1IC03MC42NzYsMTQuMzk1%0D%0AIC0xMDguMDk4LDE0LjM5NSAtMjYuNDQxLDAgLTUyLjE0NSwtMi41NzggLTc3LjIwMywtNy4zNjQg%0D%0ANTIuMjE1LDE2My4wMDggMjAzLjc1LDI4MS42NDkgMzgzLjMwNCwyODQuOTQ2IC0xNDAuNDI5LDEx%0D%0AMC4wNjIgLTMxNy4zNTEsMTc1LjY2IC01MDkuNTk3MiwxNzUuNjYgLTMzLjEyMTEsMCAtNjUuNzg1%0D%0AMSwtMS45NDkgLTk3Ljg4MjgsLTUuNzM4IDE4MS41ODYsMTE2LjQxNzYgMzk3LjI3LDE4NC4zNTkg%0D%0ANjI4Ljk4OCwxODQuMzU5IDc1NC43MzIsMCAxMTY3LjQ2MiwtNjI1LjIzOCAxMTY3LjQ2MiwtMTE2%0D%0ANy40NyAwLC0xNy43OSAtMC40MSwtMzUuNDggLTEuMiwtNTMuMDggODAuMTc5OSwtNTcuODYgMTQ5%0D%0ALjczOTksLTEzMC4xMiAyMDQuNzQ5OSwtMjEyLjQxIgogICAgc3R5bGU9ImZpbGw6IzAwYWNlZCIv%0D%0APgo8L3N2Zz4K' height='16'> <b>{0}</b>: {1}",
|
||||
multiline = true,
|
||||
args = {"^4@" .. players[player].twt .. " (#" .. player .. ")", table.concat(args, " ")}
|
||||
})
|
||||
end, false)
|
||||
end
|
||||
|
||||
if config["pay"] then
|
||||
RegisterCommand("pay", function(source, args, rawCommand)
|
||||
local player = source
|
||||
local target = tonumber(args[1])
|
||||
local amount = tonumber(args[2])
|
||||
if target and amount ~= nil then
|
||||
NDCore.Functions.TransferBank(amount, player, target)
|
||||
else
|
||||
-- Wrong syntax, it's /pay <id> <amount>
|
||||
TriggerClientEvent('chatMessage', source, '^1ERROR: Wrong usage. /pay <id> <amount>')
|
||||
end
|
||||
|
||||
end, false)
|
||||
end
|
||||
|
||||
if config["give"] then
|
||||
RegisterCommand("give", function(source, args, rawCommand)
|
||||
local player = source
|
||||
local amount = tonumber(args[1])
|
||||
if amount ~= nil then
|
||||
NDCore.Functions.GiveCashToNearbyPlayer(player, amount)
|
||||
else
|
||||
-- Wrong syntax, it's /give <amount>
|
||||
TriggerClientEvent('chatMessage', source, '^1ERROR: Wrong usage. /give <amount>')
|
||||
end
|
||||
end, false)
|
||||
end
|
||||
|
||||
|
||||
function hasDarkWebPermission(player, players, args)
|
||||
for _, department in pairs(config["/darkweb"].canNotSee) do
|
||||
if players[player].job == department then
|
||||
TriggerClientEvent("chat:addMessage", player, {
|
||||
color = {255, 0, 0},
|
||||
args = {"^*Error", players[player].job .. " cannot access this command."}
|
||||
})
|
||||
return false
|
||||
end
|
||||
end
|
||||
for serverPlayer, playerInfo in pairs(players) do
|
||||
for _, department in pairs(config["/darkweb"].canNotSee) do
|
||||
if playerInfo.job == department then
|
||||
return false
|
||||
end
|
||||
end
|
||||
TriggerClientEvent("chat:addMessage", serverPlayer, {
|
||||
color = {0, 0, 0},
|
||||
args = {"^*Dark web | ^0Anonymous (#" .. player .. ")", table.concat(args, " ")}
|
||||
})
|
||||
end
|
||||
end
|
||||
|
||||
if config["/darkweb"].enabled then
|
||||
RegisterCommand("darkweb", function(source, args, rawCommand)
|
||||
local player = source
|
||||
local players = NDCore.Functions.GetPlayers()
|
||||
hasDarkWebPermission(player, players, args)
|
||||
end, false)
|
||||
end
|
||||
|
||||
if config["/911"].enabled then
|
||||
RegisterCommand("911", function(source, args, rawCommand)
|
||||
local player = source
|
||||
TriggerClientEvent("ND_Chat:911", -1, GetEntityCoords(GetPlayerPed(player)), table.concat(args, " "))
|
||||
end, false)
|
||||
end
|
||||
Reference in New Issue
Block a user