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

45 lines
1.1 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 PLUGIN = PLUGIN
PLUGIN.name = "Cigarettes"
PLUGIN.author = "Fruity"
PLUGIN.description = "Adds non PAC3 cigarettes."
ix.util.Include("sv_plugin.lua")
PLUGIN.allowedModels = {
[1] = "models/willardnetworks/citizens/",
[2] = "models/willardnetworks/vortigaunt.mdl",
[3] = "models/wn7new/metropolice/",
[4] = "models/wn7new/metropolice_c8/",
[5] = "models/thomask_110/"
}
if (CLIENT) then
ix.option.Add("firstPersonCigarette", ix.type.bool, true, {
category = "Cigarettes"
})
end
ix.lang.AddTable("english", {
optFirstPersonCigarette = "Birincil Şahıs'ta sigarayı göster",
optdFirstPersonCigarette = "Birincil Şahıs'ta sigara gözükmeli mi?."
})
ix.lang.AddTable("spanish", {
optFirstPersonCigarette = "Mostrar el Cigarro en Primera Persona",
optdFirstPersonCigarette = "Alterna si quieres que el cigarro se muestre en primera persona o no."
})