• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

Tibia Store images .gif/.png

undead mage

Active Member
Joined
Mar 25, 2012
Messages
364
Solutions
2
Reaction score
47
Location
Amsterdam
I was wondering if it's possible to use .gif images for the mounts/outfits in the tibia store?
Also I saw that someone made a thread with alot of images for the shop but if you need something that isn't on that list, what would be the easiest way to make a .png image?
 
Use OTBuilder to open the .spr file and add the new .png's :).

EDIT: Don't forget to recompile the .spr after you added your sprites, then use OTItemEditor to create an items.otb and then replace it with the "old" one of your distro.

EDIT2: You'll also want to create an entry at items.xml so you can order a name to the item you just added into the game, maybe a functionality too, whatever you want.

Kind Regards,
Okke
 
Last edited:
Use OTBuilder to open the .spr file and add the new .png's :).

EDIT: Don't forget to recompile the .spr after you added your sprites, then use OTItemEditor to create an items.otb and then replace it with the "old" one of your distro.

EDIT2: You'll also want to create an entry at items.xml so you can order a name to the item you just added into the game, maybe a functionality too, whatever you want.

Kind Regards,
Okke
But that's if I want to add new images to my ot. But I need to export images out of the tibia.spr file in 64x64 and .png :p
 
Use OTBuilder to open the .spr file and add the new .png's :).

EDIT: Don't forget to recompile the .spr after you added your sprites, then use OTItemEditor to create an items.otb and then replace it with the "old" one of your distro.

EDIT2: You'll also want to create an entry at items.xml so you can order a name to the item you just added into the game, maybe a functionality too, whatever you want.

Kind Regards,
Okke

You can use ObjectBuilder to export outs in png. Also instead of using gif, you can make animated pngs.

u can use ObjectBuilder for export images.png 64x64
if u need use FastStone Photo Resizer for crop, resize or convert

Thanks for the response! But when I export an image it comes out as 32 x 32 not 64 x 64. Also this objectbuilder https://github.com/ottools/ObjectBuilder doesn't support client 10.95. I believe it supports untill 10.41. Does any of you know where I can find one that supports 10.95? Thanks!
 
You can use a tool such as ImageMagick to increase the canvas size of an image.

A simple command (Converts all GIFs in a folder to PNG, and increases their canvas size):
Code:
magick mogrify -gravity center -background transparent -extent 64x64 -format png *.gif
 
Back
Top