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

Enchanted Gems for imbuement properties

Polarbear72

Member
Joined
Mar 3, 2013
Messages
63
Solutions
1
Reaction score
5
Location
USA
Im running TFS 1.4

Im try to basically create copies of enchanted gems and have them give imbuement properties such as critical/mana leech/life leech

Basically I want to make it so you can use an enchanted gem on a piece of gear and it then enchant the gear with say life leech for 20 hours

Like i want the gear to have attributes like this once a enchanted gem is used on it

Lua:
<item id="2383" article="a" name="spike sword">
<attribute key="weight" value="5000" />
<attribute key="defense" value="21" />
<attribute key="attack" value="24" />
<attribute key="weaponType" value="sword" />
<attribute key="extradef" value="2" />
<attribute key="manaleechchance" value="100" />
<attribute key="manaleechamount" value="50" />
<attribute key="lifeleechchance" value="100" />
<attribute key="lifeleechamount" value="50" />
</item>
 
Back
Top