MakePedUseGun

From Multi Theft Auto: Wiki
Revision as of 16:36, 13 February 2015 by AlexTMjugador (talk | contribs) (Changed "DeprecatedWithAlt" template to "Deprecated")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Emblem-important.png This function is deprecated. This means that its use is discouraged and that it might not exist in future versions.

Please use setPedControlState instead.


This function is used to force a ped to use a gun.

Syntax

bool makePedUseGun ( ped thePed, int useType, element target )

Required Arguments

  • thePed: The ped you wish to force the use of a gun upon.
  • useType: How the weapon should be used, will accept the following values:
    • 0: Do nothing
    • 1: Aim weapon
    • 2: Fire
    • 3: Burst-fire
    • 4: Reload
    • 5: Pistolwhip (Weapon melee)
    • 6: Cancel use
    • 7: Cancel use immediately
  • target: An element referring to the target that the ped will use its weapon against.

Returns

Returns true if the command was successful, false otherwise.

Example

--ToDo

See Also