19 lines
299 B
Plaintext
19 lines
299 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("Return of the Rats", 5, oPC, TRUE, FALSE);
|
|
|
|
}
|
|
|