13 lines
356 B
Plaintext
13 lines
356 B
Plaintext
|
#include "quest_inc"
|
||
|
void main()
|
||
|
{
|
||
|
string sDB = CharacterDB(GetPCSpeaker());
|
||
|
|
||
|
SetLocalInt(OBJECT_SELF, "Quest_Halt", TRUE);
|
||
|
|
||
|
/*if (GetCampaignInt(sDB, "QUEST_BACKGROUND") == 5)*/ AdjustAlignment(GetPCSpeaker(), ALIGNMENT_LAWFUL, 5, FALSE);
|
||
|
|
||
|
DeleteQuest(GetPCSpeaker());
|
||
|
RemoveJournalQuestEntry("random_quest", GetPCSpeaker(), FALSE);
|
||
|
}
|