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

How to block distance potion friend [solved]

StormRusher

New Member
Joined
Dec 23, 2009
Messages
138
Reaction score
0
Well, i need a way to block distance potion friend
does it possible?

thanks
 
Last edited:
In data/actions/actions.xml

Change allowfaruse to 0 for all your potions:

Code:
<action itemid="7618" event="script" value="liquids/health_potion.lua" allowfaruse="1"/>

to

Code:
<action itemid="7618" event="script" value="liquids/health_potion.lua" allowfaruse="0"/>
 
Back
Top