8 class slot support for arcane & divine casters
8 class slot support for arcane & divine casters. Added Marker feat enforcement script. Expanded LA buyoff to 60 HD. Marker feat constant bug fixes.
This commit is contained in:
@@ -355,6 +355,16 @@ int GetCanBuyoffLA(object oPC)
|
||||
if (nChar >= StringToInt(Get2DACache("la_buyoff", "4th", nLA)))
|
||||
nReturn = TRUE;
|
||||
}
|
||||
if (nBuyoff == 4) // Purchased fourth already
|
||||
{
|
||||
if (nChar >= StringToInt(Get2DACache("la_buyoff", "5th", nLA)))
|
||||
nReturn = TRUE;
|
||||
}
|
||||
if (nBuyoff == 5) // Purchased fifth already
|
||||
{
|
||||
if (nChar >= StringToInt(Get2DACache("la_buyoff", "6th", nLA)))
|
||||
nReturn = TRUE;
|
||||
}
|
||||
if (DEBUG) DoDebug("nReturn "+IntToString(nReturn)+" nBuyoff "+IntToString(nBuyoff)+" nChar "+IntToString(nChar)+" nLA "+IntToString(nLA));
|
||||
|
||||
return nReturn;
|
||||
|
Reference in New Issue
Block a user