info_player_equip
From Valve Developer Community
info_player_equip is a point entity available in Synergy.
It manages the players' equipment.To do: Make Template:Synergy point
Entity description
Entity that will give players any equipment specified by it's key values (in the form of 'entity_classname' 'number_of_items'). This entity replaces the functionality of the game_player_equip. The Enabled/Disabled states control whether or not players will spawn with its contents, they can still receive it with EquipPlayer and EquipAllPlayers Inputs, however.

Keyvalues
- StartDisabled
<choices>
- Whether players who spawn will receive its contents.
- 0 : Start Disabled.
- 1 : Start Enabled.
Targetname:
- Name
<string>
- The targetname that other entities refer to this entity by.
- Entity Scripts
<scriptlist>
(New with Left 4 Dead 2) - Space delimited list of VScript files (without file extension) that are executed after all entities have spawned. The scripts are all executed in the same script scope, later ones overwriting any identical variables and functions.
- Script think function
<string>
(New with Left 4 Dead 2) - Name of a function in this entity's script which will be called automatically every 100 milliseconds (ten times a second) for the duration of the script. It can be used to create timers or to simulate autonomous behavior. The return value (if present) will set the time until the next call.
Note:Try to avoid expensive operations in this function, as it may cause performance problems.
Equipment Options
Items
Key | Value | Memo |
---|---|---|
item_suit | 0/1 | H.E.V. Suit |
item_armor | 1-100 | H.E.V. Suit's Powerarmor |
Half-Life 2 Weapons
Key | Value |
---|---|
weapon_crowbar | 0/1 |
weapon_stunstick | 0/1 |
weapon_pistol | 0/1 |
weapon_357 | 0/1 |
weapon_smg1 | 0/1 |
weapon_ar2 | 0/1 |
weapon_shotgun | 0/1 |
weapon_crossbow | 0/1 |
weapon_frag | 0/1 |
weapon_rpg | 0/1 |
weapon_slam | 0/1 |
weapon_physcannon | 0/1 |
Synergy Weapons
Key | Value |
---|---|
weapon_deagle | 0/1 |
weapon_mp5k | 0/1 |
weapon_mg1 | 0/1 |

Ammo (x = number of additional clips)
Key | Recommended Value |
---|---|
ammo_pistol | 18x |
ammo_357 | 6x |
ammo_smg1 | 45x |
ammo_smg1_grenade | 0-3 |
ammo_ar2 | 30x |
ammo_ar2altfire | 0-3 |
ammo_buckshot | 6x |
ammo_xbowbolt | 1x |
ammo_grenade | 0-4 |
ammo_rpg_round | 0-3 |
ammo_slam | 0-3 |
Inputs
-
Enable
- All players who respawn while this entity is Enabled will receive its equipment.
-
Disable
- Players will not receive its equipment on respawn.
-
EquipPlayer
- Equip the !activator of this input with the items contained in this entity, even if this entity is disabled. Activator must be a player.
-
EquipAllPlayers
- Equip every living player with the items contained in this entity, even if this entity is disabled.
Outputs
Targetname:
-
OnUser1
toOnUser4
- These Outputs each fire in response to the firing of the like-numbered
FireUser1
toFireUser4
Input; see User Inputs and Outputs. -
OnKilled
(Only in the Left 4 Dead series) - This Output fires when the entity is killed and removed from the game.