//:://///////////////////////////////////////////// //:: 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; } 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); SetIsTemporaryEnemy(oPC,oZhent); if (!GetIsInCombat(OBJECT_SELF)) { ActionAttack(oPC); } //SetIsTemporaryEnemy(oPC,oZhent); if ((Random(3)==1)&&(GetLocalInt(OBJECT_SELF,"nSpoke")!=2)) { SpeakString("What the hell!"); 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 { } }