Updated AMS marker feats

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.
This commit is contained in:
Jaysyn904
2024-02-11 14:01:05 -05:00
parent 618cd42b82
commit 6ec137a24e
24762 changed files with 1528530 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
// Added compatibility for PRC base classes
#include "inc_debug"
#include "prc_class_const"
int StartingConditional()
{
if(DEBUG) DoDebug("m0q01a08kettsgk1 running");
object oPC = GetPCSpeaker();
int bCondition = GetIsObjectValid(GetItemPossessedBy(oPC,"NW_ROGUE_ITEM"))
&& GetLocalInt(GetModule(),"NW_G_M0Q01_ROGUE_TEST") == 1
&& (GetLevelByClass(CLASS_TYPE_ARTIFICER, oPC)
|| GetLevelByClass(CLASS_TYPE_BARD, oPC)
|| GetLevelByClass(CLASS_TYPE_BEGUILER, oPC)
|| GetLevelByClass(CLASS_TYPE_NINJA, oPC)
|| GetLevelByClass(CLASS_TYPE_ROGUE, oPC)
|| GetLevelByClass(CLASS_TYPE_PSYCHIC_ROGUE,oPC)
|| GetLevelByClass(CLASS_TYPE_SCOUT, oPC));
return bCondition;
}