Im ignorant about scripting, could someone make a script that follows "X" if i have no target or no monster screen both work, i would appreciate it a lot thx
Printable View
Im ignorant about scripting, could someone make a script that follows "X" if i have no target or no monster screen both work, i would appreciate it a lot thx
@Vodkita
Just edit the name, it will follow if you don't have any target
Code:function follow()
local creatureToFollow = Creature.New("Name To Follow")
if (Self.TargetID() == 0) then
followCreature(creatureToFollow:ID())
end
end
while true do
follow()
wait(400,500)
end
Thx a lot works almost perfect !