Just if anyone find this thread and wants colors for items with OEN upgrade system please look into:
look into OEN's upgrade system. There you need to fix it. I guess its not changing item description rather using item:setCustomAttribute to set custom attributes and then reads them in onLook
this is from upgrade_system_core.lua
LUA:local copy = Game.createItem(target.itemid, 1) copy:setRarity(target:getRarityId()) copy:setCustomAttribute("upgrade", target:getUpgradeLevel()) copy:setCustomAttribute("item_level", target:getItemLevel()) if target:isUnique() then copy:setCustomAttribute("unique", target:getUnique()) end
So when you're creating a new...