RATDOG/_module/nss/sc_ds_charm_cnv.nss
Jaysyn904 e4a37cd868 Added creatures & models
Added creatures, portraits & models in support of Horsefly Swamp Update.
2023-08-12 00:55:47 -04:00

19 lines
331 B
Plaintext

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