Fixed newlines in weapons and weapongroups.txt config files.
This commit is contained in:
parent
53c60d1c52
commit
8ac1361a70
@ -1,69 +1,69 @@
|
||||
// Weapon Groups
|
||||
// (See list of weapons in weapons.txt)
|
||||
|
||||
// Format
|
||||
//
|
||||
//
|
||||
// "weapon group name" (how it appears in chat messages)
|
||||
// {
|
||||
// "weaponname" {} <-- To satisfy the standard format of a keyvalues file,
|
||||
// without these brackets the weapon will be skipped.
|
||||
// Invalid weapons are logged and skipped.
|
||||
// }
|
||||
//
|
||||
// Notes:
|
||||
//
|
||||
// Invalid weapons (not in weapons.txt) will be logged in the error logs and ignored in-game
|
||||
|
||||
"weapongroups"
|
||||
{
|
||||
"Pistols"
|
||||
{
|
||||
"Glock" {}
|
||||
"USP" {}
|
||||
"P228" {}
|
||||
"Deagle" {}
|
||||
"Elite" {}
|
||||
"Fiveseven" {}
|
||||
}
|
||||
|
||||
"Shotguns"
|
||||
{
|
||||
"M3" {}
|
||||
"XM1014" {}
|
||||
}
|
||||
|
||||
"SMGs"
|
||||
{
|
||||
"Mac10" {}
|
||||
"TMP" {}
|
||||
"MP5Navy" {}
|
||||
"UMP45" {}
|
||||
"P90" {}
|
||||
}
|
||||
|
||||
"Rifles"
|
||||
{
|
||||
"Galil" {}
|
||||
"Famas" {}
|
||||
"AK47" {}
|
||||
"M4A1" {}
|
||||
"SG552" {}
|
||||
"AUG" {}
|
||||
}
|
||||
|
||||
"Snipers"
|
||||
{
|
||||
"Scout" {}
|
||||
"SG550" {}
|
||||
"G3SG1" {}
|
||||
"AWP" {}
|
||||
}
|
||||
|
||||
"Grenades"
|
||||
{
|
||||
"hegrenade" {}
|
||||
"flashbang" {}
|
||||
"smokegrenade" {}
|
||||
}
|
||||
// Weapon Groups
|
||||
// (See list of weapons in weapons.txt)
|
||||
|
||||
// Format
|
||||
//
|
||||
//
|
||||
// "weapon group name" (how it appears in chat messages)
|
||||
// {
|
||||
// "weaponname" {} <-- To satisfy the standard format of a keyvalues file,
|
||||
// without these brackets the weapon will be skipped.
|
||||
// Invalid weapons are logged and skipped.
|
||||
// }
|
||||
//
|
||||
// Notes:
|
||||
//
|
||||
// Invalid weapons (not in weapons.txt) will be logged in the error logs and ignored in-game
|
||||
|
||||
"weapongroups"
|
||||
{
|
||||
"Pistols"
|
||||
{
|
||||
"Glock" {}
|
||||
"USP" {}
|
||||
"P228" {}
|
||||
"Deagle" {}
|
||||
"Elite" {}
|
||||
"Fiveseven" {}
|
||||
}
|
||||
|
||||
"Shotguns"
|
||||
{
|
||||
"M3" {}
|
||||
"XM1014" {}
|
||||
}
|
||||
|
||||
"SMGs"
|
||||
{
|
||||
"Mac10" {}
|
||||
"TMP" {}
|
||||
"MP5Navy" {}
|
||||
"UMP45" {}
|
||||
"P90" {}
|
||||
}
|
||||
|
||||
"Rifles"
|
||||
{
|
||||
"Galil" {}
|
||||
"Famas" {}
|
||||
"AK47" {}
|
||||
"M4A1" {}
|
||||
"SG552" {}
|
||||
"AUG" {}
|
||||
}
|
||||
|
||||
"Snipers"
|
||||
{
|
||||
"Scout" {}
|
||||
"SG550" {}
|
||||
"G3SG1" {}
|
||||
"AWP" {}
|
||||
}
|
||||
|
||||
"Grenades"
|
||||
{
|
||||
"hegrenade" {}
|
||||
"flashbang" {}
|
||||
"smokegrenade" {}
|
||||
}
|
||||
}
|
@ -1,227 +1,225 @@
|
||||
// Weapons
|
||||
//
|
||||
// Format
|
||||
//
|
||||
// "weaponname" // Name of the weapon (without weapon_ prefix)
|
||||
// {
|
||||
// "restrict" "no" (default) // Restricts the weapon on each map start
|
||||
// "menu" "yes" (default) // Allows admins to toggle restriction with the menu
|
||||
// "knockback" "1.0" (default) // The knockback multiplier for the weapon
|
||||
// }
|
||||
//
|
||||
// Notes:
|
||||
//
|
||||
// This is a list of valid weapons for your server, unlisted weapons will
|
||||
// be seen as invalid by the weapon restrict module.
|
||||
//
|
||||
// A config setting set to something other than "yes" or "no" will be assumed as "no."
|
||||
//
|
||||
// A missing config setting will be assumed to be its default value (documented above).
|
||||
//
|
||||
// Duplicate weapon entries will show up separately in restrict menu, but
|
||||
// only the first one's options are used.
|
||||
|
||||
"weapons" // Counter-Strike: Source weapons
|
||||
{
|
||||
"Glock"
|
||||
{
|
||||
"restrict" "no"
|
||||
"menu" "yes"
|
||||
"knockback" "0.8"
|
||||
}
|
||||
|
||||
"USP"
|
||||
{
|
||||
"restrict" "no"
|
||||
"menu" "yes"
|
||||
"knockback" "0.8"
|
||||
}
|
||||
|
||||
"P228"
|
||||
{
|
||||
"restrict" "no"
|
||||
"menu" "yes"
|
||||
"knockback" "1.0"
|
||||
}
|
||||
|
||||
"Deagle"
|
||||
{
|
||||
"restrict" "no"
|
||||
"menu" "yes"
|
||||
"knockback" "1.2"
|
||||
}
|
||||
|
||||
"Elite"
|
||||
{
|
||||
"restrict" "no"
|
||||
"menu" "yes"
|
||||
"knockback" "1.0"
|
||||
}
|
||||
|
||||
"Fiveseven"
|
||||
{
|
||||
"restrict" "no"
|
||||
"menu" "yes"
|
||||
"knockback" "1.0"
|
||||
}
|
||||
|
||||
"M3"
|
||||
{
|
||||
"restrict" "no"
|
||||
"menu" "yes"
|
||||
"knockback" "0.8" // Remember that there are 8 pellets in 1 shot.
|
||||
}
|
||||
|
||||
"XM1014"
|
||||
{
|
||||
"restrict" "no"
|
||||
"menu" "yes"
|
||||
"knockback" "0.8" // See above comment.
|
||||
}
|
||||
|
||||
"Mac10"
|
||||
{
|
||||
"restrict" "no"
|
||||
"menu" "yes"
|
||||
"knockback" "1.0"
|
||||
}
|
||||
|
||||
"TMP"
|
||||
{
|
||||
"restrict" "no"
|
||||
"menu" "yes"
|
||||
"knockback" "1.0"
|
||||
}
|
||||
|
||||
"MP5Navy"
|
||||
{
|
||||
"restrict" "no"
|
||||
"menu" "yes"
|
||||
"knockback" "1.0"
|
||||
}
|
||||
|
||||
"UMP45"
|
||||
{
|
||||
"restrict" "no"
|
||||
"menu" "yes"
|
||||
"knockback" "1.0"
|
||||
}
|
||||
|
||||
"P90"
|
||||
{
|
||||
"restrict" "no"
|
||||
"menu" "yes"
|
||||
"knockback" "1.0"
|
||||
}
|
||||
|
||||
"Galil"
|
||||
{
|
||||
"restrict" "no"
|
||||
"menu" "yes"
|
||||
"knockback" "1.0"
|
||||
}
|
||||
|
||||
"Famas"
|
||||
{
|
||||
"restrict" "no"
|
||||
"menu" "yes"
|
||||
"knockback" "1.0"
|
||||
}
|
||||
|
||||
"AK47"
|
||||
{
|
||||
"restrict" "no"
|
||||
"menu" "yes"
|
||||
"knockback" "1.2"
|
||||
}
|
||||
|
||||
"M4A1"
|
||||
{
|
||||
"restrict" "no"
|
||||
"menu" "yes"
|
||||
"knockback" "1.1"
|
||||
}
|
||||
|
||||
"SG552"
|
||||
{
|
||||
"restrict" "no"
|
||||
"menu" "yes"
|
||||
"knockback" "1.0"
|
||||
}
|
||||
|
||||
"AUG"
|
||||
{
|
||||
"restrict" "no"
|
||||
"menu" "yes"
|
||||
"knockback" "1.1"
|
||||
}
|
||||
|
||||
"Scout"
|
||||
{
|
||||
"restrict" "no"
|
||||
"menu" "yes"
|
||||
"knockback" "1.5"
|
||||
}
|
||||
|
||||
"SG550"
|
||||
{
|
||||
"restrict" "yes"
|
||||
"menu" "yes"
|
||||
"knockback" "1.3"
|
||||
}
|
||||
|
||||
"G3SG1"
|
||||
{
|
||||
"restrict" "yes"
|
||||
"menu" "yes"
|
||||
"knockback" "1.3"
|
||||
}
|
||||
|
||||
"AWP"
|
||||
{
|
||||
"restrict" "yes"
|
||||
"menu" "yes"
|
||||
"knockback" "1.8"
|
||||
}
|
||||
|
||||
"M249"
|
||||
{
|
||||
"restrict" "yes"
|
||||
"menu" "yes"
|
||||
"knockback" "1.2"
|
||||
}
|
||||
|
||||
"hegrenade"
|
||||
{
|
||||
"restrict" "no"
|
||||
"menu" "yes"
|
||||
"knockback" "6.0"
|
||||
}
|
||||
|
||||
"flashbang"
|
||||
{
|
||||
"restrict" "yes"
|
||||
"menu" "no"
|
||||
"knockback" "100.0"
|
||||
}
|
||||
|
||||
"smokegrenade"
|
||||
{
|
||||
"restrict" "yes"
|
||||
"menu" "no"
|
||||
"knockback" "100.0"
|
||||
}
|
||||
|
||||
"Knife"
|
||||
{
|
||||
"restrict" "no"
|
||||
"menu" "no"
|
||||
"knockback" "8.0"
|
||||
}
|
||||
|
||||
"NVGs"
|
||||
{
|
||||
"restrict" "yes"
|
||||
"menu" "no"
|
||||
}
|
||||
}
|
||||
// Weapons
|
||||
//
|
||||
// Format
|
||||
//
|
||||
// "weaponname" // Name of the weapon (without weapon_ prefix)
|
||||
// {
|
||||
// "restrict" "no" (default) // Restricts the weapon on each map start
|
||||
// "menu" "yes" (default) // Allows admins to toggle restriction with the menu
|
||||
// "knockback" "1.0" (default) // The knockback multiplier for the weapon
|
||||
// }
|
||||
//
|
||||
// Notes:
|
||||
//
|
||||
// This is a list of valid weapons for your server, unlisted weapons will
|
||||
// be seen as invalid by the weapon restrict module.
|
||||
//
|
||||
// A config setting set to something other than "yes" or "no" will be assumed as "no."
|
||||
//
|
||||
// A missing config setting will be assumed to be its default value (documented above).
|
||||
//
|
||||
// Duplicate weapon entries will show up separately in restrict menu, but
|
||||
// only the first one's options are used.
|
||||
|
||||
"weapons" // Counter-Strike: Source weapons
|
||||
{
|
||||
"Glock"
|
||||
{
|
||||
"restrict" "no"
|
||||
"menu" "yes"
|
||||
"knockback" "0.8"
|
||||
}
|
||||
|
||||
"USP"
|
||||
{
|
||||
"restrict" "no"
|
||||
"menu" "yes"
|
||||
"knockback" "0.8"
|
||||
}
|
||||
|
||||
"P228"
|
||||
{
|
||||
"restrict" "no"
|
||||
"menu" "yes"
|
||||
"knockback" "1.0"
|
||||
}
|
||||
|
||||
"Deagle"
|
||||
{
|
||||
"restrict" "no"
|
||||
"menu" "yes"
|
||||
"knockback" "1.2"
|
||||
}
|
||||
|
||||
"Elite"
|
||||
{
|
||||
"restrict" "no"
|
||||
"menu" "yes"
|
||||
"knockback" "1.0"
|
||||
}
|
||||
|
||||
"Fiveseven"
|
||||
{
|
||||
"restrict" "no"
|
||||
"menu" "yes"
|
||||
"knockback" "1.0"
|
||||
}
|
||||
|
||||
"M3"
|
||||
{
|
||||
"restrict" "no"
|
||||
"menu" "yes"
|
||||
"knockback" "0.8" // Remember that there are 8 pellets in 1 shot.
|
||||
}
|
||||
|
||||
"XM1014"
|
||||
{
|
||||
"restrict" "no"
|
||||
"menu" "yes"
|
||||
"knockback" "0.8" // See above comment.
|
||||
}
|
||||
|
||||
"Mac10"
|
||||
{
|
||||
"restrict" "no"
|
||||
"menu" "yes"
|
||||
"knockback" "1.0"
|
||||
}
|
||||
|
||||
"TMP"
|
||||
{
|
||||
"restrict" "no"
|
||||
"menu" "yes"
|
||||
"knockback" "1.0"
|
||||
}
|
||||
|
||||
"MP5Navy"
|
||||
{
|
||||
"restrict" "no"
|
||||
"menu" "yes"
|
||||
"knockback" "1.0"
|
||||
}
|
||||
|
||||
"UMP45"
|
||||
{
|
||||
"restrict" "no"
|
||||
"menu" "yes"
|
||||
"knockback" "1.0"
|
||||
}
|
||||
|
||||
"P90"
|
||||
{
|
||||
"restrict" "no"
|
||||
"menu" "yes"
|
||||
"knockback" "1.0"
|
||||
}
|
||||
|
||||
"Galil"
|
||||
{
|
||||
"restrict" "no"
|
||||
"menu" "yes"
|
||||
"knockback" "1.0"
|
||||
}
|
||||
|
||||
"Famas"
|
||||
{
|
||||
"restrict" "no"
|
||||
"menu" "yes"
|
||||
"knockback" "1.0"
|
||||
}
|
||||
|
||||
"AK47"
|
||||
{
|
||||
"restrict" "no"
|
||||
"menu" "yes"
|
||||
"knockback" "1.2"
|
||||
}
|
||||
|
||||
"M4A1"
|
||||
{
|
||||
"restrict" "no"
|
||||
"menu" "yes"
|
||||
"knockback" "1.1"
|
||||
}
|
||||
|
||||
"SG552"
|
||||
{
|
||||
"restrict" "no"
|
||||
"menu" "yes"
|
||||
"knockback" "1.0"
|
||||
}
|
||||
|
||||
"AUG"
|
||||
{
|
||||
"restrict" "no"
|
||||
"menu" "yes"
|
||||
"knockback" "1.1"
|
||||
}
|
||||
|
||||
"Scout"
|
||||
{
|
||||
"restrict" "no"
|
||||
"menu" "yes"
|
||||
"knockback" "1.5"
|
||||
}
|
||||
|
||||
"SG550"
|
||||
{
|
||||
"restrict" "yes"
|
||||
"menu" "yes"
|
||||
"knockback" "1.3"
|
||||
}
|
||||
|
||||
"G3SG1"
|
||||
{
|
||||
"restrict" "yes"
|
||||
"menu" "yes"
|
||||
"knockback" "1.3"
|
||||
}
|
||||
|
||||
"AWP"
|
||||
{
|
||||
"restrict" "yes"
|
||||
"menu" "yes"
|
||||
"knockback" "1.8"
|
||||
}
|
||||
|
||||
"M249"
|
||||
{
|
||||
"restrict" "yes"
|
||||
"menu" "yes"
|
||||
"knockback" "1.2"
|
||||
}
|
||||
|
||||
"hegrenade"
|
||||
{
|
||||
"restrict" "no"
|
||||
"menu" "yes"
|
||||
"knockback" "6.0"
|
||||
}
|
||||
|
||||
"flashbang"
|
||||
{
|
||||
"restrict" "yes"
|
||||
"menu" "no"
|
||||
}
|
||||
|
||||
"smokegrenade"
|
||||
{
|
||||
"restrict" "yes"
|
||||
"menu" "no"
|
||||
}
|
||||
|
||||
"Knife"
|
||||
{
|
||||
"restrict" "no"
|
||||
"menu" "no"
|
||||
"knockback" "15.0"
|
||||
}
|
||||
|
||||
"NVGs"
|
||||
{
|
||||
"restrict" "yes"
|
||||
"menu" "no"
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user