Initial Commit

Initial Commit.
This commit is contained in:
Jaysyn904
2025-09-14 15:40:46 -04:00
parent 7083b33d71
commit 1eefc84201
19230 changed files with 11539227 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
void main () {
object oSelf = OBJECT_SELF;
int nApp = GetLocalInt(oSelf, "CEP_TINT_APPEARANCE");
if (nApp == 0)
nApp = 843;
string sScript = GetLocalString(oSelf, "CEP_TINT_SPAWNSCRIPT");
if (sScript == "")
sScript = "nw_c2_default9";
SetCreatureAppearanceType(oSelf, nApp);
ExecuteScript(sScript, oSelf);
}