Updated Release Archive

Updated Release Archive.  Fixed Mage-killer prereqs.  Removed old LETO & ConvoCC related files.  Added organized spell scroll store.  Fixed Gloura spellbook. Various TLK fixes.  Reorganized Repo.  Removed invalid user folders. Added DocGen back in.
This commit is contained in:
Jaysyn904
2023-08-22 10:00:21 -04:00
parent 3acda03f30
commit 5914ed2ab5
22853 changed files with 57524 additions and 47307 deletions

View File

@@ -0,0 +1,35 @@
/*
Blink Shirt
This rough-looking garment looks like it has been made of coarse brown fur, but it displays obviously magical features. The shirt seems to shift and move on its own, and it
fades into a barely corporeal mist near your waist. Most disconcerting of all, patches of the garment seem transparent, as if they have temporarily shifted to some strange
elsewhere. Because different parts of the garment appear phased out at different times, these patches of incorporeality seem to roam over the surface of the shirt.
You gain the ability to teleport yourself (as dimension door) up to 10 feet at will. Using this ability is a standard action.
Essentia: For every point of essentia invested, you can teleport an additional 10 feet.
*/
#include "spinc_dimdoor"
#include "moi_inc_moifunc"
void main()
{
object oMeldshaper = OBJECT_SELF;
int nEssentia = GetEssentiaInvested(oMeldshaper, MELD_BLINK_SHIRT);
location lTarget = PRCGetSpellTargetLocation();
float fDist = GetDistanceBetweenLocations(lTarget, GetLocation(oMeldshaper));
// It's a move action if done this way
if (GetIsMeldBound(oMeldshaper, MELD_ACROBAT_BOOTS) == CHAKRA_TOTEM)
if(!TakeMoveAction(oMeldshaper)) return;
// If it's within range
if (FeetToMeters(10 + (10.0 * nEssentia)) >= fDist)
{
DimensionDoor(oMeldshaper, GetMeldshaperLevel(oMeldshaper, CLASS_TYPE_TOTEMIST, MELD_BLINK_SHIRT));
}
else
FloatingTextStringOnCreature("Target is too far away for Blink Shirt!", oMeldshaper, FALSE);
}