Major update
Fixed CCOH, Fixed starting GP, Fixed DMFI languages, Fix cep weapon appearances, Fixed new player start up system. Added PC deleter. Added ACP 4.1. Full compile. Updated release archive.
This commit is contained in:
@@ -1,7 +1,16 @@
|
||||
#include "prc_class_const"
|
||||
|
||||
int StartingConditional()
|
||||
{
|
||||
int iResult;
|
||||
|
||||
iResult = GetLevelByClass(CLASS_TYPE_CLERIC, GetPCSpeaker());
|
||||
return iResult;
|
||||
object oPC = GetPCSpeaker();
|
||||
|
||||
int iDivine = GetLevelByClass(CLASS_TYPE_CLERIC, oPC)
|
||||
+ GetLevelByClass(CLASS_TYPE_ARCHIVIST, oPC)
|
||||
+ GetLevelByClass(CLASS_TYPE_FAVOURED_SOUL, oPC)
|
||||
+ GetLevelByClass(CLASS_TYPE_HEALER, oPC);
|
||||
|
||||
if(iDivine > 0)
|
||||
return TRUE;
|
||||
|
||||
return FALSE;
|
||||
}
|
||||
|
Reference in New Issue
Block a user