Adds and Changes
Added missing crafting maps, removed unnecessary maps, changed a few miscellaneous things.
This commit is contained in:
@@ -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")
|
||||
{
|
||||
|
Reference in New Issue
Block a user