IT/detonateSatchels: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(Created page with "{{IT/MainP}} {{IT/Funzioni client server}} __NOTOC__ Questa funzione può essere utilizzata per far esplodere una cartella esplosiva. Questa funzione è disponibile dalla versio...")
 
No edit summary
Line 7: Line 7:


==Sintassi==
==Sintassi==
<section name="IT/Client" class="client" show="true">
<section name="IT/Client" class="IT/client" show="true">
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
bool detonateSatchels ( )
bool detonateSatchels ( )

Revision as of 13:03, 3 August 2011

« Torna alla Pagina principale italiana .

Template:IT/Funzioni client server

Questa funzione può essere utilizzata per far esplodere una cartella esplosiva.

Questa funzione è disponibile dalla versione 1.1 in poi.

Sintassi

Click to collapse [-]
IT/Client
bool detonateSatchels ( )
Click to collapse [-]
Server
bool detonateSatchels ( element 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 [-]
Client
function blowMySatchels()
    detonateSatchels()
    outputChatBox("Satchels blown!", 0, 255, 0)
end
addCommandHandler("blowsatchels", blowMySatchels)

See also