22 lines
570 B
Plaintext
22 lines
570 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: FileName zm_quest4reward
|
|
//:://////////////////////////////////////////////
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Script Wizard
|
|
//:: Created On: 6/28/2002 5:11:04 AM
|
|
//:://////////////////////////////////////////////
|
|
#include "nw_i0_tool"
|
|
|
|
void main()
|
|
{
|
|
// Give the speaker some gold
|
|
RewardPartyGP(10000, GetPCSpeaker());
|
|
|
|
// Give the speaker some XP
|
|
RewardPartyXP(2500, GetPCSpeaker());
|
|
|
|
// Give the speaker the items
|
|
CreateItemOnObject("nw_maarcl022", GetPCSpeaker(), 1);
|
|
|
|
}
|