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

Error with Item names

abreham

New Member
Joined
Aug 29, 2008
Messages
16
Reaction score
0
HEllo!i got a error on my tfs 0.2 8.22 server. When i "look" at a item it says "Items 1234 nothing is written on it" for example. And not "Sign nothing is written on it". Anyone here have the same problem or have got it. Please help me out, thanks /abreham

Edit!

another example gate of experience. I shall say "you see a gate of experience door only lvl 8 or higher can enter.. something like that. But now i got the problem that insteed of the name it show me the number. And i cant use tps stairs etc etc..
 
Last edited:
yes i have change a few things. Why cant i change things in items.xml like the ice hammer pirate boots and so on.. Is there anyway that i can change the items to what i want them to do. Thanks alot / peace out

<item id="7450" article="the" name="ice hammer">
<attribute key="weight" value="5500"/>
<attribute key="defense" value="50"/>
<attribute key="attack" value="38"/>
<attribute key="description" value="It seems to be enchanted with ice damage"/>
<attribute key="extradef" value="5"/>
<attribute key="elementice" value="4"/>
<attribute key="charges" value="100"/>
<attribute key="decayTo" value="2383"/>
<attribute key="showcharges" value="1"/>
<attribute key="weaponType" value="sword"/>

Code:
<item id="5462" name="pirate boots">
		<attribute key="weight" value="400"/>
		<attribute key="description" value="This boots got a extreme high haste rate."/>
		<attribute key="armor" value="2"/>
		<attribute key="slotType" value="feet"/>
		<attribute key="speed" value="65"/>
Code:
	<item id="7460" article="a" name="norse shield">
		<attribute key="description" value="This shield is got an enchant that's good for paladins "/>
		<attribute key="weight" value="4200"/>
		<attribute key="defense" value="30"/>
		<attribute key="skilldist" value="4"/>
		<attribute key="weaponType" value="shield"/
<item id="2529" article="a" name="black shield">
<attribute key="description" value="An unholy creature covers the shield, and i got 5% resistance to fire but increase the damage taken by ice by 5% "/>
<attribute key="weight" value="4200"/>
<attribute key="defense" value="30"/>
<attribute key="absorbPercentice" value="-5"/>
<attribute key="absorbPercentfire" value="5"/>
<attribute key="weaponType" value="shield"/
Code:
<item id="2542" article="a" name="tempest shield">
		<attribute key="description" value="Got an enchant that gives shielding skills when useing "/>
		<attribute key="weight" value="4200"/>
		<attribute key="defense" value="30"/>
		<attribute key="skillshield" value="4"/>
		<attribute key="weaponType" value="shield"/
 
The last 3 items (Norse shield, black shield and Tempest shield), you've forgot to add a ">" in the end of those 3 items.

The last line on those should be like this:
Code:
<attribute key="weaponType" value="shield"/>
 
Back
Top