Added creatures & models

Added creatures, portraits & models in support of Horsefly Swamp Update.
This commit is contained in:
Jaysyn904
2023-08-12 00:55:47 -04:00
parent 71058b22ed
commit e4a37cd868
346 changed files with 1982132 additions and 21137 deletions

View File

@@ -0,0 +1,18 @@
// sc_ds_charm_cnv.nss
// by: Tsurani.Nevericy
#include "utl_i_parameters"
int StartingConditional()
{
object oSelf = OBJECT_SELF;
int nRacial = GetRacialType(oSelf);
int nVal = ConstantStringToInt(GetScriptParam("iRacialType"));
if (nVal == nRacial)
{
return TRUE;
}
return FALSE;
}