mirror of
https://github.com/ErikasKontenis/SabrehavenServer.git
synced 2025-10-15 06:54:54 +02:00
Full Distribution
This commit is contained in:
29
data/talkactions/scripts/animationeffect.lua
Normal file
29
data/talkactions/scripts/animationeffect.lua
Normal file
@@ -0,0 +1,29 @@
|
||||
function onSay(player, words, param)
|
||||
if not player:getGroup():getAccess() then
|
||||
return true
|
||||
end
|
||||
|
||||
local effect = tonumber(param)
|
||||
local position = player:getPosition()
|
||||
local toPositionLow = {z = position.z}
|
||||
local toPositionHigh = {z = position.z}
|
||||
|
||||
toPositionLow.x = position.x - 7
|
||||
toPositionHigh.x = position.x + 7
|
||||
for i = -5, 5 do
|
||||
toPositionLow.y = position.y + i
|
||||
toPositionHigh.y = toPositionLow.y
|
||||
position:sendDistanceEffect(toPositionLow, effect)
|
||||
position:sendDistanceEffect(toPositionHigh, effect)
|
||||
end
|
||||
|
||||
toPositionLow.y = position.y - 5
|
||||
toPositionHigh.y = position.y + 5
|
||||
for i = -6, 6 do
|
||||
toPositionLow.x = position.x + i
|
||||
toPositionHigh.x = toPositionLow.x
|
||||
position:sendDistanceEffect(toPositionLow, effect)
|
||||
position:sendDistanceEffect(toPositionHigh, effect)
|
||||
end
|
||||
return false
|
||||
end
|
Reference in New Issue
Block a user