• 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!

[OTC/Serv] Wrong item sprite

Forthanx

New Member
Joined
Jan 1, 2025
Messages
3
Reaction score
0
Hi,

I have known tibia for a long time, but only a few days ago I decided that I would try to create a custom server. I've been programming for some time now, so such a project is a nice challenge, but let's get down to business.

I've scrolled through the forums and haven't found an answer to my question, why adding a new item in OB and using the itemeditor I get a poison field as a sprite?

1737578708219.webp

I enabled transparency and expanded in OB and itemeditor as per the tutorials and still I have this effect, I also did this for the server using GameSpriteU32. I've added item to items.xml aswell.

I use OTC by mehah and server Downgraded and further developed by Nekiro / MillhioreBT 8.60.

For any help and direction I will be very grateful.
 

Attachments

Example


you create an item in objectbuilder. id is 10542 (Client Id).
1737588965790.webp

you go to the itemEditor , click on "Create Missing Item"
1737588982781.webp
check the item

1737589015271.webp


in server
  • gm login
  • /i 10341 (server ID)
and you get a poison field item ?
 
Last edited:
Thanks for fast response. Take a look:

1737650833905.webp

1737650874817.webp
1737650927938.webp

Looks correct I guess? :D
Post automatically merged:

Maybe I switch to another client/server if don't find any further solution, my project isn't in advanced stage so it's few days to recover my ideas :D.
 
Last edited:
to rule out that it is the client / .dat / .spr , put this in terminal

LUA:
local widget = g_ui.createWidget('Item')
widget:setItemId(11704)
widget:setMarginLeft(30)
g_game.getLocalPlayer():attachWidget(widget)
1737670368874.webp

the strange is that I use the same client and the same server and I don't have this problem. xd
 
Back
Top