22 lines
568 B
Plaintext
22 lines
568 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: FileName zm_ringreward
|
|
//:://////////////////////////////////////////////
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Script Wizard
|
|
//:: Created On: 7/9/2002 5:04:34 AM
|
|
//:://////////////////////////////////////////////
|
|
#include "nw_i0_tool"
|
|
|
|
void main()
|
|
{
|
|
// Give the speaker some gold
|
|
RewardPartyGP(2000, GetPCSpeaker());
|
|
|
|
// Give the speaker some XP
|
|
RewardPartyXP(2000, GetPCSpeaker());
|
|
|
|
// Give the speaker the items
|
|
CreateItemOnObject("nw_it_mring005", GetPCSpeaker(), 1);
|
|
|
|
}
|