20 lines
335 B
Plaintext
20 lines
335 B
Plaintext
#include "x0_i0_partywide"
|
|
|
|
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("Temple of the Forgotten One", 2, oPC, TRUE, FALSE);
|
|
|
|
}
|
|
|