Difference between revisions of "HPL2/AMFP/NewEntities"
Line 77: | Line 77: | ||
|- | |- | ||
| EnabledSound || File (.snt) || || Sound played when enemy is enabled | | EnabledSound || File (.snt) || || Sound played when enemy is enabled | ||
− | |||
− | |||
|- | |- | ||
| GroggyDamageCount || Float || 15 || The accumulated amount of damage the enemy can take before getting groggy by the hit.<br>The enemy will flinch after taking this amount of damage. | | GroggyDamageCount || Float || 15 || The accumulated amount of damage the enemy can take before getting groggy by the hit.<br>The enemy will flinch after taking this amount of damage. | ||
Line 98: | Line 96: | ||
| AlertRunTowardsCheckDistance || Float || 5 || The distance where the move toward enemy check starts | | AlertRunTowardsCheckDistance || Float || 5 || The distance where the move toward enemy check starts | ||
|- | |- | ||
− | | IsTesla || Bool || false || If this | + | | IsTesla || Bool || false || If this is the tesla pig |
+ | |- | ||
+ | | ChaseSound || File (.snt) || || Played when the pig is chasing.<br>Incorrectly defined as a string in EntityTypes.cfg. | ||
|- | |- | ||
|} | |} | ||
Line 108: | Line 108: | ||
! Name !! Type !! Default !! Description | ! Name !! Type !! Default !! Description | ||
|- | |- | ||
− | | ThreatenOnAlert || Bool || false || If the | + | | ThreatenOnAlert || Bool || false || If the pig should stand still and threaten instead of walking towards player when in alert mode. |
|- | |- | ||
− | | FleeFromPlayer || Bool || false || | + | | FleeFromPlayer || Bool || false || The pig will flee instead of hunting (threaten if ThreatenOnAlert). Disabled if far enough away. Will attack if cornered.<br>Running to the furthest PathNode seems to be the main behavior.<br>'''If the map has no PathNodes, the game will crash when the enemy notices the player!''' |
|- | |- | ||
− | | AutoDisableAfterFlee || Bool || false || If | + | | AutoDisableAfterFlee || Bool || false || If pig should be disabled after having fled (if possible)<br>Must not be seen by the player and must be more than 15 meters away from them. |
|- | |- | ||
− | | | + | | LanternSensitivity || Float || 1 || A modifier for how quickly the pig reacts to being shined on by the lantern. |
|- | |- | ||
− | | | + | | IdleBehavior || String || || The behavior used when there are no patrol nodes left to walk.<br>Can be "None", "Stalk", or "Track". |
|- | |- | ||
− | | | + | | PlayActivateSound || Bool || true || If the enemy can play its EnabledSound. |
|- | |- | ||
− | | | + | | AllowZeroNodeWaitTimes || Bool || false || If set to true, path node wait times with value 0 actually mean no waiting<br>Normally, specifying a wait time of 0 in <code>AddEnemyPatrolNode</code> results in a wait time of 1-3 seconds. |
|- | |- | ||
− | | | + | | PatrolMoveSpeed || String || Walk || Whether this pig walks or runs along its patrol<br>Can be "Walk" or "Run". |
|- | |- | ||
− | | | + | | DamageMul || Float || 1 || Multiplier for the enemy's attack damage. |
|- | |- | ||
− | | | + | | RunSpeedMul || Float || 1 || Multiplier for the enemy's run speed. |
|- | |- | ||
− | | HuntPauseTimeMul || Float || 1 || Multiplier for the | + | | HuntPauseTimeMul || Float || 1 || Multiplier for the wait time between attacks. |
|- | |- | ||
|} | |} |
Revision as of 23:10, 14 January 2025
AMFP features a few new entity types.
PhoneBox
The entity which executes phone calls. There's only one such asset in the game, and the entity file doesn't have any type vars (User Defined Variables). However, in the Level Editor, it has multiple instance vars.
Name | Type | Default | Description |
---|---|---|---|
VoiceFile1 | File (.ogg) | The sound file to play. The file has to be located in the sounds folder or one of its subfolders. | |
TextEntry1 | String | First subtitle lang entry. Category must be 'Voice'. | |
Delay1 | Float | 0 | Time until the first subtitle is displayed. |
TextEntry2 | String | Second subtitle lang entry. Category must be 'Voice'. | |
Delay2 | Float | 0 | Time until the second subtitle is displayed. |
TextEntry3 | String | Third subtitle lang entry. Category must be 'Voice'. | |
Delay3 | Float | 0 | Time until the third subtitle is displayed. |
TextEntry4 | String | Fourth subtitle lang entry. Category must be 'Voice'. | |
Delay4 | Float | 0 | Time until the fourth subtitle is displayed. |
TextEntry5 | String | Fifth subtitle lang entry. Category must be 'Voice'. | |
Delay5 | Float | 0 | Time until the fifth subtitle is displayed. |
TextEntry6 | String | Sixth subtitle lang entry. Category must be 'Voice'. | |
Delay6 | Float | 0 | Time until the sixth subtitle is displayed. |
TextEntry7 | String | Seventh subtitle lang entry. Category must be 'Voice'. | |
Delay7 | Float | 0 | Time until the seventh subtitle is displayed. |
Not all 7 entries must be used, but there can't be more than that in a single phonecall.
The PhoneBox entity has three dedicated functions for it:
void StartPhoneRinging(string& asName);
void StopPhoneRinging(string& asName);
void HangUpPhone(string& asName);
- asName - The phone box entity to use.
The PhoneBox won't ring until the StartPhoneRinging
function is called. StopPhoneRinging
can be used if the player leaves an area without picking up the phone, or takes too long.
When StartPhoneRinging
is used, the PhoneBox will start ringing (the sound is only audible at a quite short distance, and a bell animation will play). A unique crosshair when looking at the PhoneBox. Interacting with it will play a switch animation as well as the voice file, and display all the defined subtitles at specified intervals. After the voice file finishes playing, another switch animation will play and the glow will disappear (if it was used).
Keep in mind that the green light which appears on the PhoneBox is not a part of the entity; it's a Lamp entity which needs to be enabled by scripting.
Enemy_ManPig
This enemy type has multiple new settings in the LevelEditor.
Name | Type | Default | Description |
---|---|---|---|
NoticeSound | File (.snt) | Sound played when enemy notices that player is nearby | |
GiveUpNoticeSound | File (.snt) | Sound played when enemy gives up investigation (after a notice) | |
EnabledSound | File (.snt) | Sound played when enemy is enabled | |
GroggyDamageCount | Float | 15 | The accumulated amount of damage the enemy can take before getting groggy by the hit. The enemy will flinch after taking this amount of damage. |
AlertToHuntDistance | Float | 10 | If range is above this then enemy can go from alert to hunt |
AlertToInstantHuntDistance | Float | 3.5 | If range is below this, enemy geos instantly to hunt. |
HuntPauseMinTime | Float | 2 | Min time enemy spends not attacking after an attack. |
HuntPauseMaxTime | Float | 4.5 | Max time enemy spends not attacking after an attack. |
IncreaseAlertSpeedDistance | Float | 6 | Distance at which the alert move speed increases. |
IncreasedAlertSpeedMul | Float | 1.5 | The amount that move speed is multiplied by when alert. |
AlertRunTowardsToHuntLimit | Float | 30 | The accumulated limit value when alert goes to hunt because of player running towards enemy. |
AlertRunTowardsCheckDistance | Float | 5 | The distance where the move toward enemy check starts |
IsTesla | Bool | false | If this is the tesla pig |
ChaseSound | File (.snt) | Played when the pig is chasing. Incorrectly defined as a string in EntityTypes.cfg. |
Name | Type | Default | Description |
---|---|---|---|
AutoRemoveAtPathEnd | Bool | true | If enemy should be removed when it reaches the end of the path. Must not be seen by the player and must be more than 10 meters away from them. |
IsOccluder | Bool | false | If objects behind should be culled. |
AutoReverseAtPathEnd | Bool | false | No effect. Formerly made the enemy return to its first patrol node if it didn't auto-disable on reaching the end of its path. Not defined in EntityTypes.cfg. |
AutoRemoveMinPlayerDistance | Float | 10 | No effect. Formerly the minimum distance from the player that the enemy needs to be in order to be auto-removed at the end of its path. |
CallbackFunc | String | A callback function used for a number of events. Syntax: void Func(string &in asEntityName, string &in asType) . asType can be OnDeath or OnAutoDisabled
| |
DisableTriggers | Bool | false | If true, the enemy does not react to any trigger such as seeing or hearing the player. |
Hallucination | Bool | false | If true, the enemy will disappear when close enough to the player. Uses enemy_hallucination_disappear.snt, which isn't in the game files but can be added. The hallucination effect now consists of some organic particles instead of the TDD dust particles. |
HallucinationEndDist | Float | 3 | The distance at which the hallucination disappears |
Blind | Bool | false | If true, the enemy will not react to seeing the player. |
Deaf | Bool | false | If true, the enemy will not react to hearing the player. |
Invisible | Bool | false | No effect. Formerly made the enemy invisible. Not defined in EntityTypes.cfg. |
Pose | String | Biped | The starting pose of the enemy. Can be "Biped" or "Quadruped". |
Name | Type | Default | Description |
---|---|---|---|
ThreatenOnAlert | Bool | false | If the pig should stand still and threaten instead of walking towards player when in alert mode. |
FleeFromPlayer | Bool | false | The pig will flee instead of hunting (threaten if ThreatenOnAlert). Disabled if far enough away. Will attack if cornered. Running to the furthest PathNode seems to be the main behavior. If the map has no PathNodes, the game will crash when the enemy notices the player! |
AutoDisableAfterFlee | Bool | false | If pig should be disabled after having fled (if possible) Must not be seen by the player and must be more than 15 meters away from them. |
LanternSensitivity | Float | 1 | A modifier for how quickly the pig reacts to being shined on by the lantern. |
IdleBehavior | String | The behavior used when there are no patrol nodes left to walk. Can be "None", "Stalk", or "Track". | |
PlayActivateSound | Bool | true | If the enemy can play its EnabledSound. |
AllowZeroNodeWaitTimes | Bool | false | If set to true, path node wait times with value 0 actually mean no waiting Normally, specifying a wait time of 0 in AddEnemyPatrolNode results in a wait time of 1-3 seconds.
|
PatrolMoveSpeed | String | Walk | Whether this pig walks or runs along its patrol Can be "Walk" or "Run". |
DamageMul | Float | 1 | Multiplier for the enemy's attack damage. |
RunSpeedMul | Float | 1 | Multiplier for the enemy's run speed. |
HuntPauseTimeMul | Float | 1 | Multiplier for the wait time between attacks. |
Enemy_Child
An enemy variation used for acting out scenes. This "enemy" doesn't seem to respond to any player input, asides from proximity.
This entity incorrectly has a few non-functional Enemy_ManPig instance vars defined for it in EntityTypes.cfg.
Name | Type | Default | Description |
---|---|---|---|
AutoRemoveAtPathEnd | Bool | true | If enemy should be removed when it reaches the end of the path. Must not be seen by the player and must be more than 10 meters away from them. |
IsOccluder | Bool | false | If objects behind should be culled. |
AutoReverseAtPathEnd | Bool | false | No effect. Formerly made the enemy return to its first patrol node if it didn't auto-disable on reaching the end of its path. Not defined in EntityTypes.cfg. |
AutoRemoveMinPlayerDistance | Float | 10 | No effect. Formerly the minimum distance from the player that the enemy needs to be in order to be auto-removed at the end of its path. |
CallbackFunc | String | A callback function used for a number of events. Syntax: void Func(string &in asEntityName, string &in asType) . asType can be OnDeath or OnAutoDisabled
| |
DisableTriggers | Bool | false | If true, the enemy does not react to any trigger such as seeing or hearing the player. |
Hallucination | Bool | false | If true, the enemy will disappear when close enough to the player. Uses enemy_hallucination_disappear.snt, which isn't in the game files but can be added. The hallucination effect now consists of some organic particles instead of the TDD dust particles. |
HallucinationEndDist | Float | 3 | The distance at which the hallucination disappears |
Blind | Bool | false | If true, the enemy will not react to seeing the player. |
Deaf | Bool | false | If true, the enemy will not react to hearing the player. |
Invisible | Bool | false | No effect. Formerly made the enemy invisible. Not defined in EntityTypes.cfg. |
Pose | String | Biped | The starting pose of the enemy. Can be "Biped" or "Quadruped". |
Name | Type | Default | Description |
---|---|---|---|
PatrolMoveSpeed | String | Walk | The movement speed type to use when patrolling. Can be "Walk" or "Run". |
AnimatedProp
This type doesn't seem to have any particular use. It is unclear why it was added, as.dae with animations will play automatically anyway, and PlayPropAnimation()
isn't used with AnimatedProps.
Name | Type | Default | Description |
---|---|---|---|
CastShadows | Bool | true | If entity casts shadows. |
IsAffectedByDecal | Bool | true | If decals can be created on entity. |
VoiceFlashbackTrigger
It's the type of all entities from entities/voice_triggers. It seems that these entities weren't used in any of the maps, which makes this entity type unrestorable.
