Clear out experimental .35 files

Clear out experimental .35 files
This commit is contained in:
Jaysyn904
2024-02-11 13:04:14 -05:00
parent 2112b92e24
commit 618cd42b82
22356 changed files with 0 additions and 1248956 deletions

View File

@@ -1,22 +0,0 @@
//::///////////////////////////////////////////////
//:: Frenzied Berserker - Armor/Skin
//:://////////////////////////////////////////////
/*
Script for Auto Frenzy on hit
Moved to separate script to fix GetTotalDamageDealt() issues
*/
//:://////////////////////////////////////////////
//:: Created By: Oni5115
//:://////////////////////////////////////////////
void main()
{
int iDam = GetTotalDamageDealt();
iDam += GetLocalInt(OBJECT_SELF, "PC_Damage");
SetLocalInt(OBJECT_SELF, "PC_Damage", iDam);
int iCHP = GetCurrentHitPoints(OBJECT_SELF) - iDam;
string sFeedback = GetName(OBJECT_SELF) + " : Current HP = " + IntToString(iCHP);
SendMessageToPC(OBJECT_SELF, sFeedback);
}