i have started to spiral myself into DOL and am setting up a PvP server which will go public soon. I am an IT student and have been playing DAoC for a long time. So, i want to give you guys something back by adding some handy db scripts like this one:
- Code: Select all
-- This changes all realmspecific Bonusslots in items to Acuity (156) -- -- Items with Piety (6) -- UPDATE itemtemplate it SET it.Bonus1Type = 156 WHERE it.Bonus1Type = 6; UPDATE itemtemplate it SET it.Bonus2Type = 156 WHERE it.Bonus2Type = 6; UPDATE itemtemplate it SET it.Bonus3Type = 156 WHERE it.Bonus3Type = 6; UPDATE itemtemplate it SET it.Bonus4Type = 156 WHERE it.Bonus4Type = 6; UPDATE itemtemplate it SET it.Bonus5Type = 156 WHERE it.Bonus5Type = 6; -- Items with Empathy (7) -- UPDATE itemtemplate it SET it.Bonus1Type = 156 WHERE it.Bonus1Type = 7; UPDATE itemtemplate it SET it.Bonus2Type = 156 WHERE it.Bonus2Type = 7; UPDATE itemtemplate it SET it.Bonus3Type = 156 WHERE it.Bonus3Type = 7; UPDATE itemtemplate it SET it.Bonus4Type = 156 WHERE it.Bonus4Type = 7; UPDATE itemtemplate it SET it.Bonus5Type = 156 WHERE it.Bonus5Type = 7; -- Items with Intelligence (5) -- UPDATE itemtemplate it SET it.Bonus1Type = 156 WHERE it.Bonus1Type = 5; UPDATE itemtemplate it SET it.Bonus2Type = 156 WHERE it.Bonus2Type = 5; UPDATE itemtemplate it SET it.Bonus3Type = 156 WHERE it.Bonus3Type = 5; UPDATE itemtemplate it SET it.Bonus4Type = 156 WHERE it.Bonus4Type = 5; UPDATE itemtemplate it SET it.Bonus5Type = 156 WHERE it.Bonus5Type = 5; -- Items with Charisma (8) -- UPDATE itemtemplate it SET it.Bonus1Type = 156 WHERE it.Bonus1Type = 8; UPDATE itemtemplate it SET it.Bonus2Type = 156 WHERE it.Bonus2Type = 8; UPDATE itemtemplate it SET it.Bonus3Type = 156 WHERE it.Bonus3Type = 8; UPDATE itemtemplate it SET it.Bonus4Type = 156 WHERE it.Bonus4Type = 8; UPDATE itemtemplate it SET it.Bonus5Type = 156 WHERE it.Bonus5Type = 8;