Merged heads.
This commit is contained in:
commit
824ff32cd4
@ -1,70 +1,70 @@
|
|||||||
// Hitgroups
|
// Hitgroups
|
||||||
//
|
//
|
||||||
// Format
|
// Format
|
||||||
//
|
//
|
||||||
// "hitgroup index" // Index of the hitgroup (listed below)
|
// "hitgroup index" // Index of the hitgroup (listed below)
|
||||||
// {
|
// {
|
||||||
// "name" "name of hitgroup" // Redundant as of now, used for readability.
|
// "name" "name of hitgroup" // Redundant as of now, used for readability.
|
||||||
// "knockback" "1.0" (default) // The knockback multiplier for the hitgroup
|
// "knockback" "1.0" (default) // The knockback multiplier for the hitgroup
|
||||||
// }
|
// }
|
||||||
//
|
//
|
||||||
// Notes:
|
// Notes:
|
||||||
//
|
//
|
||||||
// A missing config setting will be assumed to be its default value (documented above).
|
// A missing config setting will be assumed to be its default value (documented above).
|
||||||
|
|
||||||
"hitgroups" // Counter-Strike: Source hitgroups
|
"hitgroups" // Counter-Strike: Source hitgroups
|
||||||
{
|
{
|
||||||
"0"
|
"0"
|
||||||
{
|
{
|
||||||
"name" "Generic"
|
"name" "Generic"
|
||||||
"knockback" "1.0"
|
"knockback" "1.0"
|
||||||
}
|
}
|
||||||
|
|
||||||
"1"
|
"1"
|
||||||
{
|
{
|
||||||
"name" "Head"
|
"name" "Head"
|
||||||
"knockback" "2.0"
|
"knockback" "2.0"
|
||||||
}
|
}
|
||||||
|
|
||||||
"2"
|
"2"
|
||||||
{
|
{
|
||||||
"name" "Chest"
|
"name" "Chest"
|
||||||
"knockback" "1.3"
|
"knockback" "1.3"
|
||||||
}
|
}
|
||||||
|
|
||||||
"3"
|
"3"
|
||||||
{
|
{
|
||||||
"name" "Stomach"
|
"name" "Stomach"
|
||||||
"knockback" "1.2"
|
"knockback" "1.2"
|
||||||
}
|
}
|
||||||
|
|
||||||
"4"
|
"4"
|
||||||
{
|
{
|
||||||
"name" "Left Arm"
|
"name" "Left Arm"
|
||||||
"knockback" "1.0"
|
"knockback" "1.0"
|
||||||
}
|
}
|
||||||
|
|
||||||
"5"
|
"5"
|
||||||
{
|
{
|
||||||
"name" "Right Arm"
|
"name" "Right Arm"
|
||||||
"knockback" "1.0"
|
"knockback" "1.0"
|
||||||
}
|
}
|
||||||
|
|
||||||
"6"
|
"6"
|
||||||
{
|
{
|
||||||
"name" "Left Leg"
|
"name" "Left Leg"
|
||||||
"knockback" "0.9"
|
"knockback" "0.9"
|
||||||
}
|
}
|
||||||
|
|
||||||
"7"
|
"7"
|
||||||
{
|
{
|
||||||
"name" "Right Leg"
|
"name" "Right Leg"
|
||||||
"knockback" "0.9"
|
"knockback" "0.9"
|
||||||
}
|
}
|
||||||
|
|
||||||
"10"
|
"10"
|
||||||
{
|
{
|
||||||
"name" "Gear"
|
"name" "Gear"
|
||||||
"knockback" "1.0"
|
"knockback" "1.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,69 +1,69 @@
|
|||||||
// Weapon Groups
|
// Weapon Groups
|
||||||
// (See list of weapons in weapons.txt)
|
// (See list of weapons in weapons.txt)
|
||||||
|
|
||||||
// Format
|
// Format
|
||||||
//
|
//
|
||||||
//
|
//
|
||||||
// "weapon group name" (how it appears in chat messages)
|
// "weapon group name" (how it appears in chat messages)
|
||||||
// {
|
// {
|
||||||
// "weaponname" {} <-- To satisfy the standard format of a keyvalues file,
|
// "weaponname" {} <-- To satisfy the standard format of a keyvalues file,
|
||||||
// without these brackets the weapon will be skipped.
|
// without these brackets the weapon will be skipped.
|
||||||
// Invalid weapons are logged and skipped.
|
// Invalid weapons are logged and skipped.
|
||||||
// }
|
// }
|
||||||
//
|
//
|
||||||
// Notes:
|
// Notes:
|
||||||
//
|
//
|
||||||
// Invalid weapons (not in weapons.txt) will be logged in the error logs and ignored in-game
|
// Invalid weapons (not in weapons.txt) will be logged in the error logs and ignored in-game
|
||||||
|
|
||||||
"weapongroups"
|
"weapongroups"
|
||||||
{
|
{
|
||||||
"Pistols"
|
"Pistols"
|
||||||
{
|
{
|
||||||
"Glock" {}
|
"Glock" {}
|
||||||
"USP" {}
|
"USP" {}
|
||||||
"P228" {}
|
"P228" {}
|
||||||
"Deagle" {}
|
"Deagle" {}
|
||||||
"Elite" {}
|
"Elite" {}
|
||||||
"Fiveseven" {}
|
"Fiveseven" {}
|
||||||
}
|
}
|
||||||
|
|
||||||
"Shotguns"
|
"Shotguns"
|
||||||
{
|
{
|
||||||
"M3" {}
|
"M3" {}
|
||||||
"XM1014" {}
|
"XM1014" {}
|
||||||
}
|
}
|
||||||
|
|
||||||
"SMGs"
|
"SMGs"
|
||||||
{
|
{
|
||||||
"Mac10" {}
|
"Mac10" {}
|
||||||
"TMP" {}
|
"TMP" {}
|
||||||
"MP5Navy" {}
|
"MP5Navy" {}
|
||||||
"UMP45" {}
|
"UMP45" {}
|
||||||
"P90" {}
|
"P90" {}
|
||||||
}
|
}
|
||||||
|
|
||||||
"Rifles"
|
"Rifles"
|
||||||
{
|
{
|
||||||
"Galil" {}
|
"Galil" {}
|
||||||
"Famas" {}
|
"Famas" {}
|
||||||
"AK47" {}
|
"AK47" {}
|
||||||
"M4A1" {}
|
"M4A1" {}
|
||||||
"SG552" {}
|
"SG552" {}
|
||||||
"AUG" {}
|
"AUG" {}
|
||||||
}
|
}
|
||||||
|
|
||||||
"Snipers"
|
"Snipers"
|
||||||
{
|
{
|
||||||
"Scout" {}
|
"Scout" {}
|
||||||
"SG550" {}
|
"SG550" {}
|
||||||
"G3SG1" {}
|
"G3SG1" {}
|
||||||
"AWP" {}
|
"AWP" {}
|
||||||
}
|
}
|
||||||
|
|
||||||
"Grenades"
|
"Grenades"
|
||||||
{
|
{
|
||||||
"hegrenade" {}
|
"hegrenade" {}
|
||||||
"flashbang" {}
|
"flashbang" {}
|
||||||
"smokegrenade" {}
|
"smokegrenade" {}
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user