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:
Jaysyn904
2024-09-16 23:40:48 -04:00
parent 7f75e229f9
commit 5d27edafba
6724 changed files with 558193 additions and 92109 deletions

View File

@@ -10,8 +10,7 @@
//:: Created By: Dom Queron
//:: Created On: 06-13-2002
//:://////////////////////////////////////////////
#include "prc_inc_spells"
#include "nw_i0_generic"
/*
@@ -61,7 +60,7 @@ int GZHasNegativeEffects(object oPC)
int GZGetIsBlindOrDeaf(object oPC)
{
int bBlind = ((GetHasEffect(EFFECT_TYPE_BLINDNESS,oPC) == TRUE) || (GetHasEffect(EFFECT_TYPE_DEAF,oPC)==TRUE));
int bBlind = ((PRCGetHasEffect(EFFECT_TYPE_BLINDNESS,oPC) == TRUE) || (PRCGetHasEffect(EFFECT_TYPE_DEAF,oPC)==TRUE));
return bBlind;
}
@@ -73,37 +72,37 @@ int GZGetIsDamaged(object oPC)
int GZGetHasAbilityDamage(object oPC)
{
int bAbilityDmg = (GetHasEffect(EFFECT_TYPE_ABILITY_DECREASE,oPC) == TRUE);
int bAbilityDmg = (PRCGetHasEffect(EFFECT_TYPE_ABILITY_DECREASE,oPC) == TRUE);
return bAbilityDmg;
}
int GZGetIsPoisoned(object oPC)
{
int bPoisoned = (GetHasEffect(EFFECT_TYPE_POISON,oPC) == TRUE);
int bPoisoned = (PRCGetHasEffect(EFFECT_TYPE_POISON,oPC) == TRUE);
return bPoisoned;
}
int GZGetIsDiseased(object oPC)
{
int bDiseased = (GetHasEffect(EFFECT_TYPE_DISEASE,oPC) == TRUE);
int bDiseased = (PRCGetHasEffect(EFFECT_TYPE_DISEASE,oPC) == TRUE);
return bDiseased;
}
int GZGetIsCursed(object oPC)
{
int bCursed = (GetHasEffect(EFFECT_TYPE_CURSE,oPC) == TRUE);
int bCursed = (PRCGetHasEffect(EFFECT_TYPE_CURSE,oPC) == TRUE);
return bCursed;
}
int GZGetIsPolymorphed(object oPC)
{
int bPoly = (GetHasEffect(EFFECT_TYPE_POLYMORPH,oPC) == TRUE);
int bPoly = (PRCGetHasEffect(EFFECT_TYPE_POLYMORPH,oPC) == TRUE);
return bPoly;
}
int GZHasNegativeLevels(object oPC)
{
int bLvl = (GetHasEffect(EFFECT_TYPE_NEGATIVELEVEL,oPC) == TRUE);
int bLvl = (PRCGetHasEffect(EFFECT_TYPE_NEGATIVELEVEL,oPC) == TRUE);
return bLvl;
}