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

Ice wall Extension (Rme)?

tosse12

Panchira Project Member
Joined
Jun 10, 2007
Messages
864
Reaction score
9
Location
Sweden
Hi otlanders!
I got a problem with my Ice wall Extansion, and I am not sure what I am doing wrong.
Anyways, the issue is that it just do the "pole" part and nothing else (while NOT using autoborder). When I am using autoborder it does nothing, but removing the poles if I have those placed at the map.

I am not sure if this is correct but:
Code:
<materialsextension name="Ice Wall" author="Bobany" description="Ice wall" client="8.10;8.20;8.54">

	<brush name="icey wall" type="wall" server_lookid="6731">
		<wall type="horizontal">
			<item id="6731" chance="500"/>
			<item id="6737" chance="0"/>
		</wall>
		<wall type="vertical">
			<item id="6733" chance="400"/>
			<item id="6735" chance="0"/>

		</wall>
		<wall type="corner">
			<item id="6732" chance="1000"/>
		</wall>
		<wall type="pole">
			<item id="6730" chance="1000"/>
		</wall>
	</brush>

	<tileset name="Town">
		<terrain>
			<brush name="icey wall"/>
		</terrain>
	</tileset> 
</materialsextension>

Thanks in advance!

Tosse12

Edit:
Found another extension, but didn't work either (same problem)
Code:
	<brush name="frozen ice wall" type="wall" server_lookid="6729">
		<wall type="horizontal">
			<item id="6729" chance="500"/>
			<item id="6731" chance="500"/> -- This needs to be here for backwards compability --
			<item id="6737" chance="500"/> -- This needs to be here for backwards compability --

		</wall>
		<wall type="vertical">
			<item id="6728" chance="400"/>
			<item id="6733" chance="400"/> -- This needs to be here for backwards compability --
			<item id="6735" chance="400"/> -- This needs to be here for backwards compability --
			
		</wall>
		<wall type="corner">
			<item id="6732" chance="1000"/>
			<item id="6734" chance="1000"/> -- This needs to be here for backwards compability --
			<item id="6736" chance="1000"/> -- This needs to be here for backwards compability --
			<item id="6738" chance="1000"/> -- This needs to be here for backwards compability --
				
		</wall>
		<wall type="pole">
			<item id="6730" chance="1000"/>
		</wall>
	</brush>
 
Last edited:
Back
Top