Added ACP v4.1
Added ACP v4.1. Full compile. Updated module name. Updated release archive.
This commit is contained in:
29
_module/nss/ischaotic.nss
Normal file
29
_module/nss/ischaotic.nss
Normal file
@@ -0,0 +1,29 @@
|
||||
//::///////////////////////////////////////////////
|
||||
//:: FileName ischaotic
|
||||
//:://////////////////////////////////////////////
|
||||
//:://////////////////////////////////////////////
|
||||
//:: Created By: Script Wizard
|
||||
//:: Created On: 4/24/2008 3:43:53 PM
|
||||
//:://////////////////////////////////////////////
|
||||
#include "prc_class_const"
|
||||
|
||||
int StartingConditional()
|
||||
{
|
||||
object oPC = GetPCSpeaker();
|
||||
|
||||
int nChaotic = (GetLevelByClass(CLASS_TYPE_BARBARIAN, oPC)
|
||||
+GetLevelByClass(CLASS_TYPE_BARD, oPC)
|
||||
+GetLevelByClass(CLASS_TYPE_CELEBRANT_SHARESS, oPC)
|
||||
+GetLevelByClass(CLASS_TYPE_HEARTWARDER, oPC)
|
||||
+GetLevelByClass(CLASS_TYPE_PYROKINETICIST, oPC)
|
||||
+GetLevelByClass(CLASS_TYPE_WILD_MAGE, oPC));
|
||||
|
||||
if (nChaotic > 0)
|
||||
{
|
||||
return TRUE;
|
||||
}
|
||||
else
|
||||
{
|
||||
return FALSE;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user