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