Garry's Mod Wiki

Entity:SetUseType

  Entity:SetUseType( number useType )

Description

Sets the use type of an entity, affecting how often ENTITY:Use will be called for Lua entities.

Arguments

1 number useType
The use type to apply to the entity. Uses _USE enum.

Example

Makes the ENTITY:Use hook only get called once at every use.

Entity:SetUseType( SIMPLE_USE )