Files
HeroesStone_PRC8/_module/nss/zep_tint_spawn.nss
Jaysyn904 1eefc84201 Initial Commit
Initial Commit.
2025-09-14 15:40:46 -04:00

16 lines
356 B
Plaintext

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);
}