RU/setEffectSpeed
Jump to navigation
Jump to search
Синтаксис
Click to collapse [-]
Clientvoid setEffectSpeed (effect, speed)
Обязательные аргументы
- effect: Эффект, которому будем устанавливать скорость. Список эффектов
- speed: Скорость. По умолчанию 1.0
Пример
addCommandHandler("setspeed", function (cmd) local x, y, z = getElementPosition (localPlayer) local effect = createEffect ("smoke30lit", x, y, z) setEffectSpeed (effect, 5) outputChatBox ("Скорость эффекта равна 5") end)