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

Lua Create Item with same sprite

TiuTalk

PHP Developer
Joined
Jan 7, 2009
Messages
89
Reaction score
0
Location
Rio de Janeiro - Brasil
Hi there...

I want to create a "new" item, just for one quest... It'll be the same looktype (sprite) that small emerald (2149), but with another name...

How can i do this without edit the .dat? I can't use the same looktype of another item? :huh:
 
Last edited:
Well download the OTitemEditor 8.4, thanks to SimOne for creating it!
Download Link

You open the editor, Load OTB file from your server: data/items/

Now, you choose one fomr the list that has no image... like this one:

imageeeejt8.png


And you can change cid to ID of the image you whant:

imageciddpo4.png


Save your items.otb and then open items.xml...

Now you paste this into a new line:

PHP:
<item id="9663" name="SUPER BOH">
		<attribute key="weight" value="750"/>
		<attribute key="slotType" value="feet"/>
		<attribute key="speed" value="40"/>
	</item>

In:
<item id="9663"
Put the sid, your sid is the one from here:

imagecidgn5.png


And the other things like name="", attributes at your own...

If i helped you REP++ me!
 
Last edited:
Back
Top