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

problem about items..

Coca Cola

New Member
Joined
Apr 10, 2010
Messages
164
Reaction score
0
well, in my ot i sell edit items with attributes , and i searched a lot of commands and i do not sucssede .. so i would like to create one item in item editor and automaticaly the item goes to the server .. because i cant turn off the server every moment that one item is created , if not possible please tell me another solution

ty,cya,sorry for the bad english
 
Last edited:
this dont work :(
i create an item , than i put in mods , then i reload mods and dont work :/

i used this

Code:
<mod name="Custom items" enabled="yes">
        	<item id="11391" article="a" name="runed sword"><![CDATA[
		<attribute key="weight" value="4600"/>
		<attribute key="defense" value="32"/>
		<attribute key="attack" value="45"/>
		<attribute key="weaponType" value="sword"/>
		<attribute key="extradef" value="2"/>
	]]></item>
</mod>
 
Code:
<mod name="Custom items" enabled="yes">
        	<item id="11391" article="a" name="runed sword">
		<attribute key="weight" value="4600"/>
		<attribute key="defense" value="32"/>
		<attribute key="attack" value="45"/>
		<attribute key="weaponType" value="sword"/>
		<attribute key="extradef" value="2"/>
	</item>
</mod>

try this..
 
Code:
<mod name="Custom items" enabled="yes">
        	<item id="11391" article="a" name="runed sword">
		<attribute key="weight" value="4600"/>
		<attribute key="defense" value="32"/>
		<attribute key="attack" value="45"/>
		<attribute key="weaponType" value="sword"/>
		<attribute key="extradef" value="2"/>
	</item>
</mod>

try this..
stop fail;
Code:
<?xml version="1.0" encoding="UTF-8"?>
<mod name="grr" enabled="yes">
	<item id="11391" article="a" name="runed sword">
		<attribute key="weight" value="4600"/>
		<attribute key="defense" value="32"/>
		<attribute key="attack" value="45"/>
		<attribute key="weaponType" value="sword"/>
		<attribute key="extradef" value="2"/>
	</item>
</mod>
 
wont work , appear "couldn't add item : 11391"

:/

i go to the editor and i create one item by deprecateds items
so i put this id in mods , and then i write on tibia /reload mods , after cant add the item
 
Last edited:
Back
Top