19 lines
290 B
Plaintext
19 lines
290 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("Magic Eye", 1, oPC, TRUE, FALSE);
|
||
|
|
||
|
}
|
||
|
|