do i need to do something in Diff/nemo patches?
Edit:
mine my client reads the itemInfo_EN.lua so i created itemInfo_EN_test.lua and put this
tell me if this correct
dofile("System/itemInfo_EN_test.lua")
tbl_custom = {
[30000] = {
unidentifiedDisplayName = "Zeny",
unidentifiedResourceName = "¹«ÇÑ°¡Á×ÁÖ¸Ó´Ï",
unidentifiedDescriptionName = { "Unknown Item, can be identified by using a ^6666CCMagnifier^000000." },
identifiedDisplayName = "Zeny",
identifiedResourceName = "¹«ÇÑ°¡Á×ÁÖ¸Ó´Ï",
identifiedDescriptionName = { "..." },
slotCount = 0,
ClassNum = 0,
costume = false
},
[30001] = {
unidentifiedDisplayName = "Cash Points",
unidentifiedResourceName = "ÄíÆù",
unidentifiedDescriptionName = { "Unknown Item, can be identified by using a ^6666CCMagnifier^000000." },
identifiedDisplayName = "Cash Points",
identifiedResourceName = "ÄíÆù",
identifiedDescriptionName = { "..." },
slotCount = 0,
ClassNum = 0,
costume = true
},
}
-- Now for a helper function because i hate repetitions
-- It adds items from curTable if it is not present in refTable
function itemAdder(curTable, refTable)
for ItemID,DESC in pairs(curTable) do
if refTable == nil or refTable[ItemID] == nil then
result, msg = AddItem(ItemID,DESC.unidentifiedDisplayName,DESC.unidentifiedResourceName,DESC.identifiedDisplayName,DESC.identifiedResourceName, DESC.slotCount, DESC.ClassNum)
if not result then
return false, msg
end
for k,v in pairs(DESC.unidentifiedDescriptionName) do
result, msg = AddItemUnidentifiedDesc(ItemID, v)
if not result then
return false, msg
end
end
for k,v in pairs(DESC.identifiedDescriptionName) do
result, msg = AddItemIdentifiedDesc(ItemID, v)
if not result then
return false, msg
end
end
if nil ~= DESC.EffectID then
result, msg = AddItemEffectInfo(ItemID, DESC.EffectID)
end
if not result == true then
return false, msg
end
if nil ~= DESC.costume then
result, msg = AddItemIsCostume(ItemID, DESC.costume)
end
if not result == true then
return false, msg
end
end
end
return true, "good"
end
-- And the newly designed main function
function main()
result, msg = itemAdder(tbl_custom, nil)
-- add custom items (including official overrides)
if result then
result, msg = itemAdder(tbl, tbl_custom)
-- add non-overridden official items
end
return result, msg
end
do i need to put something in the itemInfo_EN.lua?
EDIT:
figure this one out thanks