Initial commit. Updated release archive.
This commit is contained in:
23
_module/nss/hamanperceive.nss
Normal file
23
_module/nss/hamanperceive.nss
Normal file
@@ -0,0 +1,23 @@
|
||||
/* Script generated by
|
||||
Lilac Soul's NWN Script Generator, v. 1.2
|
||||
|
||||
For download info, please visit:
|
||||
http://www.angelfire.com/space/lilacsoul */
|
||||
|
||||
//Goes OnPerceived of a creature
|
||||
void main()
|
||||
{
|
||||
|
||||
object oPC = GetLastPerceived();
|
||||
|
||||
if (!GetIsPC(oPC)) return;
|
||||
|
||||
object oTarget;
|
||||
oTarget = GetObjectByTag("dt_JPalaceMainInt");
|
||||
|
||||
AssignCommand(oTarget, ActionCloseDoor(oTarget));
|
||||
|
||||
SetLocked(oTarget, TRUE);
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user