31 lines
		
	
	
		
			711 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			711 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
//::///////////////////////////////////////////////
 | 
						|
//:: qst_slayer_end.nss
 | 
						|
//:: Copyright (c) 2022 Project RATDOG
 | 
						|
//:://////////////////////////////////////////////
 | 
						|
/*
 | 
						|
    Ends "The Orcus-Slayer" quest.
 | 
						|
*/
 | 
						|
//:://////////////////////////////////////////////
 | 
						|
//:: Created By: Tolen
 | 
						|
//:: Created On: 9/2/2005 11:31:01 PM
 | 
						|
//:://////////////////////////////////////////////
 | 
						|
 | 
						|
#include "pqj_inc"
 | 
						|
#include "nw_i0_tool"
 | 
						|
 | 
						|
void main()
 | 
						|
{
 | 
						|
//:: Declare major variables
 | 
						|
    object oPC = GetPCSpeaker();
 | 
						|
 | 
						|
//:: Set quest stage & update DB.
 | 
						|
    AddPersistentJournalQuestEntry("blood", 2, oPC);
 | 
						|
 | 
						|
// Give the PC's party XP
 | 
						|
    RewardPartyXP(2000, oPC);
 | 
						|
 | 
						|
//:: Give the PC Deamonbane
 | 
						|
    CreateItemOnObject("demonbane", oPC, 1);
 | 
						|
 | 
						|
}
 |