GetEffectSpeed

From Multi Theft Auto: Wiki
Revision as of 12:05, 22 June 2014 by Roma ™ (talk | contribs) (Created page with "__NOTOC__ {{Client function}} {{New items|4.0132|1.4 r6208| This function gets the speed the effect. }} ==Syntax== <syntaxhighlight lang="lua"> float getEffectSpeed(effect) </syntaxhighlight> ===Requ...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
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 ("smoke30lit", x, y, z)
   getEffectSpeed (effect) -- The default get 1.0
end)

See also