Amon_PRC8/_module/nss/rall_statue_diam.nss

17 lines
271 B
Plaintext
Raw Normal View History

2025-04-03 19:00:46 -04:00
void main()
{
object oPC = GetLastUsedBy();
if (!GetIsPC(oPC)) return;
if (GetItemPossessedBy(oPC, "BlackDiamond")== OBJECT_INVALID)
return;
object oTarget;
oTarget = GetObjectByTag("RallStatue_Plot");
AssignCommand(oTarget, ActionStartConversation(oPC, ""));
}