• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

How can I add colors to the sqm of rare, epic, legendary items? OTclient

Just if anyone find this thread and wants colors for items with OEN upgrade system please look into:

 
You have to define in the XML item whether it is rare, epic or legendary
I think I got a good solution for the container module, I put this because most of my items have article "a" before the name:
LUA:
local function setFrames()
for _, container in pairs(g_game.getContainers()) do
local window = container.itemsPanel
for i, child in pairs(window:getChildren()) do
local id = child:getItemId()
local price = 0

local name = child:getTooltip()
child:setImageSource("/images/ui/item")
if (name) then
if (string.find(name, "legendary")) then
child:setImageSource('/images/ui/rarity_gold')
elseif (string.find(name, "epic")) then
child:setImageSource('/images/ui/rarity_purple')
elseif (string.find(name, "rare")) then
child:setImageSource('/images/ui/rarity_blue')
elseif (string.find(name, "a")) then
child:setImageSource('/images/ui/rarity_white') --checking if frames work at all
end
end

end
end
end
inventory:
local function setFrames(item, itemWidget)
local name = item:getTooltip()


if (name) then
if (string.find(name, "legendary")) then
itemWidget:setImageSource('/images/ui/rarity_gold')
elseif (string.find(name, "epic")) then
itemWidget:setImageSource('/images/ui/rarity_purple')
elseif (string.find(name, "rare")) then
itemWidget:setImageSource('/images/ui/rarity_blue')
elseif (string.find(name, "a")) then
itemWidget:setImageSource('/images/ui/rarity_white')
end
end
end


the rest I followed the step by step and also made the change in the source and it worked

hope they help
 
Last edited:
You have to define in the XML item whether it is rare, epic or legendary
I think I got a good solution for the container module, I put this because most of my items have article "a" before the name:
LUA:
local function setFrames()
for _, container in pairs(g_game.getContainers()) do
local window = container.itemsPanel
for i, child in pairs(window:getChildren()) do
local id = child:getItemId()
local price = 0

local name = child:getTooltip()
child:setImageSource("/images/ui/item")
if (name) then
if (string.find(name, "legendary")) then
child:setImageSource('/images/ui/rarity_gold')
elseif (string.find(name, "epic")) then
child:setImageSource('/images/ui/rarity_purple')
elseif (string.find(name, "rare")) then
child:setImageSource('/images/ui/rarity_blue')
elseif (string.find(name, "a")) then
child:setImageSource('/images/ui/rarity_white') --checking if frames work at all
end
end

end
end
end
inventory:
local function setFrames(item, itemWidget)
local name = item:getTooltip()


if (name) then
if (string.find(name, "legendary")) then
itemWidget:setImageSource('/images/ui/rarity_gold')
elseif (string.find(name, "epic")) then
itemWidget:setImageSource('/images/ui/rarity_purple')
elseif (string.find(name, "rare")) then
itemWidget:setImageSource('/images/ui/rarity_blue')
elseif (string.find(name, "a")) then
itemWidget:setImageSource('/images/ui/rarity_white')
end
end
end


the rest I followed the step by step and also made the change in the source and it worked

hope they help
Were you able to get it working? What OTX2 server engine are you using? Can you leave the full tutorial on how you were able to solve it?
 
Guys, what upgrade systems do you use? That's the most important question.

//edit
With OENs upgrade system I've posted how to make it work a few posts above.

I could help to find a solution but need to know what scripts do you have for the upgrades
 
Were you able to get it working? What OTX2 server engine are you using? Can you leave the full tutorial on how you were able to solve it?
I did it in tfs 1.4, but I believe that in otx it is the same thing. You will follow the tutorial and when you get to the parts where it puts the code in .lua, use mine that I left there in the comment. Note that every item has article="a" before the name, for normal items you leave "a" even if you want to use legendary, rare, epic you will have to replace the a in the article with epic for example and it will show the item with the rarity image, you make this change in items.xml
 
Back
Top