Lineage 2 Tower Forum

Full Version: Auto Activate Soulshots
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Should make a choice in (Use Item) to enable automatic soulshots
/deletethread
    LUA Programming
function Shots(value)
	local items = GetInventory();
	for i in items.list do
		if string.match(i.Name, "Spiritshot") or string.match(i.Name, "Soulshot") then
			ActivateSoulShot(i.displayId,value)
		end;
	end;
end;
 
 
Shots(false);-- dissable shots
Shots(true);-- enable shots

Reference URL's