24 lines
957 B
Plaintext
24 lines
957 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: FileName s_setladyq1done
|
|
//:://////////////////////////////////////////////
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Script Wizard
|
|
//:: Created On: 12/18/2004 11:09:49 PM
|
|
//:://////////////////////////////////////////////
|
|
#include "x0_i0_campaign"
|
|
#include "sha_misc_funcs"
|
|
#include "nw_i0_tool"
|
|
void main()
|
|
{
|
|
object oPC = GetPCSpeaker();
|
|
// Set Campaign Database variables, saying that Lady M has already given out the
|
|
//quest to this PC, including the Eye of Moon Helm.
|
|
SetCampaignDBInt(GetPCSpeaker(), "sha_ladym_q1", 100);
|
|
//Second partof the Hjalmar's quest, ie: deliver the message and initiate the above quest is also now complete.
|
|
SetCampaignDBInt(GetPCSpeaker(), "sha_hjalmar_q2", 100);
|
|
|
|
// updated reward section to be 1.69 compliant as script did not compile.
|
|
RewardPartyXP(1700, oPC, TRUE);
|
|
RewardPartyGP(12500, oPC, TRUE);
|
|
}
|