mirror of
https://github.com/lifestorm/wnsrc.git
synced 2025-12-17 13:53:45 +03:00
Upload
This commit is contained in:
192
gamemodes/darkrp/plugins/factionchats.lua
Normal file
192
gamemodes/darkrp/plugins/factionchats.lua
Normal file
@@ -0,0 +1,192 @@
|
||||
--[[
|
||||
| This file was obtained through the combined efforts
|
||||
| of Madbluntz & Plymouth Antiquarian Society.
|
||||
|
|
||||
| Credits: lifestorm, Gregory Wayne Rossel JR.,
|
||||
| Maloy, DrPepper10 @ RIP, Atle!
|
||||
|
|
||||
| Visit for more: https://plymouth.thetwilightzone.ru/
|
||||
--]]
|
||||
|
||||
|
||||
PLUGIN.name = "Faction Chats"
|
||||
PLUGIN.author = "Aspect™"
|
||||
PLUGIN.description = "Adds a OOC chats for specific factions."
|
||||
|
||||
ix.lang.AddTable("english", {
|
||||
dispOnlyChat = "Dispatch command chat, only other dispatchers, scanners and OTA will hear this.",
|
||||
cmbOnlyChat = "Private Combine chat. Only other Combine units will see this.",
|
||||
cpOnlyChat = "Private CP chat. Only other CP units will see this.",
|
||||
cwuOnlyChat = "Private CWU chat. Only other Civil Workers' Union members will see this."
|
||||
})
|
||||
|
||||
ix.lang.AddTable("spanish", {
|
||||
dispOnlyChat = "Chat de comando de Dispatch, solo otros dispatch, escáneres y OTA escucharán esto."
|
||||
})
|
||||
|
||||
do
|
||||
ix.chat.Register("cp_chat", {
|
||||
CanSay = function(self, speaker, text)
|
||||
if (!speaker:IsDispatch() and !speaker:IsCP() and !speaker:Team() == FACTION_SERVERADMIN) then
|
||||
speaker:NotifyLocalized("notAllowed")
|
||||
|
||||
return false
|
||||
else
|
||||
local delay = ix.config.Get("cpOocDelay", 10)
|
||||
|
||||
if (delay > 0 and speaker.ixLastCPOOC) then
|
||||
local lastOOC = CurTime() - speaker.ixLastCPOOC
|
||||
|
||||
if (lastOOC <= delay and !CAMI.PlayerHasAccess(speaker, "Helix - Bypass OOC Timer", nil)) then
|
||||
speaker:Notify("Vous devez attendre " .. delay - math.ceil(lastOOC) .. " secondes de plus avant de pouvoir réutiliser le OOC.")
|
||||
|
||||
return false
|
||||
end
|
||||
end
|
||||
|
||||
speaker.ixLastCPOOC = CurTime()
|
||||
end
|
||||
end,
|
||||
CanHear = function(self, speaker, listener)
|
||||
return listener:IsDispatch() or listener:IsCP() or listener:Team() == FACTION_SERVERADMIN or listener:Team() == FACTION_MCP
|
||||
end,
|
||||
OnChatAdd = function(self, speaker, text)
|
||||
if !speaker or speaker and !IsValid(speaker) then return end
|
||||
chat.AddText(Color(255, 200, 50, 255), "@cp ", team.GetColor(speaker:Team()), (speaker:Name() or "") .. " ", Color(150, 200, 150, 255), text)
|
||||
end
|
||||
})
|
||||
|
||||
ix.command.Add("CP", {
|
||||
description = "@cpOnlyChat",
|
||||
arguments = ix.type.text,
|
||||
OnRun = function(self, client, message)
|
||||
if (ix.config.Get("allowCpOOC", true) or client:IsAdmin()) then
|
||||
ix.chat.Send(client, "cp_chat", message)
|
||||
else
|
||||
client:Notify("Le chat PC OOC est actuellement désactivé !")
|
||||
end
|
||||
end,
|
||||
OnCheckAccess = function(self, client)
|
||||
return client:IsDispatch() or client:IsCP() or client:Team() == FACTION_SERVERADMIN or client:Team() == FACTION_MCP
|
||||
end
|
||||
})
|
||||
|
||||
ix.config.Add("allowCpOOC", true, "Si les PC peuvent ou non utiliser le chat OOC des CP.", nil, {
|
||||
category = "Chat"
|
||||
})
|
||||
|
||||
ix.config.Add("cpOocDelay", 10, "Le délai avant qu'un joueur puisse à nouveau utiliser le chat PC OOC, en secondes.", nil, {
|
||||
data = {min = 0, max = 60},
|
||||
category = "Chat"
|
||||
})
|
||||
|
||||
ix.chat.Register("cmb_chat", {
|
||||
CanSay = function(self, speaker, text)
|
||||
if (!speaker:IsCombine() and !speaker:Team() == FACTION_SERVERADMIN) then
|
||||
speaker:NotifyLocalized("notAllowed")
|
||||
|
||||
return false
|
||||
else
|
||||
local delay = ix.config.Get("combineOocDelay", 10)
|
||||
|
||||
if (delay > 0 and speaker.ixLastCombineOOC) then
|
||||
local lastOOC = CurTime() - speaker.ixLastCombineOOC
|
||||
|
||||
if (lastOOC <= delay and !CAMI.PlayerHasAccess(speaker, "Helix - Bypass OOC Timer", nil)) then
|
||||
speaker:Notify("Vous devez attendre " .. delay - math.ceil(lastOOC) .. " secondes de plus avant de pouvoir réutiliser le OOC.")
|
||||
|
||||
return false
|
||||
end
|
||||
end
|
||||
|
||||
speaker.ixLastCombineOOC = CurTime()
|
||||
end
|
||||
end,
|
||||
CanHear = function(self, speaker, listener)
|
||||
return listener:IsCombine() or listener:Team() == FACTION_SERVERADMIN
|
||||
end,
|
||||
OnChatAdd = function(self, speaker, text)
|
||||
chat.AddText(Color(255, 200, 50, 255), "@combine ", team.GetColor(speaker:Team()), (speaker and speaker.Name and speaker:Name() or "") .. " ", Color(150, 200, 150, 255), text)
|
||||
end
|
||||
})
|
||||
|
||||
ix.command.Add("CMB", {
|
||||
description = "@cmbOnlyChat",
|
||||
arguments = ix.type.text,
|
||||
OnRun = function(self, client, message)
|
||||
if (ix.config.Get("allowCombineOOC", true) or client:IsAdmin()) then
|
||||
ix.chat.Send(client, "cmb_chat", message)
|
||||
else
|
||||
client:Notify("Le chat OOC de Combine est actuellement désactivé !")
|
||||
end
|
||||
end,
|
||||
OnCheckAccess = function(self, client)
|
||||
return client:IsCombine() or client:Team() == FACTION_SERVERADMIN
|
||||
end
|
||||
})
|
||||
|
||||
ix.config.Add("allowCombineOOC", true, "Si peut ou non utiliser le chat OOC Combine.", nil, {
|
||||
category = "Chat"
|
||||
})
|
||||
|
||||
ix.config.Add("combineOocDelay", 10, "Le délai avant qu'un joueur puisse à nouveau utiliser le chat OOC de Combine, en secondes.", nil, {
|
||||
data = {min = 0, max = 60},
|
||||
category = "Chat"
|
||||
})
|
||||
|
||||
ix.chat.Register("cwu_chat", {
|
||||
CanSay = function(self, speaker, text)
|
||||
if (speaker:Team() != FACTION_WORKERS and !speaker:Team() == FACTION_SERVERADMIN) then
|
||||
speaker:NotifyLocalized("notAllowed")
|
||||
|
||||
return false
|
||||
else
|
||||
local delay = ix.config.Get("cwuOocDelay", 10)
|
||||
|
||||
if (delay > 0 and speaker.ixLastCWUOOC) then
|
||||
local lastOOC = CurTime() - speaker.ixLastCWUOOC
|
||||
|
||||
if (lastOOC <= delay and !CAMI.PlayerHasAccess(speaker, "Helix - Bypass OOC Timer", nil)) then
|
||||
speaker:Notify("Vous devez attendre " .. delay - math.ceil(lastOOC) .. " secondes de plus avant de pouvoir réutiliser le OOC.")
|
||||
|
||||
return false
|
||||
end
|
||||
end
|
||||
|
||||
speaker.ixLastCWUOOC = CurTime()
|
||||
end
|
||||
end,
|
||||
CanHear = function(self, speaker, listener)
|
||||
return listener:Team() == FACTION_WORKERS or listener:Team() == FACTION_SERVERADMIN
|
||||
end,
|
||||
OnChatAdd = function(self, speaker, text)
|
||||
if !speaker or speaker and !IsValid(speaker) then return end
|
||||
|
||||
chat.AddText(Color(255, 200, 50, 255), "@cwu ", team.GetColor(speaker:Team()), (speaker:Name() or "") .. " ", Color(150, 200, 150, 255), text)
|
||||
end
|
||||
})
|
||||
|
||||
ix.command.Add("CWU", {
|
||||
description = "@cwuOnlyChat",
|
||||
arguments = ix.type.text,
|
||||
OnRun = function(self, client, message)
|
||||
if (ix.config.Get("allowCwuOOC", true) or client:IsAdmin()) then
|
||||
ix.chat.Send(client, "cwu_chat", message)
|
||||
else
|
||||
client:Notify("Le chat OOC est actuellement désactivé !")
|
||||
end
|
||||
end,
|
||||
OnCheckAccess = function(self, client)
|
||||
return client:Team() == FACTION_WORKERS or client:Team() == FACTION_SERVERADMIN
|
||||
end
|
||||
})
|
||||
|
||||
ix.config.Add("allowCwuOOC", true, "Si oui ou non on peut utiliser le chat OOC de l'UTC.", nil, {
|
||||
category = "Chat"
|
||||
})
|
||||
|
||||
ix.config.Add("cwuOocDelay", 10, "Le délai avant qu'un joueur puisse à nouveau utiliser le chat OOC de l'UTC, en secondes.", nil, {
|
||||
data = {min = 0, max = 60},
|
||||
category = "Chat"
|
||||
})
|
||||
end
|
||||
Reference in New Issue
Block a user