22 lines
571 B
Plaintext
22 lines
571 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: FileName zm_finalreward
|
|
//:://////////////////////////////////////////////
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Script Wizard
|
|
//:: Created On: 7/1/2002 3:57:48 AM
|
|
//:://////////////////////////////////////////////
|
|
#include "nw_i0_tool"
|
|
|
|
void main()
|
|
{
|
|
// Give the speaker some gold
|
|
RewardPartyGP(10000, GetPCSpeaker());
|
|
|
|
// Give the speaker some XP
|
|
GiveXPToCreature(GetPCSpeaker(), 5000);
|
|
|
|
// Give the speaker the items
|
|
CreateItemOnObject("nw_wswmgs005", GetPCSpeaker(), 1);
|
|
|
|
}
|