End of Year updates.

End of Year updates.
This commit is contained in:
Jaysyn904
2021-12-29 01:54:32 -05:00
parent f28baf80a6
commit b55c3cf1f3
1413 changed files with 34011 additions and 18031 deletions

View File

@@ -0,0 +1,28 @@
////////////////////////////////////////////
//
// Green Guardian Gargoyle Hold Attack
//
// CR_CLAW_GGG_L
//
// Keeps track of when the left claw hits
// and resets the counter every round.
//
////////////////////////////////////////////
#include "prc_inc_combmove"
#include "prc_misc_const"
void main()
{
object oGGG = OBJECT_SELF;
object oItem = GetSpellCastItem();
object oTarget = GetSpellTargetObject();
string sID = GetObjectUUID(oGGG);
string sLeft = sID + "LeftClaw";
SetLocalInt(oTarget, sLeft, 1);
DelayCommand(6.0f, SetLocalInt(oTarget, sLeft, 0));
}