Entity keyvalues

Entity keyvalues #

Entity keyvalues are pairs of key and value strings that are passed to the entity upon its initialization. They also can be set via trigger_changevalue during the game.

Entvars #

Entvars are the base keyvalues that exist in all entities. They’re available for reading in trigger_condition and for custom operations in trigger_changevalue, although changing some of them is not recommended.

Some entvars have special meaning in the engine, and changing them arbitrarily can lead to unexpected or even catastrophic consequences.

List of entvars #

Key nameValue typeDescription
classnamestringClassname of the entity. Must not be changed
globalnamestringGlobal name used for level transitions. Must not be changed
origin3D-vectorPosition of the entity in the world coordinates
velocity3D-vectorDirection and speed of the entity
movedir3D-vectorMovement direction used by trigger_push or func_rotating.
angles3D-vectorAngles of the entity. (pitch, yaw, roll)
avelocity3D-vectorAngular velocity. (rotational speed, degrees per second)
punchangle3D-vectorAuto-decaying view angle adjustment. (e.g. when an alien grunt punches you)
v_angle3D-vectorViewing angle. (player only)
endpos3D-vectorPre-calculated end position of parametric projectiles (not used yet)
startpos3D-vectorStart position of parametric projectiles (not used yet)
impacttimetime-
starttimetime-
idealpitchfloat-
pitch_speedfloat-
ideal_yawfloatThe angle Yaw the monster wants to turn to
yaw_speedfloatMonster’s Yaw turn speed
modelindexintegerIndex of the entity model. Must not be changed
modelstringName of the entity model. Must not be changed
viewmodelstringPlayer’s viewmodel. (what you see in first person). Must not be changed
weaponmodelstringPlayer’s weaponmodel. (what other players see when they look at you). Must not be changed
absmin3D-vectorAbsolute mins; coordinates of the lower left back corner of the entity hull in world space.
absmax3D-vectorAbsolute maxs; coordinates of the upper right front corner of the entity hull in world space.
mins3D-vectorEntity hull mins; coordinates of the lower left back corner of the entity hull.
maxs3D-vectorEntity hull maxs; coordinates of the upper right front corner of the entity hull.
size3D-vectorEntity hull size.
ltimetimeLocal time of the entity. Used by brush entities.
nextthinktimeTime-value of the entity, telling the engine when to call the “think”-function of the entity next.
movetypeintegerMovetype-value, telling engine how this entity should behave physically.
solidintegerSolid-value, telling engine how OTHER entities should behave physically when they touch this entity. (see solid value list below)
skinintegerSkin of this entity. (texture selection for studiomodels)
bodyintegerBody of this entity. (sub-model selection for studiomodels)
effectsintegerEffects-flags, telling the engine how to render this entity.
gravityfloatFraction of “normal” gravity affecting the entity
frictionfloatUsed by engine when movetype is MOVETYPE_BOUNCE (inverse elasticity); used by several entities for friction. (e.g. func_pushable)
light_levelinteger-
sequenceintegerThe index of the current animation sequence
gaitsequenceintegerMovement animation sequence for player. (0 for none)
framefloatPercentage of playback position in animation sequences. (0 - 255)
animtimetimeWorld time when frame was set.
frameratefloatAnimation playback rate. Normal framerate for sprites is 10.0, and for models it’s 1.0.
scalefloatSprite or model rendering scale
rendermodeintegerRender-mode (Normal, Texture, Solid, etc.)
renderamtfloatRender-amount (0-255)
rendercolor3D-vectorRender-color for color render-mode. Red, Green and Blue components
renderfxintegerRender-effect
healthfloatCurrent entity health. Note: player must have integer value as health to avoid bugs
fragsfloatPlayer’s frags in multiplayer. Used by some entities as a generic float storage
weaponsintegerBit-mask for available weapons of NPCs
takedamageintegerTakedamage-value, telling the engine if and how this entity can take damage.
deadflagintegerDeadflag-value, telling the engine what the life/death status of the entity is.
view_ofs3D-vectorView offset vector
buttonintegerButton-flags, sent from client telling the server, which buttons are pressed.
impulseinteger-
chainentity-
dmg_inflictorentity-
enemyentity-
aimententityEntity-pointer when movetype is MOVETYPE_FOLLOW.
ownerentityEntities have no collision with their owner and vice versa. Usually projectiles have this to avoid contact with the entity that fired a projectile. For monsters that came from monstermaker, the monstermaker is their owner (used to tell monstermaker about monster’s death).
spawnflagsintegerSpawnflags bit-mask, set by mapper
flagsintegerSpecial entity flags
colormapintegerLow byte topcolor; high byte bottomcolor. This specifies model custom colors, as seen in use on player models.
teaminteger-
max_healthfloatMaximum health of player or monster. Note: player must have integer value as max_health to avoid bugs
teleport_timetime-
armortypefloat-
armorvaluefloatCurrent amount of player’s armor
waterlevelintegerValue to tell the server if the entity is swimming, on dry ground or wading.
watertypeinteger-
targetstringName of the target of this entity.
targetnamestringName of this entity.
netnamestringFor squadmonsters it’s the name of the squad (set by mapper). For players, this contains their nickname. Used as a string by other some entities
messagestringUsed as a string by some entities
dmg_takefloat-
dmg_savefloat-
dmgfloatAmount of damage this entity will inflict on others if it deals damage. Valid for some projectiles and trigger_hurt
dmgtimetime-
noisestring-
noise1string-
noise2string-
noise3string-
speedfloatSpeed of this entity (not current speed; that’s what velocity is!)
air_finishedtime-
pain_finishedtime-
radsuit_finishedtime-

