UW2_PRC8/_module/nss/teleheal.nss

15 lines
325 B
Plaintext
Raw Permalink Normal View History

2023-09-25 20:24:01 -04:00
// A Healing script good for attaching to Fountains and Kegs.
// by. Sin (GOC) and the help of Brenon Holmes.
void main()
{
object oPC = GetLastUsedBy();
//Get Trapdoor
object oDoor = GetObjectByTag("telefountain");
//start trapdoor conversation
AssignCommand (oPC,ActionStartConversation(oDoor));
}