18 lines
305 B
Plaintext
18 lines
305 B
Plaintext
|
|
||
|
void main()
|
||
|
{
|
||
|
|
||
|
object oItem;
|
||
|
|
||
|
object oPC = GetModuleItemAcquiredBy();
|
||
|
|
||
|
oItem = GetModuleItemAcquired();
|
||
|
if (!GetIsPC(oPC)) return;
|
||
|
if (GetLocalInt(oPC, "ac_"+GetTag(oItem))) return;
|
||
|
SetLocalInt(oPC, "ac_"+GetTag(oItem), TRUE);
|
||
|
|
||
|
AddJournalQuestEntry("Persephone's Performances", 3, oPC, TRUE, FALSE);
|
||
|
|
||
|
}
|
||
|
|