﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc	blockedby	blocking
1	Set Uniques	epyon	epyon	"Implement a set Uniques system. In lua, a set element would have the following new fields : an IF_SET flag, and a set = ""setname"". Then, a separate entity of sets would be present:

{{{
#!lua
ItemSet{
  id = ""gothic"",
  OnEquip = function ()
    items = Player.setItemsEquipped( id )
    if items > 2 then
      Player.addFlag( BF_GOTHIC )
    end
  end,
  OnRemove = function ()
    items = Player.setItemsEquipped( id )
    if items < 3 then
      Player.removeFlag( BF_GOTHIC )
    end
  end,
};
}}}

Try to automate as much as possible with Lua, possibly the engine would not know about sets at all!"	task	assigned	major	0.9.9	lua	0.9.8.10					
