Lineage 2 Tower Forum

Full Version: Problem with pve target.
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
hello. i have a problem with pve targer and /ignore.
i bot in mos and in middle of room appear something like npcs
with name furnace of balance, furnace of will etc. i want target
and hit only the furnace of protection, but with /ignore or with config
i have only the chooice "furnane, and with that it remove the target from all funance. any idea how to target only 1 of those?
So if you have in target "furnace of balance" and /ignore it stops attacking all furnace types?
(06-10-2012 01:21 AM)Fox Wrote: [ -> ]So if you have in target "furnace of balance" and /ignore it stops attacking all furnace types?

yes exactly.
This is so weird different mobs don't have the same ID or name and still sees them as one... they have titles is this retail server EU, US ?
i got same problem like u, i overcome it with simple script.

    LUA Programming
ShowToClient("Furnace","Master Target Script Enabled!");
 
repeat
	Command("/target Furnace Of Protection")
	loc = GetTarget():GetLocation()
	posX = loc.X
	posY = loc.Y
	posZ = loc.Z
 
	ShowToClient("Furnace","my x declared is:  less than 112760 nad more than 112000")
	ShowToClient("Furnace","my y declared is:  less than -79516 nad more than -79905")
	ShowToClient("Furnace","Target loc: "..loc.X..", "..loc.Y..", "..loc.Z)
	if(posX < 112760 and posX > 112000) then 
		ShowToClient("Furnace","Correct x")
		if (posY < -79516 and posY > -79905) then
			ShowToClient("Furnace","Correct y")
			Sleep(10*6000);
		else
			ClearTargets();
			CancelTarget(true)
			ShowToClient("Furnace","Not Your one!");
		end
	else
		ClearTargets();
		CancelTarget(true)
		ShowToClient("Furnace","Not Your one!");
	end
	Sleep(10*6000);
until false



feel free with modifying it.

in every if, u have available range where u can have Furnace of Protection. So if u change room, u have to change ranges of x and y.
have a nice time
Reference URL's