20 lines
300 B
Plaintext
20 lines
300 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("The Mouser's Blade", 3, oPC, TRUE, FALSE);
|
|
|
|
}
|
|
|