Separated weapon entity and weapon name. Broke config compatibility in weapons.txt. Either update yours by hand, or overwrite with this file.
Made support for my Grenade Pack plugin, just install the plugin and ZMarket will follow gp_limit. The only problem right now is flash/smoke are treated like grenades, this will be fixed soon.
This commit is contained in:
@ -11,6 +11,7 @@
|
||||
//
|
||||
// Attribute: Values: Description:
|
||||
// ----------------------------------------------------------------------------
|
||||
// weaponentity text The entity name of the weapon refered to. (Don't change this)
|
||||
// weapontype text The type of weapon it is. [List types, separate by ", "]
|
||||
// weaponslot number The slot index the weapon resides in. (Don't change this)
|
||||
// restrictdefault yes/no The default restricted status of the weapon on map start.
|
||||
@ -26,10 +27,11 @@
|
||||
|
||||
"weapons" // Counter-Strike: Source weapons
|
||||
{
|
||||
"Glock"
|
||||
"Gangsta Glock"
|
||||
{
|
||||
// General
|
||||
|
||||
"weaponentity" "weapon_glock"
|
||||
"weapontype" "All, Pistol"
|
||||
"weaponslot" "1"
|
||||
|
||||
@ -56,6 +58,7 @@
|
||||
{
|
||||
// General
|
||||
|
||||
"weaponentity" "weapon_usp"
|
||||
"weapontype" "All, Pistol"
|
||||
"weaponslot" "1"
|
||||
|
||||
@ -82,6 +85,7 @@
|
||||
{
|
||||
// General
|
||||
|
||||
"weaponentity" "weapon_p228"
|
||||
"weapontype" "All, Pistol"
|
||||
"weaponslot" "1"
|
||||
|
||||
@ -109,6 +113,7 @@
|
||||
{
|
||||
// General
|
||||
|
||||
"weaponentity" "weapon_deagle"
|
||||
"weapontype" "All, Pistol"
|
||||
"weaponslot" "1"
|
||||
|
||||
@ -136,6 +141,7 @@
|
||||
{
|
||||
// General
|
||||
|
||||
"weaponentity" "weapon_elite"
|
||||
"weapontype" "All, Pistol"
|
||||
"weaponslot" "1"
|
||||
|
||||
@ -163,6 +169,7 @@
|
||||
{
|
||||
// General
|
||||
|
||||
"weaponentity" "weapon_fiveseven"
|
||||
"weapontype" "All, Pistol"
|
||||
"weaponslot" "1"
|
||||
|
||||
@ -190,6 +197,7 @@
|
||||
{
|
||||
// General
|
||||
|
||||
"weaponentity" "weapon_m3"
|
||||
"weapontype" "All, Shotgun"
|
||||
"weaponslot" "0"
|
||||
|
||||
@ -217,6 +225,7 @@
|
||||
{
|
||||
// General
|
||||
|
||||
"weaponentity" "weapon_xm1014"
|
||||
"weapontype" "All, Shotgun"
|
||||
"weaponslot" "0"
|
||||
|
||||
@ -244,6 +253,7 @@
|
||||
{
|
||||
// General
|
||||
|
||||
"weaponentity" "weapon_mac10"
|
||||
"weapontype" "All, SMG"
|
||||
"weaponslot" "0"
|
||||
|
||||
@ -270,6 +280,7 @@
|
||||
{
|
||||
// General
|
||||
|
||||
"weaponentity" "weapon_tmp"
|
||||
"weapontype" "All, SMG"
|
||||
"weaponslot" "0"
|
||||
|
||||
@ -296,6 +307,7 @@
|
||||
{
|
||||
// General
|
||||
|
||||
"weaponentity" "weapon_mp5navy"
|
||||
"weapontype" "All, SMG"
|
||||
"weaponslot" "0"
|
||||
|
||||
@ -322,6 +334,7 @@
|
||||
{
|
||||
// General
|
||||
|
||||
"weaponentity" "weapon_ump45"
|
||||
"weapontype" "All, SMG"
|
||||
"weaponslot" "0"
|
||||
|
||||
@ -348,6 +361,7 @@
|
||||
{
|
||||
// General
|
||||
|
||||
"weaponentity" "weapon_p90"
|
||||
"weapontype" "All, SMG"
|
||||
"weaponslot" "0"
|
||||
|
||||
@ -374,6 +388,7 @@
|
||||
{
|
||||
// General
|
||||
|
||||
"weaponentity" "weapon_galil"
|
||||
"weapontype" "All, Rifle"
|
||||
"weaponslot" "0"
|
||||
|
||||
@ -400,6 +415,7 @@
|
||||
{
|
||||
// General
|
||||
|
||||
"weaponentity" "weapon_famas"
|
||||
"weapontype" "All, Rifle"
|
||||
"weaponslot" "0"
|
||||
|
||||
@ -426,6 +442,7 @@
|
||||
{
|
||||
// General
|
||||
|
||||
"weaponentity" "weapon_ak47"
|
||||
"weapontype" "All, Rifle"
|
||||
"weaponslot" "0"
|
||||
|
||||
@ -452,6 +469,7 @@
|
||||
{
|
||||
// General
|
||||
|
||||
"weaponentity" "weapon_m4a1"
|
||||
"weapontype" "All, Rifle"
|
||||
"weaponslot" "0"
|
||||
|
||||
@ -478,6 +496,7 @@
|
||||
{
|
||||
// General
|
||||
|
||||
"weaponentity" "weapon_sg552"
|
||||
"weapontype" "All, Rifle"
|
||||
"weaponslot" "0"
|
||||
|
||||
@ -504,6 +523,7 @@
|
||||
{
|
||||
// General
|
||||
|
||||
"weaponentity" "weapon_aug"
|
||||
"weapontype" "All, Rifle"
|
||||
"weaponslot" "0"
|
||||
|
||||
@ -530,6 +550,7 @@
|
||||
{
|
||||
// General
|
||||
|
||||
"weaponentity" "weapon_scout"
|
||||
"weapontype" "All, Sniper"
|
||||
"weaponslot" "0"
|
||||
|
||||
@ -556,6 +577,7 @@
|
||||
{
|
||||
// General
|
||||
|
||||
"weaponentity" "weapon_sg550"
|
||||
"weapontype" "All, Sniper"
|
||||
"weaponslot" "0"
|
||||
|
||||
@ -582,6 +604,7 @@
|
||||
{
|
||||
// General
|
||||
|
||||
"weaponentity" "weapon_g3sg1"
|
||||
"weapontype" "All, Sniper"
|
||||
"weaponslot" "0"
|
||||
|
||||
@ -608,6 +631,7 @@
|
||||
{
|
||||
// General
|
||||
|
||||
"weaponentity" "weapon_awp"
|
||||
"weapontype" "All, Sniper"
|
||||
"weaponslot" "0"
|
||||
|
||||
@ -634,6 +658,7 @@
|
||||
{
|
||||
// General
|
||||
|
||||
"weaponentity" "weapon_m249"
|
||||
"weapontype" "All, Machine Gun"
|
||||
"weaponslot" "0"
|
||||
|
||||
@ -660,6 +685,7 @@
|
||||
{
|
||||
// General
|
||||
|
||||
"weaponentity" "weapon_knife"
|
||||
"weapontype" "All, Melee"
|
||||
"weaponslot" "2"
|
||||
|
||||
@ -677,6 +703,7 @@
|
||||
{
|
||||
// General
|
||||
|
||||
"weaponentity" "weapon_hegrenade"
|
||||
"weapontype" "All, Projectile"
|
||||
"weaponslot" "3"
|
||||
|
||||
@ -699,6 +726,7 @@
|
||||
{
|
||||
// General
|
||||
|
||||
"weaponentity" "weapon_flashbang"
|
||||
"weapontype" "All, Projectile"
|
||||
"weaponslot" "3"
|
||||
|
||||
@ -717,6 +745,7 @@
|
||||
{
|
||||
// General
|
||||
|
||||
"weaponentity" "weapon_smokegrenade"
|
||||
"weapontype" "All, Projectile"
|
||||
"weaponslot" "3"
|
||||
|
||||
@ -735,6 +764,7 @@
|
||||
{
|
||||
// General
|
||||
|
||||
"weaponentity" "item_nvgs"
|
||||
"weapontype" "All, Equipment"
|
||||
"weaponslot" "5"
|
||||
|
||||
|
Reference in New Issue
Block a user