Files
wnsrc/gamemodes/darkrp/plugins/extendedchardesc/sh_plugin.lua
lifestorm df294d03aa Upload
2024-08-04 23:54:45 +03:00

54 lines
1.5 KiB
Lua
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

--[[
| 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/
--]]
local ix = ix
local string = string
local tostring = tostring
PLUGIN.name = "Extended Character Description"
PLUGIN.author = "AleXXX_007"
PLUGIN.description = "Adds new panel for longer character descriptions."
ix.util.Include("cl_hooks.lua")
ix.util.Include("sh_commands.lua")
ix.util.Include("sv_hooks.lua")
ix.config.Add("maxDescriptionLength", 512, "Maximum amount of characters in the description.", nil, {
data = {min = 64, max = 2048},
category = "characters"
})
ix.lang.AddTable("english", {
descMaxLen = "ıklamanız %d karakterden fazla olamaz!"
})
ix.lang.AddTable("spanish", {
descMaxLen = "¡Tu descripción no puede tener más de %d carácteres!"
})
do
ix.char.vars.description.OnValidate = function(self, value, payload)
value = string.Trim((tostring(value):gsub("\r\n", ""):gsub("\n", "")))
local minLength = ix.config.Get("minDescriptionLength", 16)
local maxLength = ix.config.Get("maxDescriptionLength", 512)
if (value:utf8len() < minLength) then
return false, "descMinLen", minLength
elseif (value:utf8len() > maxLength) then
return false, "descMaxLen", maxLength
elseif (!value:find("%S")) then
return false, "invalid", "description"
end
return value
end
end