Originator - Administrator
The purpose of incantations is to give players a flexible way to customize the game play style of their favorite characters. With a little tinkering, one can invent some really excellent game changing mechanics by using the incantations API. This thread serves as a place for users to share their favorite incantations, feel free to post your best, or keep them secret, the choice is yours!
Updated: Friday, January 3, 2020 5:44 PM
Originator - Administrator
Here's a basic, but useful incantation. This is technically a ward incantation since it runs every game cycle. All it does is reveals the location under the mouse cursor, but only if that location is within the area of effect of your character.
if(API.Affectable(API.Target())) API.Reveal(API.Target());
Thursday, January 9, 2020 12:31 PM
Originator - Administrator
Probably one of the most useful incantations that applies to any character, sacrifice 5 health and add 1 weapon rank. API.Self.Sacrifice(5); API.Self.Upgrade(); API.Finish(0);
Friday, February 28, 2020 6:42 PM