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
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
Last edited by Vodkita; 12-18-2015 at 03:09 PM.
@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 !