FxAddGunshot: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
mNo edit summary
Line 23: Line 23:
This page lacks an example
This page lacks an example
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
--add an example here
addCommandHandler("fshot", function()
    local x, y, z = getElementPosition(localPlayer)
    fxAddGunshot(x, y+0.5, z+0.5, 0, 0, 0, true)
end)[/lua]
</syntaxhighlight>
</syntaxhighlight>



Revision as of 00:48, 9 June 2012

Gunshot

This function creates a gunshot particle effect.

Syntax

bool fxAddGunshot ( float posX, float posY, float posZ, float dirX, float dirY, float dirZ, [bool includeSparks=true] )

Required Arguments

  • posX, posY, posZ: the world coordinates where the effect originates.
  • dirX, dirY, dirZ: a direction vector indicating where the bullet is fired.

Optional Arguments

NOTE: When using optional arguments, you might need to supply all arguments before the one you wish to use. For more information on optional arguments, see optional arguments.

  • includeSparks: A bool representing whether the particle effect will generate sparks.

Returns

Returns a true if the operation was successful, false otherwise.

Example

This page lacks an example

addCommandHandler("fshot", function()
    local x, y, z = getElementPosition(localPlayer)
    fxAddGunshot(x, y+0.5, z+0.5, 0, 0, 0, true)
end)[/lua]

See Also