Garry's Mod Wiki

NEXTBOT:OnStuck

  NEXTBOT:OnStuck()

Description

Called when the bot thinks it is stuck.

Example

Kills the bot when getting stuck, using a new damageinfo object.

function ENT:OnStuck() local dmginfo = DamageInfo() dmginfo:SetAttacker( self ) self:OnKilled( dmginfo ) end