time keyvalues are actually float that are usually compared to the game time by the entity logic.

entity keyvalues can’t be targeted by trigger_changevalue, but can be read by read_keyvalue.

read_keyvalue command #

Run this command in console in the developer mode to read the entity’s entvars.

Usage: Usage: read_keyvalue <targetname> <keyname>.

Example: read_keyvalue mybreakable health to get the health value of entity called mybreakable.

If <targetname> is !cross then it will report the key-value of the entity under the crosshair.

List of “flags” flags #

Flag valueFlag nameDescription
1FL_FLYEntity can fly.
2FL_SWIMEntity can swim.
4FL_CONVEYOREntity is a conveyor.
8FL_CLIENTEntity is a client/player.
16FL_INWATEREntity is in water.
32FL_MONSTEREntity is a monster.
64FL_GODMODEPlayer is invincible.
128FL_NOTARGETEntity won’t be attacked by enemies.
256FL_SKIPLOCALHOSTDon’t tell clients abouts this entity; they’re predicting this entity by themselves.
512FL_ONGROUNDEntity is on the ground.
1024FL_PARTIALGROUNDAt least one of the 4 corners of this entity’s hull does not touch the ground.
2048FL_WATERJUMPPlayer jumping out of water.
4096FL_FROZENPlayer is frozen. (by trigger_camera or trigger_playerfreeze)
8192FL_FAKECLIENTFake client, simulated server side; don’t send network messages to them. (Used for bots)
16384FL_DUCKINGPlayer is fully crouching.
32768FL_FLOATEntity can float on water (e.g. func_pushable)
8388608FL_MONSTERCLIPEntity collides with other entiies with the same flag: func_monsterclip and monsters with Monsterclip spawnflag.

List of “deadflag” states #

ValueNameDescription
0DEAD_NOAlive
1DEAD_DYINGMonster is in dying animation
2DEAD_DEADDead, still
3DEAD_RESPAWNABLE-
4DEAD_DISCARDBODY-

List of “takedamage” states #

ValueNameDescription
0DAMAGE_NODoes not take damage.
1DAMAGE_YESDoes take damage.
2DAMAGE_AIMDoes take damage and allow the autoaim on it.

List of “solid” states #

ValueNameDescription
0SOLID_NOTNo interaction with other objects.
1SOLID_TRIGGERNotice touch, but don’t block.
2SOLID_BBOXTouch on edge, block.
3SOLID_SLIDEBOXTouch on edge, but not if other is on ground.
4SOLID_BSPBSP clip, touch on edge, block.

List of “waterlevel” states #

ValueNameDescription
0WL_NotInWaterNot in water.
1WL_FeetFeet underwater.
2WL_WaistWaist underwater.
3WL_EyesHead underwater.

List of “movetype” states #

ValueNameDescription
0MOVETYPE_NONENever moves.
3MOVETYPE_WALKPlayer only; moving on the ground.
4MOVETYPE_STEPGravity, special edge handling; monsters use this.
5MOVETYPE_FLYNo gravity, but still collides with stuff.
6MOVETYPE_TOSSReceive gravity and collisions.
7MOVETYPE_PUSHNo clip to world; push and crush. (e.g. func_train)
8MOVETYPE_NOCLIPNo gravity; no collisions; still handle velocity and angular velocity.
9MOVETYPE_FLYMISSILEHandled as if was larger for monsters. (Collides more easily)
10MOVETYPE_BOUNCEJust like “Toss”, but reflect velocity when contacting surfaces.
11MOVETYPE_BOUNCEMISSILELike “Bounce”, but without gravity.
12MOVETYPE_FOLLOWTrack movement of aiming entity.
13MOVETYPE_PUSHSTEPBSP model that needs gravity and world collisions; uses nearest hull for world collision. (e.g. func_pushable)

List of “effects” flags #

Flag valueFlag nameDescription
1EF_BRIGHTFIELDSwirling cloud of yellow particles. (Used when a monster is stuck in wall to receice the level designer’s attention)
2EF_MUZZLEFLASHSingle frame ELIGHT on entity attachment 0.
4EF_BRIGHTLIGHTDynamic light centered at entity origin.
8EF_DIMLIGHTPlayer’s flashlight.
16EF_INVLIGHTGet model-lighting from ceiling. (Barnacles and ceiling turrets have this)
32EF_NOINTERPDon’t interpolate the next frame.
64EF_LIGHTRocket flare pulsing glow sprite.
128EF_NODRAWDon’t draw entity. This also makes entity to not send updates to the client. Don’t use it on entities with attached beams or sprites.