NWNDS/nwnds_module/onperc_kimzahn.nss
Jaysyn904 de24f81734 Added NWN Dark Sun module contents
Added NWN Dark Sun module contents.
2021-07-12 21:24:46 -04:00

34 lines
940 B
Plaintext

//::///////////////////////////////////////////////
//:: Name: OnPerc_Kimzahn
//:: Copyright (c) 2012 Athas Reborn
//:://////////////////////////////////////////////
/*
Kimzahn's On Perception script
*/
//:://////////////////////////////////////////////
//:: Created By: DM Heatstroke
//:: Created On: February 18 2012
//:://////////////////////////////////////////////
void main()
{
ExecuteScript("prc_npc_percep", OBJECT_SELF);
ExecuteScript("nw_c2_default2", OBJECT_SELF);
object oSeen = GetLastPerceived();
int nCount2 = GetLocalInt(OBJECT_SELF,"SaidMyLine2");
nCount2 ++;
if (nCount2==1)
{
if (GetIsPC(oSeen))
{
ActionSpeakString("I don't know who you are but I will not allow you to prevent me from destroying this vile Orb!");
SetLocalInt(OBJECT_SELF,"SaidMyLine2",nCount2);
ActionWait(3.5);
ActionSpeakString("");
}
}
}