Battledale_PRC8/_module/nss/jw_new_bguar_sit.nss
Jaysyn904 7b9e44ebbb Initial upload
Initial upload.  PRC8 has been added.  Module compiles, PRC's default AI & treasure scripts have been integrated.  Started work on top hak for SLA / Ability / Scripting modifications.
2024-03-11 23:44:08 -04:00

25 lines
658 B
Plaintext

//::///////////////////////////////////////////////
//:: Resume Waypoint Walking
//:: NW_WALK_WP.NSS
//:: Copyright (c) 2002 Bioware Corp.
//:://////////////////////////////////////////////
/*
Assigned to the normal and abnormal end
conversation events to have the creature
resume walking waypoints.
*/
//:://////////////////////////////////////////////
//:: Created By: Neil Flynn
//:: Created On: July 19, 2002
//:://////////////////////////////////////////////
#include "NW_I0_GENERIC"
void main()
{
string sCouch=GetStringRight(GetTag(OBJECT_SELF),1);
sCouch="jw_br_couch"+sCouch;
object oCouch=GetObjectByTag(sCouch);
ActionSit(oCouch);
}