DetonateSatchels
Jump to navigation
Jump to search
This function can be used to detonate a players satchels.
Syntax
Click to collapse [-]
Clientbool detonateSatchels()
Click to collapse [-]
Serverbool detonateSatchels(player Player)
Returns
Returns true if successful, false otherwise.
Example
The below example allows a player to detonate any of their placed satchels via the command /blowsatchels (Client-side)
Click to collapse [-]
Client-sideaddCommandHandler("blowsatchels", function() detonateSatchels() end )
The below example allows a player to detonate any of their placed satchels via the command /blowsatchels (Server-side)
Click to collapse [-]
Server-sideaddCommandHandler("blowsatchels", function(sourcePlayer, commandName) detonateSatchels(sourcePlayer) end )