|
发表于 2024-4-29 16:07:52
|
显示全部楼层
--给装备加上洗炼属性
local function attrPlus(play, item, val)
local v = str1Fun(val)
local tbl = {
["abil"] = {
{
["i"] = 0,
["t"] = "[洗炼属性]:",
["c"] = 253,
["v"] = v,
},
},
["abilex"] = "3#26#134#1|3#24#259#1|3#23#411#1|3#28#207#1|3#27#382#1",
}
setitemcustomabil(play, item, tbl2json(tbl))
refreshitem(play, item);
recalcabilitys(play)
end 这个abilex 参数有什么用,能不能在装备属性上多预留一个 string 字段 可以保存东西、比如对装备进行了洗炼。但是属性还没有替换,需要保留在该装备上。
|
|