DetonateSatchels

From Multi Theft Auto: Wiki
Revision as of 21:02, 18 November 2022 by Nikoo. (talk | contribs) (→‎Syntax)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

This function can be used to detonate a players satchels.

Syntax

Click to collapse [-]
Client
bool detonateSatchels()
Click to collapse [-]
Server
bool 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-side
addCommandHandler("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-side
addCommandHandler("blowsatchels",
    function(sourcePlayer, commandName)
        detonateSatchels(sourcePlayer)
    end
)

See also