PRC8/nwn/nwnprc/trunk/racescripts/race_appear.nss
Jaysyn904 6ec137a24e Updated AMS marker feats
Updated AMS marker feats.  Removed arcane & divine marker feats.  Updated Dread Necromancer for epic progression. Updated weapon baseitem models.  Updated new weapons for crafting & npc equip.
 Updated prefix.  Updated release archive.
2024-02-11 14:01:05 -05:00

61 lines
1.7 KiB
Plaintext

//::///////////////////////////////////////////////
//:: Name racial appearance enforcenemt
//:: FileName race_appear
//:: Copyright (c) 2001 Bioware Corp.
//:://////////////////////////////////////////////
/*
This script make sure a character is only useing
an appearance that is allowed by their race.
Takes transformational classes into account too.
Also applies wings/tails when appropriate
Note: Rather than the simplistic Appearance column
in racialtypes.2da this takes the data from
racialappear.2da
*/
//:://////////////////////////////////////////////
//:: Created By: Primogrnitor
//:: Created On: 13/9/06
//:://////////////////////////////////////////////
#include "prc_alterations"
void main()
{
object oPC = OBJECT_SELF;
if(GetIsPolyMorphedOrShifted(oPC))
return;
int nRace = GetRacialType(oPC);
int nCurrAppear = GetAppearanceType(oPC);
int nNewAppear = nCurrAppear;
int nCurrWings = GetCreatureWingType(oPC);
int nNewWings = nCurrWings;
int nCurrTail = GetCreatureTailType(oPC);
int nNewTail = nCurrTail;
//race checks
//appearance
nNewAppear = StringToInt(Get2DACache("racialtypes", "Appearance", nRace));
//wings
//tails
//class checks
//appearance
if(GetLevelByClass(CLASS_TYPE_LICH, oPC) >= 10)
nNewAppear = APPEARANCE_TYPE_DEMI_LICH;
else if(GetLevelByClass(CLASS_TYPE_LICH, oPC) >= 4)
nNewAppear = APPEARANCE_TYPE_LICH;
//wings
//tails
//set it if it changes
if(nNewAppear != nCurrAppear)
SetCreatureAppearanceType(oPC, nNewAppear);
if(nNewTail != nCurrTail)
SetCreatureTailType(nNewTail, oPC);
if(nNewWings != nCurrWings)
SetCreatureWingType(nNewWings, oPC);
}