15 lines
325 B
Plaintext
15 lines
325 B
Plaintext
|
// 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));
|
||
|
}
|