RemovePedJetPack

From Multi Theft Auto: Wiki
Revision as of 19:19, 25 May 2008 by Arc (talk | contribs) (New page: {{Server function}} __NOTOC__ This function is used to remove a ped's jetpack. ==Syntax== <syntaxhighlight lang="lua">bool removePedJetPack ( ped thePed )</syntaxhighlight> ===Required Arguments=== *'''thePed''':...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

This function is used to remove a ped's jetpack.

Syntax

bool removePedJetPack ( ped thePed )

Required Arguments

  • thePed: The ped you want to remove the jetpack from.

Returns

Returns true if the ped had a jetpack, false otherwise.

Example

This example adds a "jetpack" command in console, which allows toggling of a jetpack.

function jetPackCommand ( source, key )
    if ( doesPedHaveJetPack ( source ) ) then     -- if the player has a jetpack
        removePedJetPack ( source )               -- remove it
    else
        givePedJetPack ( source )                 -- otherwise give him one
    end
end
addCommandHandler ( "jetpack", jetPackCommand )

See Also