sm-zombiereloaded-3/cstrike/addons/sourcemod/configs/zr/hitgroups.txt

143 lines
2.3 KiB
Plaintext
Raw Normal View History

2009-04-17 21:06:25 +02:00
// Hitgroups
//
// Format
//
// "hitgroup index" // Index of the hitgroup (listed below)
// {
// "index" "name of hitgroup" // Redundant as of now, used for readability.
// "knockback" "1.0" (default) // The knockback multiplier for the hitgroup.
// "damage" "yes" (default // Toggle damage on and off for this hitgroup.
2009-04-17 21:06:25 +02:00
// }
//
// Notes:
//
// A missing config setting will be assumed to be its default value (documented above).
// ============================================================================
//
// ZOMBIE:RELOADED
// Hitgroup configurations
//
// Check the hitgroup configuration section in the manual for detailed info.
//
// ============================================================================
//
// SHORT DESCRIPTIONS
//
// Attribute: Values: Description:
// ----------------------------------------------------------------------------
// index number The hitgroup index
// damage yes/no Allow damage to be done on this hitgroup for zombies.
// knockback decimal The knockback multiplier for this hitgroup.
2009-04-17 21:06:25 +02:00
"hitgroups" // Counter-Strike: Source hitgroups
{
"Generic"
2009-04-17 21:06:25 +02:00
{
// General
"index" "0"
// Damage
"damage" "yes"
// Knockback
"knockback" "1.0"
2009-04-17 21:06:25 +02:00
}
"Head"
2009-04-17 21:06:25 +02:00
{
// General
"index" "1"
// Damage
2009-04-23 06:41:16 +02:00
"damage" "yes"
// Knockback
"knockback" "2.0"
2009-04-17 21:06:25 +02:00
}
"Chest"
2009-04-17 21:06:25 +02:00
{
// General
"index" "2"
// Damage
"damage" "yes"
// Knockback
"knockback" "1.3"
2009-04-17 21:06:25 +02:00
}
"Stomach"
2009-04-17 21:06:25 +02:00
{
// General
"index" "3"
// Damage
"damage" "yes"
// Knockback
"knockback" "1.2"
2009-04-17 21:06:25 +02:00
}
"Left Arm"
2009-04-17 21:06:25 +02:00
{
// General
"index" "4"
// Damage
2009-04-23 06:41:16 +02:00
"damage" "yes"
// Knockback
"knockback" "1.0"
2009-04-17 21:06:25 +02:00
}
"Right Arm"
2009-04-17 21:06:25 +02:00
{
// General
"index" "5"
// Damage
"damage" "yes"
// Knockback
"knockback" "1.0"
2009-04-17 21:06:25 +02:00
}
"Left Leg"
2009-04-17 21:06:25 +02:00
{
// General
"index" "6"
// Damage
2009-04-23 06:41:16 +02:00
"damage" "yes"
// Knockback
"knockback" "0.9"
2009-04-17 21:06:25 +02:00
}
"Right Leg"
2009-04-17 21:06:25 +02:00
{
// General
"index" "7"
// Damage
"damage" "yes"
// Knockback
"knockback" "0.9"
2009-04-17 21:06:25 +02:00
}
"Gear"
2009-04-17 21:06:25 +02:00
{
// General
"index" "8"
// Damage
"damage" "yes"
// Knockback
"knockback" "1.0"
2009-04-17 21:06:25 +02:00
}
}