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

Request - Sink Script

chaotical

New Member
Joined
Jan 3, 2008
Messages
302
Reaction score
0
Location
Tokyo
I don't know if I am right about the section but in TFS 1.0 items don't sink when thrown in lava or water. Is it a missing script? If section is wrong move my thread.
 
Works fine for me on latest TFS 1.0, do they have the item attribute trashholder in items.xml?
Code:
<attribute key="type" value="trashholder" />
 
Works fine for me on latest TFS 1.0, do they have the item attribute trashholder in items.xml?
Code:
<attribute key="type" value="trashholder" />


<item id="493" name="water">
<attribute key="type" value="trashholder" />
<attribute key="effect" value="bluebubble" />
<attribute key="allowpickupable" value="1" />
</item>
<item fromid="598" toid="601" name="lava">
<attribute key="type" value="trashholder" />
<attribute key="effect" value="fire" />
<attribute key="allowpickupable" value="1" />
</item>
<item id="670" name="snow" />
<item id="671" name="ice" />
<item fromid="708" toid="711" name="tar">
<attribute key="type" value="trashholder" />
<attribute key="effect" value="poff" />
<attribute key="allowpickupable" value="1" />

Maybe allowpickupable to 0?
 
This should work fine, I have the same thing in items.xml. Do you use the latest TFS 1.0 from github?

#5173949f0eStarted by GitHub push by dalkon
[Win32-Release.exe] [Win32-Release.pdb.rar] [x64-Debug.exe] [x64-Debug.pdb.rar] [x64-Release.exe] [x64-Release.pdb.rar]
Changes
  • 33114a0 - shinobiartonline - onTradeAccept event Now is fine :)
  • 5306178 - dalkon - Fix #926
  • 0a3ce88 - shinobiartonline - Fix in onTradeAccept If return false trade will be canceled
  • 3949f0e - mark.samman - Change return type of internalCloseTrade from bool to void

I downloaded the 64x one and compiled it.

EDIT: I tried the datapack from the github but still same thing.
 
Last edited:
Back
Top