func int C_NpcIsHuman(var C_NPC slf){
PrintDebugNpc (PD_ZS_DETAIL,"C_NpcIsHuman");
PrintDebugString (PD_ZS_DETAIL,"...name: ", slf.name);
if (slf.guild < GIL_SEPERATOR_HUM)
{
PrintDebugNpc (PD_ZS_DETAIL,"...true");
return TRUE;
}
else
{
PrintDebugNpc (PD_ZS_DETAIL,"...false");
return FALSE;
};
};