GetEffectSpeed: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
mNo edit summary
mNo edit summary
 
Line 19: Line 19:
===Example===
===Example===
This example adds command ''ges'' that creates crate explosion effect at the player's position and outputs its speed to the chatbox.
This example adds command ''ges'' that creates crate explosion effect at the player's position and outputs its speed to the chatbox.
<syntaxhighlight lang="lua">[Lua]
<syntaxhighlight lang="lua">
addCommandHandler("ges",  
addCommandHandler("ges",  
function (cmd)
function (cmd)

Latest revision as of 13:55, 7 May 2017

This function gets the speed of a specified effect.

Syntax

float getEffectSpeed ( effect theEffect )

OOP Syntax Help! I don't understand this!

Method: effect:getSpeed(...)
Variable: .speed
Counterpart: setEffectSpeed


Required Arguments

  • theEffect: The effect to get the speed of.

Returns

Returns float containing the effect's speed, false if invalid arguments were specified.

Example

This example adds command ges that creates crate explosion effect at the player's position and outputs its speed to the chatbox.

addCommandHandler("ges", 
function (cmd)
   local x, y, z = getElementPosition(localPlayer)
   local effect = createEffect("explosion_crate", x, y, z)
   outputChatBox("The speed: " .. tostring(getEffectSpeed(effect)))
end)

See also