Yes. This is result:can you give me show sample code?
here is smth I already tried
http://gamingonstero...asttargetspell/
Used code:
require 'deLibrary' DBG = attachDebugger(10,500,Colors.White,14) function doOnLoop() DBG.Reset() -- Searching for objects local ObjList = ObjectManager.GetObjectList(nil, function(a) return GetObjectBaseName(a):lower() == "sightward" end) -- Writing everything we found.. if ObjList == nil then DBG.Write("No wards found in objectmanager.") else DBG.Write("Next wards found in objectmanager:") for i=1, #ObjList do local origin = GetOrigin(ObjList[i]) DBG.Write(i .. ") "..origin.x.." "..origin.y.." "..origin.z) end end end OnLoop(function(a) doOnLoop() end)Will add deObjector in a moment.