DetonateSatchels: Difference between revisions
Jump to navigation
Jump to search
m (Reverting variable name change in favour towards "class usage") |
ThePiotrek (talk | contribs) No edit summary |
||
Line 34: | Line 34: | ||
[[it:detonateSatchels]] | [[it:detonateSatchels]] | ||
[[pl:detonateSatchels]] |
Revision as of 13:30, 21 July 2016
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
Click to collapse [-]
Clientfunction blowMySatchels() detonateSatchels() outputChatBox("Satchels blown!", 0, 255, 0) end addCommandHandler("blowsatchels", blowMySatchels)