Shared/weapons.lua

-- | # You can get help from our document: https://thug.gitbook.io/documentation

Weapons = {
    ['weapon_unarmed']               = GetHashKey('weapon_unarmed'),
    ['weapon_dagger']                = GetHashKey('weapon_dagger'),
    ['weapon_knife']                 = GetHashKey('weapon_knife'),
    ['weapon_bat']                   = GetHashKey('weapon_bat'),
    ['weapon_bottle']                = GetHashKey('weapon_bottle'),
    ['weapon_crowbar']               = GetHashKey('weapon_crowbar'),
    ['weapon_flashlight']            = GetHashKey('weapon_flashlight'),
    ['weapon_golfclub']              = GetHashKey('weapon_golfclub'),
    ['weapon_hammer']                = GetHashKey('weapon_hammer'),
    ['weapon_hatchet']               = GetHashKey('weapon_hatchet'),
    ['weapon_knuckle']               = GetHashKey('weapon_knuckle'),
    ['weapon_machete']               = GetHashKey('weapon_machete'),
    ['weapon_switchblade']           = GetHashKey('weapon_switchblade'),
    ['weapon_nightstick']            = GetHashKey('weapon_nightstick'),
    ['weapon_wrench']                = GetHashKey('weapon_wrench'),
    ['weapon_battleaxe']             = GetHashKey('weapon_battleaxe'),
    ['weapon_poolcue']               = GetHashKey('weapon_poolcue'),
    ['weapon_briefcase']             = GetHashKey('weapon_briefcase'),
    ['weapon_briefcase_02']          = GetHashKey('weapon_briefcase_02'),
    ['weapon_garbagebag']            = GetHashKey('weapon_garbagebag'),
    ['weapon_handcuffs']             = GetHashKey('weapon_handcuffs'),
    ['weapon_bread']                 = GetHashKey('weapon_bread'),
    ['weapon_stone_hatchet']         = GetHashKey('weapon_stone_hatchet'),
    ['weapon_pistol']                = GetHashKey('weapon_pistol'),
    ['weapon_pistol_mk2']            = GetHashKey('weapon_pistol_mk2'),
    ['weapon_combatpistol']          = GetHashKey('weapon_combatpistol'),
    ['weapon_appistol']              = GetHashKey('weapon_appistol'),
    ['weapon_stungun']               = GetHashKey('weapon_stungun'),
    ['weapon_pistol50']              = GetHashKey('weapon_pistol50'),
    ['weapon_snspistol']             = GetHashKey('weapon_snspistol'),
    ['weapon_snspistol_mk2']         = GetHashKey('weapon_snspistol_mk2'),
    ['weapon_heavypistol']           = GetHashKey('weapon_heavypistol'),
    ['weapon_vintagepistol']         = GetHashKey('weapon_vintagepistol'),
    ['weapon_flaregun']              = GetHashKey('weapon_flaregun'),
    ['weapon_marksmanpistol']        = GetHashKey('weapon_marksmanpistol'),
    ['weapon_revolver']              = GetHashKey('weapon_revolver'),
    ['weapon_revolver_mk2']          = GetHashKey('weapon_revolver_mk2'),
    ['weapon_doubleaction']          = GetHashKey('weapon_doubleaction'),
    ['weapon_raypistol']             = GetHashKey('weapon_raypistol'),
    ['weapon_ceramicpistol']         = GetHashKey('weapon_ceramicpistol'),
    ['weapon_navyrevolver']          = GetHashKey('weapon_navyrevolver'),
    ['weapon_gadgetpistol']          = GetHashKey('weapon_gadgetpistol'),
    ['weapon_stungun_mp']            = GetHashKey('weapon_stungun_mp'),
    ['weapon_microsmg']              = GetHashKey('weapon_microsmg'),
    ['weapon_smg']                   = GetHashKey('weapon_smg'),
    ['weapon_smg_mk2']               = GetHashKey('weapon_smg_mk2'),
    ['weapon_assaultsmg']            = GetHashKey('weapon_assaultsmg'),
    ['weapon_combatpdw']             = GetHashKey('weapon_combatpdw'),
    ['weapon_machinepistol']         = GetHashKey('weapon_machinepistol'),
    ['weapon_minismg']               = GetHashKey('weapon_minismg'),
    ['weapon_raycarbine']            = GetHashKey('weapon_raycarbine'),
    ['weapon_pumpshotgun']           = GetHashKey('weapon_pumpshotgun'),
    ['weapon_pumpshotgun_mk2']       = GetHashKey('weapon_pumpshotgun_mk2'),
    ['weapon_sawnoffshotgun']        = GetHashKey('weapon_sawnoffshotgun'),
    ['weapon_assaultshotgun']        = GetHashKey('weapon_assaultshotgun'),
    ['weapon_bullpupshotgun']        = GetHashKey('weapon_bullpupshotgun'),
    ['weapon_musket']                = GetHashKey('weapon_musket'),
    ['weapon_heavyshotgun']          = GetHashKey('weapon_heavyshotgun'),
    ['weapon_dbshotgun']             = GetHashKey('weapon_dbshotgun'),
    ['weapon_autoshotgun']           = GetHashKey('weapon_autoshotgun'),
    ['weapon_combatshotgun']         = GetHashKey('weapon_combatshotgun'),
}

Last updated