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

I have two problems :( Script Aol and Vials

stanczyk

Scripter
Joined
Nov 24, 2009
Messages
293
Reaction score
2
I have TFS 0.3.6 and my Amulet of Loss never drop what i did work?

<item id="2173" article="a" name="amulet of loss">
<attribute key="weight" value="420"/>
<attribute key="slotType" value="necklace"/>
<attribute key="preventDrop" value="1"/>
</item>

And Second problem im drink Potion and my vial dont removed what and where i must add?


Tell me tutorial for my first and Second problem.


I Give Rep++++
 
This is if you want to remove empty vials only in specific potions:

Just delete: (Example: strong health potion)
LUA:
empty = 7634,
from potions config.

Example:

Before:
LUA:
[7588] = {empty = 7634, splash = 2, health = {200, 400}, level = 50, vocations = {3, 4, 7, 8}, vocStr = "knights and paladins"}, -- strong health potion

After:
LUA:
[7588] = {splash = 2, health = {200, 400}, level = 50, vocations = {3, 4, 7, 8}, vocStr = "knights and paladins"}, -- strong health potion

This for all potions:

Change:
LUA:
removeOnUse = "no",

To:
LUA:
removeOnUse = "yes",
 
This is if you want to remove empty vials only in specific potions:

Just delete: (Example: strong health potion)
LUA:
empty = 7634,
from potions config.

Example:

Before:
LUA:
[7588] = {empty = 7634, splash = 2, health = {200, 400}, level = 50, vocations = {3, 4, 7, 8}, vocStr = "knights and paladins"}, -- strong health potion

After:
LUA:
[7588] = {splash = 2, health = {200, 400}, level = 50, vocations = {3, 4, 7, 8}, vocStr = "knights and paladins"}, -- strong health potion

This for all potions:

Change:
LUA:
removeOnUse = "no",

To:
LUA:
removeOnUse = "yes",

In folder...?
 
Back
Top