2021-08-29 23:34:48 -04:00
|
|
|
//::///////////////////////////////////////////////
|
|
|
|
//:: FileName at_191
|
|
|
|
//:://////////////////////////////////////////////
|
|
|
|
//:://////////////////////////////////////////////
|
|
|
|
//:: Created By: Script Wizard
|
|
|
|
//:: Created On: 9/1/2005 5:07:09 PM
|
|
|
|
//:://////////////////////////////////////////////
|
2022-06-18 01:53:20 -04:00
|
|
|
|
|
|
|
#include "pqj_inc"
|
2021-08-29 23:34:48 -04:00
|
|
|
#include "nw_i0_tool"
|
|
|
|
|
|
|
|
void main()
|
|
|
|
{
|
2022-06-18 01:53:20 -04:00
|
|
|
//:: Give the speaker some gold
|
|
|
|
GiveGoldToCreature(GetPCSpeaker(), 10000);
|
|
|
|
|
|
|
|
//:: Give the speaker some XP
|
|
|
|
RewardPartyXP(3000, GetPCSpeaker());
|
2021-08-29 23:34:48 -04:00
|
|
|
|
2022-06-18 01:53:20 -04:00
|
|
|
//:: Finish he quest, update the DB
|
2022-06-19 23:39:17 -04:00
|
|
|
AddPersistentJournalQuestEntry("kupra", 2, GetPCSpeaker());
|
2021-08-29 23:34:48 -04:00
|
|
|
|
|
|
|
}
|