info_remarkable
Class hierarchy |
---|
CInfoRemarkable |
inforemarkable.cpp
|
info_remarkable
is a point entity available in all Source games since Left 4 Dead.(also in Entropy : Zero 2) An object in the world such that characters seeing it will speak a TLK_REMARK concept. This entity can be placed with the Commentary Editor
concept:TLK_REMARK who:<talker name of the player that sighted info_remarkable> Subject:<contextsubject keyvalue> Distance:<distance to the player that sighted this info_remarkable>
When a rule match is found the info_remarkable is disabled (by default it's 1 match per round per info_remarkable controlled by cvar mentioned lower)
Keyvalues
- Subject context
(contextsubject)
<string> - Text to put in the SUBJECT context of the TLK_REMARK fired upon sighting this object.
Convars
Cvar/Command | Parameters or default value | Descriptor | Effect |
---|---|---|---|
rr_remarkable_maxdist (not in ) | 1500 | units | info_remarkables more distant than this from a player will not even be tested to see if a rule matches them. |
rr_remarkable_world_entities_replay_limit | 1 | count | TLK_REMARKs will be dispatched no more than this many times for any given info_remarkable per round |
Usage
Info_remarkable in Left 4 Dead 2 official maps can be found in the commentary text file located in the maps directory within pak01_dir.vpk. Left 4 Dead commentary files can be found in the maps folder of the Left 4 Dead installation for Left 4 Dead (No VPK extraction necessary).
So here is a mock scenario:
You have a rooftop on your campaign. You want the survivors to comment on the rooftop as we would hear in Valve's campaigns. Here's how we do it.
(If you know how to access the /talker scripts with GCFScape, skip to step 2.) First -- There are files that let you know what the survivors can say and what the 'Subject Context' is in these files: For Left 4 Dead - common\left 4 dead\left4dead\scripts\talker Once inside the folder structure, navigate to: \scripts\talker The files for both L4D and L4D2 are associated with the survivor's name. So for instance in L4D2, Ellis's available remarks are in mechanic.txt. Rochelle's are in producer.txt etc. Be aware that The Passing talker scripts are in the own VPK structure located in: common\left 4 dead 2\left4dead2_dlc1\pak01_dir.vpk and additional DLC scripts are located in their respective folders as they become available.
Ok. Now that we know where the text files are, lets check out one of the responses. Response PlayerRemarkc2m4_upbarnaMechanic { scene "scenes/Mechanic/WorldC4M4B04.vcd" //We can climb across the roofs! } Rule PlayerRemarkc2m4_upbarnaMechanic { criteria ConceptRemark IsMechanic Isc2m4_upbarna IsNotSaidc2m4_upbarna IsNotCoughing NotInCombat IsTalk IsTalkMechanic IsWorldTalkMechanic IsSubjectNear300 AutoIsNotScavenge AutoIsNotSurvival IsNotSrcGrp_C2M4_003 IsNotSpeakingWeight0 ApplyContext "Saidc2m4_upbarna:1:0,SrcGrp_C2M4_003:1:0" applycontexttoworld Response PlayerRemarkc2m4_upbarnaMechanic }
First you have the VCD scene file it refers to: scenes/Mechanic/WorldC4M4B04.vcd and what is actually spoken. Next, is the Rule and the criteria that need to be met for it to be "spoken". There are a bunch of "Is" and "IsNot" criteria shown there. I.E.: IsMechanic = Is Ellis One that is important is 'IsSubjectNear300'. This is the radius that the player must be within the info_remarkable for it to fire. At the end of this writeup, I made a change to the FGD for both games that will show a mock radius(similar to ambient_generic's radius for sound distance) so you can place it right where you want it to be. Many remarks are able to be used by different survivors, so even if you find it in say, mechanic.txt, another survivor may comment on it also. --SOME TALKER REMARKS HAVE THE CRITERIA 'ISMAP', THESE WILL NOT WORK BECAUSE THEY LOOK FOR A SPECIFIC MAP NAME -- SO KEEP AN EYE OUT FOR THEM-- Back to it now. To use this particular remark in our info_remarkable we would take c2m4_upbarna from the text and put it in our 'Subject Context' field of our info_remarkable. You can always tell what the remarks are by the rule. Rule PlayerRemarkc2m4_upbarnaMechanic Forget about Rule PlayerRemark and forget about the survivor name at the end. It will be the text between them. So in this case, c2m4_upbarna. Don't forget to remove the survivor name at the end.
We are basically done. When a survivor gets within 300 units of this info_remarkable, they will say, "We can climb across the roofs!". It is nice that Valve has the actual text spoken in the .txt files so you can Ctrl-F with whatever program you use and search for specific sayings. |
FGD Enhancement
To help with placement of the info_remarkables you can add radius visualisation in hammer by editing the info_remarkable fgd entry to the following
@PointClass base(Origin,Targetname) sphere() = info_remarkable : "An object in the world such that characters seeing it will speak a TLK_REMARK concept" [ contextsubject(string) : "Subject context" : "" : "Text to put in the SUBJECT context of the TLK_REMARK fired upon sighting this object." radius(string) : "Mock Radius for Origin Placement" : "500" : "Allows you to set a mock radius to determine origin placement on info_remarkables based off their associated Remark radius" ]