2025/12/28 Early update

Wemics have 5 RHD.
Fixed Whirling Blade.
Factotum now regenerates Inspiration after logging off and back on in he same server session.
Spellfire Wielder can't get extra spell levels from overcharging items.
Only one Chilling Fog at a time, casting a new one destroys the old one.
Heart of Fire now has a Chakra totem.
Pearl of Black doubt should be a bit more accurate.
Tweaked and tested psionic Keen Edge.
Fixed reversed sign for Echoblade validity in prc_equip.
Havoc Mage's Battlecast should clean up properly.
Updated readme.
This commit is contained in:
Jaysyn904
2025-12-28 00:28:56 -05:00
parent 376ced5b4c
commit 279580e5b5
18 changed files with 480 additions and 292 deletions

View File

@@ -94,8 +94,36 @@ void main()
float fLength = FeetToMeters(60.0);
effect eNone;
SetLocalInt(oPC, "WhirlingBlade", TRUE);
// Store original location to prevent movement
location lOrigin = GetLocation(oPC);
object oTarget = MyFirstObjectInShape(SHAPE_SPELLCYLINDER, fLength, lTarget, TRUE,
OBJECT_TYPE_CREATURE | OBJECT_TYPE_DOOR | OBJECT_TYPE_PLACEABLE, vOrigin);
while(GetIsObjectValid(oTarget))
{
if (oTarget != oPC && GetIsReactionTypeHostile(oTarget, oPC))
{
// Clear actions to prevent automatic movement
AssignCommand(oPC, ClearAllActions(TRUE));
// Perform the attack with stat bonus to BOTH attack and damage
DelayCommand(0.0, PerformAttack(oTarget, oPC, eNone, 0.0,
nStatBonus, nStatBonus, 0, // ? Fixed: was (nStatBonus, 0, 0)
"Whirling Blade: Hit!", "Whirling Blade: Miss!"));
// Force caster back to original position if they moved
DelayCommand(0.1, AssignCommand(oPC, ActionJumpToLocation(lOrigin)));
}
oTarget = MyNextObjectInShape(SHAPE_SPELLCYLINDER, fLength, lTarget, TRUE,
OBJECT_TYPE_CREATURE | OBJECT_TYPE_DOOR | OBJECT_TYPE_PLACEABLE, vOrigin);
}
DelayCommand(1.0f, DeleteLocalInt(oPC, "WhirlingBlade"));
/* SetLocalInt(oPC, "WhirlingBlade", TRUE);
object oTarget = MyFirstObjectInShape(SHAPE_SPELLCYLINDER, fLength, lTarget, TRUE, OBJECT_TYPE_CREATURE | OBJECT_TYPE_DOOR | OBJECT_TYPE_PLACEABLE, vOrigin);
@@ -103,10 +131,11 @@ void main()
{
if (oTarget != oPC && GetIsReactionTypeHostile(oTarget, oPC))
{
DelayCommand(0.0, PerformAttack(oTarget, oPC, eNone, 0.0, nStatBonus, 0, 0, "Whirling Blade: Hit!", "Whirling Blade: Miss!"));
DelayCommand(0.0, PerformAttack(oTarget, oPC, eNone, 0.0, nStatBonus, nStatBonus, 0,
"Whirling Blade: Hit!", "Whirling Blade: Miss!", TOUCH_ATTACK_RANGED_SPELL));
}
oTarget = MyNextObjectInShape(SHAPE_SPELLCYLINDER, fLength, lTarget, TRUE, OBJECT_TYPE_CREATURE | OBJECT_TYPE_DOOR | OBJECT_TYPE_PLACEABLE, vOrigin);
}
} */
DelayCommand(1.0f, DeleteLocalInt(oPC, "WhirlingBlade"));
PRCSetSchool();
}