Added NWN Dark Sun module contents

Added NWN Dark Sun module contents.
This commit is contained in:
Jaysyn904
2021-07-12 21:24:46 -04:00
parent 556224a658
commit de24f81734
10609 changed files with 146652 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
//::///////////////////////////////////////////////
//:: 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("");
}
}
}