mirror of
https://github.com/lifestorm/wnsrc.git
synced 2025-12-17 21:53:46 +03:00
Upload
This commit is contained in:
24
gamemodes/darkrp/schema/items/sh_broadcasting_device.lua
Normal file
24
gamemodes/darkrp/schema/items/sh_broadcasting_device.lua
Normal file
@@ -0,0 +1,24 @@
|
||||
--[[
|
||||
| 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/
|
||||
--]]
|
||||
|
||||
|
||||
ITEM.name = "Dispositif de diffusion"
|
||||
ITEM.model = Model("models/props_lab/reciever01b.mdl")
|
||||
ITEM.description = "Un dispositif utilisé pour diffuser des messages à la Cité."
|
||||
ITEM.KeepOnDeath = true
|
||||
ITEM.category = "Combine"
|
||||
ITEM.colorAppendix = {["red"] = "Vous devez obtenir l'autorisation du staff pour porter cet objet, ne le laissez pas tomber et ne le remettez pas aux autres joueurs."}
|
||||
|
||||
if (CLIENT) then
|
||||
function ITEM:PaintOver(item, w, h)
|
||||
surface.SetDrawColor(255, 0, 0, 100)
|
||||
surface.DrawOutlinedRect(1, 1, w - 2, h - 2)
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user