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

  1. //::///////////////////////////////////////////////
  2. //:: nw_g0_convplac
  3. //::
  4. //:: Copyright (c) 2002 Bioware Corp.
  5. //:://////////////////////////////////////////////
  6. /*
  7.     Cause a placeable object to start a
  8.     conversation with the PC.
  9.     
  10.     Use this script as the OnUsed event
  11.     of a Placeable object that is flagged as
  12.     Useable, Has NO Inventory, and is NOT Static.
  13. */
  14. //:://////////////////////////////////////////////
  15. //:: Created By: Sydney Tang
  16. //:: Created On: Aug 08, 2002
  17. //:://////////////////////////////////////////////
  18.  
  19. void main()
  20. {
  21.     ActionStartConversation(GetLastUsedBy());
  22. }
  23.