Merge pull request #49 from BClark09/master
Added new entity info_custommessage and updated FGD
This commit is contained in:
commit
7279bb82f9
2 changed files with 95 additions and 11 deletions
|
@ -0,0 +1,69 @@
|
|||
ENT.Type = "point"
|
||||
|
||||
function ENT:Initialize()
|
||||
if not self.Initialized then -- Why is KeyValue() called before Initialize()?
|
||||
self.PartStrings = {}
|
||||
self.Initialized = true
|
||||
self.DisplayTarget = self.DisplayTarget or ""
|
||||
self.ZSMessageMode = self.ZSMessageMode or 0
|
||||
end
|
||||
end
|
||||
|
||||
function ENT:Think()
|
||||
end
|
||||
|
||||
function ENT:DisplayStrings()
|
||||
local FullString = ""
|
||||
for k,v in pairs(self.PartStrings) do
|
||||
FullString = FullString .. v
|
||||
end
|
||||
for k,v in pairs(ents.FindByName(self.DisplayTarget)) do
|
||||
local EntityClass = v:GetClass()
|
||||
if EntityClass == "game_text" then
|
||||
v:Input("AddOutput", self, self, "message "..FullString)
|
||||
v:Input("Display", self, self, FullString)
|
||||
elseif EntityClass == "point_zsmessage" then
|
||||
if self.ZSMessageMode == "1" then
|
||||
v:Input("sethumanhudmessage", self, self, FullString)
|
||||
elseif self.ZSMessageMode == "2" then
|
||||
v:Input("setzombiehudmessage", self, self, FullString)
|
||||
else
|
||||
v:Input("message", self, self, FullString)
|
||||
end
|
||||
elseif EntityClass == "point_worldhint" then
|
||||
v:Input("sethint", self, self, FullString)
|
||||
end
|
||||
end
|
||||
self:Input("OnDisplayed", self, self, FullString)
|
||||
end
|
||||
|
||||
function ENT:AcceptInput(name, activator, caller, args)
|
||||
name = string.lower(name)
|
||||
if string.sub(name, 1, 2) == "on" then
|
||||
self:FireOutput(name, activator, caller, args)
|
||||
elseif string.sub(name, 1, 9) == "setstring" then
|
||||
self:KeyValue(string.sub(name, 4,11),args)
|
||||
elseif name == "displaystrings" then
|
||||
self:DisplayStrings()
|
||||
end
|
||||
end
|
||||
|
||||
function ENT:KeyValue(key, value)
|
||||
key = string.lower(key)
|
||||
if string.sub(key, 1, 6) == "string" then
|
||||
if not self.Initialized then
|
||||
self.PartStrings = {}
|
||||
self.Initialized = true
|
||||
end
|
||||
local part = tonumber(string.sub(key,7,8))
|
||||
if part ~= nil then
|
||||
self.PartStrings[part] = value
|
||||
end
|
||||
elseif key == "displayentity" then
|
||||
self.DisplayTarget = value
|
||||
elseif key == "zsmessagemode" then
|
||||
self.ZSMessageMode = value
|
||||
elseif string.sub(key, 1, 2) == "on" then
|
||||
self:AddOnOutput(key, value)
|
||||
end
|
||||
end
|
|
@ -1,5 +1,5 @@
|
|||
//////////////////////////////////////////////////////////////////////////////////
|
||||
// NoXiousNet Zombie Survival FGD - Last Edit by Benjy (10th November 2014) //
|
||||
// NoXiousNet Zombie Survival FGD - Last Edit by Benjy (30th November 2014) //
|
||||
// If there are any bugs with this file, or any additions that need to be made //
|
||||
// make a post at: http://www.noxiousnet.com/forums/index.php?topic=14910 //
|
||||
//////////////////////////////////////////////////////////////////////////////////
|
||||
|
@ -555,21 +555,34 @@
|
|||
input disable(void) : "Disables pants mode."
|
||||
]
|
||||
|
||||
@PointClass base(Targetname) = info_gamehud : "ZS: Allows you to control a custom message that appears on the wave HUD for each team. Can be used to display objectives or other information."
|
||||
@PointClass base(Targetname) = info_custommessage : "ZS: Allows several substrings to be concatenated together to form one message, attaches to messaging entities like game_text, point_worldhint and point_zsmessage"
|
||||
[
|
||||
// Keys
|
||||
message(string) : "Message" : " " : "The hint to display."
|
||||
viewer(choices) : "Seen By" : 0 : "The team that can view us." =
|
||||
displayentity(target_destination) : "Target Messaging Entity" : "" : "The entity used to display the message, can be a targetname of a class game_text, point_worldhint or point_zsmessage"
|
||||
zsmessagemode(choices) : "Point_zsmessage Method" : 0 : "If using a point_zsmessage, select the method of display with this key" =
|
||||
[
|
||||
"-1" : "Disabled"
|
||||
"0" : "Everyone"
|
||||
"3" : "Zombies"
|
||||
"4" : "Humans"
|
||||
"0" : "Centred HUD Message"
|
||||
"1" : "Corner Human HUD Message"
|
||||
"2" : "Corner Zombie HUD Message"
|
||||
]
|
||||
string01(string) : "String 01" : "" : "Part 01 of the full string, there can be up to 99 of these."
|
||||
string02(string) : "String 02" : "" : "Part 02 of the full string, there can be up to 99 of these."
|
||||
string03(string) : "String 03" : "" : "Part 03 of the full string, there can be up to 99 of these."
|
||||
string04(string) : "String 04" : "" : "Part 04 of the full string, there can be up to 99 of these."
|
||||
string05(string) : "String 05" : "" : "Part 05 of the full string, there can be up to 99 of these."
|
||||
string06(string) : "String 06" : "" : "Part 06 of the full string, there can be up to 99 of these."
|
||||
|
||||
// Inputs
|
||||
input setmessage(string) : "Sets the hint to display."
|
||||
input setviewer(integer) : "Sets the team that can view us. Use 0 for everyone, -1 for no one (inactive), 3 for zombie, and 4 for human."
|
||||
input displaystrings(string) : "Concatenates and displays the full string using the attached entity"
|
||||
input setstring01(string) : "Sets part 01 of the full string, there can be up to 99 of these."
|
||||
input setstring02(string) : "Sets part 02 of the full string, there can be up to 99 of these."
|
||||
input setstring03(string) : "Sets part 03 of the full string, there can be up to 99 of these."
|
||||
input setstring04(string) : "Sets part 04 of the full string, there can be up to 99 of these."
|
||||
input setstring05(string) : "Sets part 05 of the full string, there can be up to 99 of these."
|
||||
input setstring06(string) : "Sets part 06 of the full string, there can be up to 99 of these."
|
||||
|
||||
// Outputs
|
||||
output OnDisplayed(void) : "Called when the message has successfully displayed."
|
||||
]
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////////////
|
||||
|
@ -687,6 +700,9 @@
|
|||
@PointClass base(Weapon) studio("models/props_interiors/Furniture_Lamp01a.mdl") = weapon_zs_lamp :
|
||||
"Lamp them one." []
|
||||
|
||||
@PointClass base(Weapon) studio("models/props_lab/cleaver.mdl") = weapon_zs_butcherknife :
|
||||
"A large cleaver, for hacking and slashing body parts." []
|
||||
|
||||
@PointClass base(Weapon) studio("models/weapons/w_sledgehammer.mdl") = weapon_zs_sledgehammer :
|
||||
"The most powerful melee weapon in the game. However, it has a very low firing rate and it greatly slows down the walking speed of the player. It is useful for defensive purposes, or for killing weakened zombies." []
|
||||
|
||||
|
@ -776,7 +792,6 @@
|
|||
"Ammo Type: SMG.\n"+
|
||||
"It can unleash an incredible amount of punishment to any zombie in seconds at the cost of the ammunition going quickly. " []
|
||||
|
||||
|
||||
@PointClass base(Weapon) studio("models/weapons/w_snip_awp.mdl") = weapon_zs_hunter :
|
||||
"Ammo Type: Rifle.\n"+
|
||||
"A hunting rifle that deals high amount of damage at the cost of slow reload speed. " []
|
||||
|
|
Loading…
Reference in a new issue