• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!
  • 2026 staff recruitment is open! Check it out and consider applying!

Lua Spell Effect 8.6

Fizzy

Member
Joined
Dec 27, 2012
Messages
200
Reaction score
16
Location
Sweden
Hello Otland. I got a server with the client 8.60 and my tfs is 0.3.6!
I'm trying to figure it out how to make my manarune do the effect /x 28. But I can't figure it out. Can anyone help me?
I'll give rep ++
 
You guys are sending me the wrong effect, it's not supposed to be the Z it's supposed to be the X effect for example.. /x 1 not /z 1 =)
 
LUA:
local position = getCreaturePosition(cid)
for i = 1, 30 do
	doSendDistanceShoot(position, {x = position.x + math.random(-7, 7), y = position.y + math.random(-5, 5), z = position.z}, 28)
end
 
Back
Top