Adds and Changes

Added missing crafting maps, removed unnecessary maps, changed a few miscellaneous things.
This commit is contained in:
2024-09-14 13:52:39 -04:00
parent 339f0f8b96
commit 7f75e229f9
2041 changed files with 184144 additions and 506679 deletions

View File

@@ -1,5 +1,3 @@
#include "prc_inc_racial"
//////////////////////////////////////////////////////////////////////////////////////////////////
// This block of code delevels a PC and sets them back to the same xp they had before deleveling
//////////////////////////////////////////////////////////////////////////////////////////////////
@@ -22,7 +20,7 @@ void Reset_Level(object oPC)
void Race_Check(object oPC)
{
string sDeity = GetLocalString(oPC,"Deity");
int iRace = MyPRCGetRacialType(oPC);
int iRace = GetRacialType(oPC);
if (sDeity == "Bahamut")
{
@@ -118,10 +116,11 @@ if (sDeity == "Kord")
}
if (sDeity == "Lolth")
{
if ((iRace==RACIAL_TYPE_DROW_MALE) || (iRace==RACIAL_TYPE_DROW_FEMALE) || (iRace==RACIAL_TYPE_HALFDROW))
{
SetLocalInt(oPC,"Race",1);
}
if (((iRace==RACIAL_TYPE_ELF)||(iRace==RACIAL_TYPE_HALFELF))
&&((GetSubRace(oPC)=="Drow")||(GetSubRace(oPC)=="drow")))
{
SetLocalInt(oPC,"Race",1);
}
}
if (sDeity == "Moradin")
{