Initial Commit

Initial Commit.
This commit is contained in:
Jaysyn904
2025-09-14 15:40:46 -04:00
parent 7083b33d71
commit 1eefc84201
19230 changed files with 11539227 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
//Author: slave_of_emotions
//Description: The script changes the user into the creature under ePoly for 1 hour per druid level.
void main()
{
object oPC = GetPCSpeaker();
object oTarget;
effect ePoly;
int nDuration = GetLevelByClass(CLASS_TYPE_DRUID);
oTarget = oPC;
ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_IMP_POLYMORPH), oTarget);
ePoly = EffectPolymorph(POLYMORPH_TYPE_WOLF);
ePoly = ExtraordinaryEffect(ePoly);
ApplyEffectToObject(DURATION_TYPE_TEMPORARY, ePoly, oTarget, HoursToSeconds(nDuration));
}