Initial commit. Updated release archive.
This commit is contained in:
24
_module/nss/ro_n_drugdog.nss
Normal file
24
_module/nss/ro_n_drugdog.nss
Normal file
@@ -0,0 +1,24 @@
|
||||
/* 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;
|
||||
|
||||
if (!GetLastPerceptionSeen()) return;
|
||||
if (GetItemPossessedBy(oPC, "witchbud")== OBJECT_INVALID)
|
||||
return;
|
||||
|
||||
object oTarget;
|
||||
oTarget = GetObjectByTag("ct_SnifferDog");
|
||||
|
||||
AssignCommand(oTarget, ActionStartConversation(oPC, "drug_guard"));
|
||||
|
||||
}
|
Reference in New Issue
Block a user