Garry's Mod Wiki

WEAPON:GetCapabilities

  number WEAPON:GetCapabilities()

Description

This hook is for NPCs, you return what they should try to do with it.

Returns

1 number
A number defining what NPC should do with the weapon. Use the CAP enum.

Example

As defined in weapon_base

function SWEP:GetCapabilities() return bit.bor( CAP_WEAPON_RANGE_ATTACK1, CAP_INNATE_RANGE_ATTACK1 ) end