Further file organization

Further file organization
This commit is contained in:
Jaysyn904
2023-08-23 22:11:00 -04:00
parent 3062876237
commit d87fe14826
22364 changed files with 0 additions and 3253 deletions

View File

@@ -0,0 +1,19 @@
// Added compatibility for PRC base classes
#include "inc_debug"
#include "prc_class_const"
int StartingConditional()
{
if(DEBUG) DoDebug("m0q01a08kettsck8 running");
object oPC = GetPCSpeaker();
int bCondition = (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))
&& GetLocalInt(GetModule(),"NW_G_M0Q01_ROGUE_TEST") < 2;
return bCondition;
}