This article's documentation is for anything that uses the Source engine. Click here for more information.

Info snipertarget: Difference between revisions

From Valve Developer Community
Jump to navigation Jump to search
m (Changed parameters of {{this is a}} to comply with the updated version. This action was performed by a bot.)
(-added class hierarchy, cleanup)
Line 1: Line 1:
{{Underlinked|date=January 2024}}
<!-- When this page is updated to {{langsp}} or {{langsp}} instead of {{lang}}, please move {{this is a}} to the base page, as it is automatically translated. -->{{lang}}
{{CD|CSniperTarget|file1=1}}
{{this is a|point entity|name=info_snipertarget|sprite=info_target.png}} An {{ent|npc_sniper}} will take shots at this target, but only if told to, using inputs available to that entity. The <code>info_snipertarget</code> has parameters to alter the behavior while aiming and shooting.


<!-- When this page is updated to {{langsp}} or {{langsp}} instead of {{lang}}, please move {{this is a}} to the base page, as it is automatically translated. -->{{lang}}{{this is a|point entity|name=info_snipertarget|sprite=info_target.png}} An {{ent|npc_sniper}} will take shots at this target, but only if told to, using inputs available to that entity. The <code>info_snipertarget</code> has parameters to alter the behavior while aiming and shooting.


To make the sniper take shots at a moving target, you'll need to parent the <code>info_snipertarget</code> to that target, but this appears to be bugged.
To make the sniper take shots at a moving target, you'll need to parent the <code>info_snipertarget</code> to that target, but this appears to be bugged{{confirm}}.
{{confirm|This parenting issue was noted back in 2006 and may not apply anymore.}}
{{Confirm|This parenting issue was noted back in 2006 and may not apply anymore.}}
 


See {{ent|d1_town_05}} for multiple examples of its use.
See {{ent|d1_town_05}} for multiple examples of its use.


{{code class|CSniperTarget|proto_sniper.cpp}}
==Keyvalues==
{{KV Targetname}}
{{KV|Sweep to Speed|intn=speed|float|Seconds it takes for the sniper to align their shot onto the target.}}
{{KV|Group Name|intn=groupname|string|The name of a group which the <code>info_snipertarget</code> belongs to. Used as a parameter for <code>SweepGroupRandomly</code> inputs for <code>npc_sniper</code>.}}


==Flags==
==Flags==
Line 16: Line 21:
{{Fl|8|Resume if Interrupted|If the sniper is busy taking shots at other targets when he is ordered to take a shot at this target, he will just delay the shot at this target until he is done, instead of ignoring it ''completely''. This is unless he is ordered to take another shot in this time.}}
{{Fl|8|Resume if Interrupted|If the sniper is busy taking shots at other targets when he is ordered to take a shot at this target, he will just delay the shot at this target until he is done, instead of ignoring it ''completely''. This is unless he is ordered to take another shot in this time.}}
{{Fl|16|Snap to me|The sniper will set his sight on this target before turning the dot on. This means that the dot will immediately start fixed at this position.}}
{{Fl|16|Snap to me|The sniper will set his sight on this target before turning the dot on. This means that the dot will immediately start fixed at this position.}}
==Keyvalues==
{{KV|Sweep to Speed (speed)|float|Seconds it takes for the sniper to align their shot onto the target.}}
{{KV|Group Name (groupname)|string|The name of a group which the <code>info_snipertarget</code> belongs to. Used as a parameter for <code>SweepGroupRandomly</code> inputs for <code>npc_sniper</code>.}}
{{KV BaseEntity|base=1}}
==Inputs==
{{I BaseEntity|prel4d=1|base=1}}
==Outputs==
{{O BaseEntity}}


==See also==
==See also==
* {{ent|npc_sniper}}
*{{ent|npc_bullseye}}, a similar entity that can be used by other NPCs as well.
*{{ent|npc_bullseye}}, a similar entity that can be used by other NPCs as well.

Revision as of 04:40, 1 July 2024

English (en)Translate (Translate)
C++ Class hierarchy
CSniperTarget
CPointEntity
CBaseEntity
C++ proto_sniper.cpp
Info target.png

info_snipertarget is a point entity available in all Source Source games. An npc_sniper will take shots at this target, but only if told to, using inputs available to that entity. The info_snipertarget has parameters to alter the behavior while aiming and shooting.


To make the sniper take shots at a moving target, you'll need to parent the info_snipertarget to that target, but this appears to be bugged[confirm].

Confirm:This parenting issue was noted back in 2006 and may not apply anymore.


See d1_town_05 for multiple examples of its use.

Keyvalues

Name (targetname) <string>[ Edit ]
The name that other entities refer to this entity by, via Inputs/Outputs or other keyvalues (e.g. parentname or target).
Also displayed in Hammer's 2D views and Entity Report.
See also:  Generic Keyvalues, Inputs and Outputs available to all entities

Sweep to Speed (speed) <float>
Seconds it takes for the sniper to align their shot onto the target.
Group Name (groupname) <string>
The name of a group which the info_snipertarget belongs to. Used as a parameter for SweepGroupRandomly inputs for npc_sniper.

Flags

Shoot Me : [1]
Sniper will shoot at this target once satisfied with aim.
No Interruptions : [2]
All other targets will be ignored while sniper aims for this.
Snap Shot : [4] !FGD
: If a more important target comes into view as the sniper is aiming for this target, the sniper will fire at this target immediately, hoping the current aim was accurate enough to hit it, then focus on the higher-priority target. This shot will still count as interrupted, and the sniper will therefore resume to take another shot if the Resume if Interrupted flag is set for this target. This is considered obsolete from Episode 1 onward,[Why?] but can still be used.
Resume if Interrupted : [8]
If the sniper is busy taking shots at other targets when he is ordered to take a shot at this target, he will just delay the shot at this target until he is done, instead of ignoring it completely. This is unless he is ordered to take another shot in this time.
Snap to me : [16]
The sniper will set his sight on this target before turning the dot on. This means that the dot will immediately start fixed at this position.

See also