15 lines
209 B
Plaintext
15 lines
209 B
Plaintext
#include "prc_inc_racial"
|
|
|
|
void main()
|
|
{
|
|
|
|
object oPC = GetPCSpeaker();
|
|
string Race = "Drow";
|
|
|
|
if (GetRacialType(oPC) == RACIAL_TYPE_DROW_MALE | RACIAL_TYPE_DROW_FEMALE)
|
|
{
|
|
SetSubRace (oPC, Race);
|
|
}
|
|
}
|
|
|