NWNDS/nwn_dark_sun/trans_cv.nss
Jaysyn904 b01c5cc7db Added PnP Dire Rat.
Added PnP Dire Rat.
2021-07-21 17:48:43 -04:00

21 lines
489 B
Plaintext

/*
* Script generated by LS Script Generator, v.TK.0
*
* For download info, please visit:
* http://nwvault.ign.com/View.php?view=Other.Detail&id=1502
*/
// Put this script OnClick of a placeable.
void main()
{
// Get the creature who triggered this event.
object oPC = GetPlaceableLastClickedBy();
string sCv = GetLocalString(OBJECT_SELF, "TRANSITION_CV");
// Have us strike up a conversation with the PC.
ActionStartConversation(oPC, sCv, TRUE, FALSE);
}