mirror of
https://github.com/lifestorm/wnsrc.git
synced 2025-12-18 22:23:46 +03:00
41 lines
1.1 KiB
Lua
41 lines
1.1 KiB
Lua
--[[
|
|
| 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 PLUGIN = PLUGIN
|
|
|
|
ENT.Type = "anim"
|
|
ENT.PrintName = "Terminal Citoyen"
|
|
ENT.Author = "Fruity"
|
|
ENT.Contact = "Willard Networks"
|
|
ENT.Purpose = "View datafile info and more via entity."
|
|
ENT.Instructions = "Appuyez sur E"
|
|
ENT.Category = "HL2 RP"
|
|
|
|
ENT.Spawnable = true
|
|
ENT.AdminOnly = true
|
|
ENT.PhysgunDisable = true
|
|
ENT.bNoPersist = true
|
|
ENT.model = "models/willardnetworks/props/civilterminal7.mdl"
|
|
|
|
ENT.Displays = {
|
|
[1] = {"EN ATTENTE DE CID", Color( 255, 255, 180 ), true},
|
|
[2] = {"VÉRIFICATION", Color(255, 200, 0)},
|
|
[3] = {"RÉCUPÉRATION INFO.", Color(0, 255, 0)},
|
|
[4] = {"RECHARGEMENT", Color(255, 200, 0)},
|
|
[5] = {"HORS-LIGNE", Color(255, 0, 0), true},
|
|
[6] = {"EN ATTENTE DE CID", Color( 255, 255, 180 )},
|
|
[7] = {"PREPARATION", Color(0, 255, 0)},
|
|
[8] = {"AUCUNE INFO.", Color(0, 255, 0)}
|
|
}
|
|
|
|
function ENT:SetupDataTables()
|
|
self:NetworkVar("Int", 0, "Display")
|
|
end |