Difference between revisions of "HPL2/AMFP/NewEntities"
m (→Enemy_Child) |
m |
||
Line 87: | Line 87: | ||
| AlertToInstantHuntDistance || Float || 3.5 || If range is below this, enemy geos instantly to hunt. | | AlertToInstantHuntDistance || Float || 3.5 || If range is below this, enemy geos instantly to hunt. | ||
|- | |- | ||
− | | HuntPauseMinTime || Float || 2 | + | | 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. | | HuntPauseMaxTime || Float || 4.5 || Max time enemy spends not attacking after an attack. | ||
Line 121: | Line 121: | ||
| AllowZeroNodeWaitTimes || Bool || false || If wait times when patrolling a PathNode are allowed to be 0. Normally, specifying a wait time of 0 in <code>AddEnemyPatrolNode</code> results in a wait time of 1-3 seconds. | | AllowZeroNodeWaitTimes || Bool || false || If wait times when patrolling a PathNode are allowed to be 0. Normally, specifying a wait time of 0 in <code>AddEnemyPatrolNode</code> results in a wait time of 1-3 seconds. | ||
|- | |- | ||
− | | DamageMul || Float || 1 | + | | DamageMul || Float || 1 || Multiplier for attack damage. |
|- | |- | ||
− | | RunSpeedMul || Float || 1 | + | | RunSpeedMul || Float || 1 || Multiplier for run speed. |
|- | |- | ||
| PlayActivateSound || Bool || true || If the enemy can play its EnabledSound. | | PlayActivateSound || Bool || true || If the enemy can play its EnabledSound. | ||
|- | |- | ||
− | | LanternSensitivity || Float || 1 | + | | LanternSensitivity || Float || 1 || Muliplier for how quickly the enemy reacts to lantern light. |
|- | |- | ||
− | | HuntPauseTimeMul || Float || 1 | + | | HuntPauseTimeMul || Float || 1 || Multiplier for the pause time between attacks. |
|- | |- | ||
|} | |} |
Revision as of 00:53, 14 January 2025
Contents
New Entity Types
MFP 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 two dedicated functions for it:
void StartPhoneRinging(string &in asPhonebox);
void StopPhoneRinging(string &in asPhonebox);
- asPhonebox - 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 | |
ChaseSound | File (.snt) | Sound played when chasing the player | |
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 manpig is a tesla pig. |
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 enemy plays an additional animation before chasing/fleeing from the player. |
FleeFromPlayer | Bool | false | If the enemy will run away when it notices the player. Running to the furthest PathNode seems to be the main behavior. The enemy will still attack if the player comes too close or encounters the monster after it fled. If the map has no PathNodes, the game will crash when the enemy notices the player! |
AutoDisableAfterFlee | Bool | false | If the enemy should be removed when it stops fleeing. Must not be seen by the player and must be more than 15 meters away from them. |
IdleBehavior | String | The enemy's behavior when idle. Can be "None", "Stalk", or "Track". | |
PatrolMoveSpeed | String | Walk | The movement speed type to use when patrolling. Can be "Walk" or "Run". |
AllowZeroNodeWaitTimes | Bool | false | If wait times when patrolling a PathNode are allowed to be 0. Normally, specifying a wait time of 0 in AddEnemyPatrolNode results in a wait time of 1-3 seconds.
|
DamageMul | Float | 1 | Multiplier for attack damage. |
RunSpeedMul | Float | 1 | Multiplier for run speed. |
PlayActivateSound | Bool | true | If the enemy can play its EnabledSound. |
LanternSensitivity | Float | 1 | Muliplier for how quickly the enemy reacts to lantern light. |
HuntPauseTimeMul | Float | 1 | Multiplier for the pause 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.
