15 lines
187 B
Plaintext
15 lines
187 B
Plaintext
|
//Put this script OnUsed
|
||
|
void main()
|
||
|
{
|
||
|
|
||
|
object oPC = GetLastUsedBy();
|
||
|
|
||
|
if (!GetIsPC(oPC)) return;
|
||
|
|
||
|
if (GetHitDice(oPC) < 20)
|
||
|
return;
|
||
|
|
||
|
ActionStartConversation(oPC, "mirrortalk044");
|
||
|
|
||
|
}
|