home *** CD-ROM | disk | FTP | other *** search
/ PC Zone 125 / DPPCZ0203B.7z / DPPCZ0203B.ISO / Demos / Neverwinter / data1.cab / override / nw_g0_convdoor.nss < prev    next >
Text File  |  2002-09-10  |  552b  |  22 lines

  1. //::///////////////////////////////////////////////
  2. //:: nw_g0_convdoor
  3. //::
  4. //:: Copyright (c) 2002 Bioware Corp.
  5. //:://////////////////////////////////////////////
  6. /*
  7.     Cause a door to start a
  8.     conversation with the PC.
  9.     
  10.     Use this script as the OnFailToOpen event
  11.     of a locked door.
  12. */
  13. //:://////////////////////////////////////////////
  14. //:: Created By: Sydney Tang
  15. //:: Created On: Aug 08, 2002
  16. //:://////////////////////////////////////////////
  17.  
  18. void main()
  19. {
  20.     ActionStartConversation(GetEnteringObject());
  21. }
  22.