forked from Jaysyn/PRC8
Updated Release Archive. Fixed Mage-killer prereqs. Removed old LETO & ConvoCC related files. Added organized spell scroll store. Fixed Gloura spellbook. Various TLK fixes. Reorganized Repo. Removed invalid user folders. Added DocGen back in.
13 lines
330 B
Plaintext
13 lines
330 B
Plaintext
// store PC's true form - the appearance is restored by prc_onenter.nss
|
|
// for compatibility with BioWare 'horse-scripts'
|
|
|
|
#include "prc_inc_shifting"
|
|
#include "x3_inc_horse"
|
|
|
|
void main()
|
|
{
|
|
object oPC = OBJECT_SELF;
|
|
|
|
if(!GetIsDM(oPC) && !HorseGetIsMounted(oPC))
|
|
StoreCurrentAppearanceAsTrueAppearance(oPC, TRUE);
|
|
} |