forked from Jaysyn/PRC8
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.
23 lines
624 B
Plaintext
23 lines
624 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: Fist of Zuoken
|
|
//:: psi_zuoken.nss
|
|
//:://////////////////////////////////////////////
|
|
//:: Check Fist of Zuoken unarmed attack bonus.
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Stratovarius
|
|
//:: Created On: April 21, 2005
|
|
//:://////////////////////////////////////////////
|
|
|
|
#include "prc_inc_unarmed"
|
|
|
|
void main()
|
|
{
|
|
//Evaluate The Unarmed Strike Feats
|
|
//UnarmedFeats(oPC);
|
|
SetLocalInt(OBJECT_SELF, CALL_UNARMED_FEATS, TRUE);
|
|
|
|
//Evaluate Fists
|
|
//UnarmedFists(oPC);
|
|
SetLocalInt(OBJECT_SELF, CALL_UNARMED_FISTS, TRUE);
|
|
}
|