Initial commit. Updated release archive.

This commit is contained in:
Jaysyn904
2024-06-20 15:47:42 -04:00
parent d14b20cb85
commit e49d03aa23
6897 changed files with 6107848 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
#include "prc_alterations"
#include "x2_inc_spellhook"
void main()
{
object oTarget = GetSpellTargetObject();
effect eDur = EffectVisualEffect(460);
ApplyEffectToObject(DURATION_TYPE_TEMPORARY, eDur, oTarget, RoundsToSeconds(1));
if (GetLocalInt(OBJECT_SELF, "archmage_mastery_shaping") == 0)
{
SetLocalInt(OBJECT_SELF, "archmage_mastery_shaping", 1);
FloatingTextStringOnCreature("Mastery of Shaping: friends protection enabled.", OBJECT_SELF, FALSE);
}
else
{
SetLocalInt(OBJECT_SELF, "archmage_mastery_shaping", 0);
FloatingTextStringOnCreature("Mastery of Shaping: friends protection disabled.", OBJECT_SELF, FALSE);
}
}