9 lines
280 B
Plaintext
9 lines
280 B
Plaintext
#include "quest_inc"
|
|
void main()
|
|
{
|
|
object oPC = GetPCSpeaker();
|
|
CreateItemOnObject("quest_proof_note", oPC);
|
|
if (GetCampaignString(CharacterDB(oPC), "QUEST_EXTRA2") != "mustkill") AddRandomQuestJournalEntry(oPC, 2);
|
|
SetLocalInt(OBJECT_SELF, "Quest_Halt", TRUE);
|
|
}
|