RATDOG/_module/nss/qst_slayer_end.nss
Jaysyn904 4af27ed685 Quest persistence work
Quest persistence work.  Added new salamander model.
2022-07-03 23:23:03 -04:00

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);
}