Updated AMS marker feats. Removed arcane & divine marker feats. Updated Dread Necromancer for epic progression. Updated weapon baseitem models. Updated new weapons for crafting & npc equip. Updated prefix. Updated release archive.
20 lines
520 B
Plaintext
20 lines
520 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: Power Attack - Off
|
|
//:: prc_powatk_off
|
|
//:://////////////////////////////////////////////
|
|
/*
|
|
Turns Power Attack off.
|
|
*/
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Ornedan
|
|
//:: Created On: 22.05.2005
|
|
//:://////////////////////////////////////////////
|
|
|
|
void main()
|
|
{
|
|
object oPC = OBJECT_SELF;
|
|
SetLocalInt(oPC, "PRC_PowerAttack_Level", 0);
|
|
|
|
// Run the power attack applying script
|
|
ExecuteScript("ft_poweratk", oPC);
|
|
} |