Open iteminfo.lub / iteminfo.lua and after:
identifiedDescriptionName = {
"An orange root that is supposedly good for your vision. Despite the Beta Carotene, kids don't care much for it.",
"^000088Recovers a small amount of HP^000000.",
"^ffffff_^000000",
"Weight :^777777 2^000000",
},
add:
identifiedDescriptionName2 = {
"Second version of description for Carrot",
},
change:
for k,v in pairs(DESC.identifiedDescriptionName) do
result, msg = AddItemIdentifiedDesc(ItemID, v)
if not result then
return false, msg
end
end
to:
if server_name ~= "rAthena" and DESC.identifiedDescriptionName2 ~= nill then
for k,v in pairs(DESC.identifiedDescriptionName2) do
result, msg = AddItemIdentifiedDesc(ItemID, v)
if not result then
return false, msg
end
end
else
for k,v in pairs(DESC.identifiedDescriptionName) do
result, msg = AddItemIdentifiedDesc(ItemID, v)
if not result then
return false, msg
end
end
end
If selected server is not "rAthena" and item has second version of description - we will see it.