Finished PRC8 integration. Moved creature abilities to top hak. Setup tooling. Created release archive
70 lines
1.2 KiB
Plaintext
70 lines
1.2 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)||GetIsPC(GetMaster(oPC)))
|
|
{
|
|
return;
|
|
}
|
|
|
|
if ((Random(2)==1)&&(GetLocalInt(OBJECT_SELF,"nSpoke")!=2))
|
|
{
|
|
SpeakString("An intruder!");
|
|
SetLocalInt(OBJECT_SELF,"nSpoke",2);
|
|
}
|
|
|
|
|
|
|
|
}
|
|
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
|
|
{
|
|
|
|
}
|
|
|
|
}
|
|
|