GetEffectSpeed

From Multi Theft Auto: Wiki
Revision as of 12:23, 22 June 2014 by Roma ™ (talk | contribs)
Jump to navigation Jump to search

ADDED/UPDATED IN VERSION 1.4 r6208 :

This function gets the speed the effect.

Syntax

float   getEffectSpeed(effect)

Required Arguments

  • effect: The name of the effect.

Example

Click to collapse [-]
Client
[Lua]
addCommandHandler("ges", 
function (cmd)
   local x, y, z = getElementPosition (localPlayer)
   local effect = createEffect ("explosion_crate", x, y, z)
   getEffectSpeed (effect) -- The default get 1.0
end)

See also