Tried to make a rope for dexxers but I cant figure out how to make it so it doesnt require mana, for some reason it still leeches 11 mana (its based off kal ankurs mask), also, any way to remove the spell mantra from this?
 

Attachments

  • TeleRope.cs
    3.4 KB · Views: 13
Because it's casting the teleport spell, it's the spell that's consuming mana.

You would have to create a new spells that did not use mana.
 
Could you have it add mana, or a mana boost?
Is this item held by the user? If it not held by the player, the attributes may not work, though. These work for clothing, weapons, or armor.

Attributes.BonusMana = 15;

Attributes.RegenMana = 5;

Attributes.LowerManaCost = 100;

Hmm... yeah, it does not seem to take any attributes. Figured it could not be that easy :)
 
Last edited:
Probably edits to TeleportSpell, I notice this thing has charges and is being passed to the spell like as scroll. Errors there maybe.
 
Back