• 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 Destroying items thrown in the water

R0Dr1g0

New Member
Joined
Jan 25, 2009
Messages
11
Reaction score
0
Well ,i'm having another problem.
When i throw any item in the water (id 4608) the item aren't destroyed.
Anyone can point me a script that make the destruction of item ?
Thanks in advance
 
Code:
<item fromid="4608" toid="4613" name="shallow water">
		<attribute key="description" value="You see the silvery movement of fish."/>
		<attribute key="fluidSource" value="water"/>
		<attribute key="allowpickupable" value="1"/>
	</item>
 
Code:
	<item fromid="4608" toid="4613" name="shallow water">
		<attribute key="description" value="You see the silvery movement of fish."/>
[B][COLOR="Red"]		<attribute key="type" value="trashholder"/>
		<attribute key="effect" value="bluebubble"/>[/COLOR][/B]
		<attribute key="fluidSource" value="water"/>
		<attribute key="allowpickupable" value="1"/>
	</item>
btw you're using TFS 0.2.7?
 
Code:
	<item fromid="4608" toid="4613" name="shallow water">
		<attribute key="description" value="You see the silvery movement of fish."/>
[B][COLOR="Red"]		<attribute key="type" value="trashholder"/>
		<attribute key="effect" value="bluebubble"/>[/COLOR][/B]
		<attribute key="fluidSource" value="water"/>
		<attribute key="allowpickupable" value="1"/>
	</item>
btw you're using TFS 0.2.7?

Yeah,im using TFS 0.2.7 and i'm having very problems to fix the map and scripts.

Well i will test now , i will rep ++ even if don't work.
Thanks for the help

EDIT:It works!
Thank you
 
Last edited:
Back
Top