Battledale_PRC8/_module/nss/jw_zen_magin_usd.nss
Jaysyn904 e5b3f6ad61 Finished PRC8 integration
Finished PRC8 integration.  Moved creature abilities to top hak.  Setup tooling.  Created release archive
2024-03-12 21:27:23 -04:00

83 lines
1.5 KiB
Plaintext

//::///////////////////////////////////////////////
//:: Custom User Defined Event
//:: FileName
//:: Copyright (c) 2001 Bioware Corp.
//:://////////////////////////////////////////////
/*
*/
//:://////////////////////////////////////////////
//:: Created By:
//:: Created On:
//:://////////////////////////////////////////////
void main()
{
ExecuteScript("prc_npc_userdef", OBJECT_SELF);
int nUser = GetUserDefinedEventNumber();
if(nUser == 1001) //HEARTBEAT
{
}
else if(nUser == 1002) // PERCEIVE
{
//object oZhent=GetObjectByTag("jw_new_zhent_wiz");
object oPC=GetLastPerceived();
if (!GetIsPC(oPC))
{
return;
}
int nDisguised=0;
if ( (GetTag(GetItemInSlot(INVENTORY_SLOT_CHEST,oPC))=="jw_zhent_splint")||(GetTag(GetItemInSlot(INVENTORY_SLOT_CHEST,oPC))=="jw_new_zh_robe") )
{
nDisguised=1;
}
if ((nDisguised==0)&&(GetObjectSeen(oPC,OBJECT_SELF)))
{
SetIsTemporaryEnemy(oPC,OBJECT_SELF);
if (!GetIsInCombat(OBJECT_SELF))
{
ActionAttack(oPC);
}
//SetIsTemporaryEnemy(oPC,oZhent);
if (Random(3)==1)
{
SpeakString("Intruder!");
}
}
}
else if(nUser == 1003) // END OF COMBAT
{
}
else if(nUser == 1004) // ON DIALOGUE
{
}
else if(nUser == 1005) // ATTACKED
{
}
else if(nUser == 1006) // DAMAGED
{
}
else if(nUser == 1007) // DEATH
{
}
else if(nUser == 1008) // DISTURBED
{
}
}