Quest persistence work

Quest persistence work.  Added new salamander model.
This commit is contained in:
Jaysyn904
2022-07-03 23:23:03 -04:00
parent 2cf9f57160
commit 4af27ed685
139 changed files with 98388 additions and 4047 deletions

View File

@@ -0,0 +1,30 @@
//::///////////////////////////////////////////////
//:: 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);
}