19 lines
331 B
Plaintext
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;
|
||
|
}
|