19 lines
492 B
Plaintext
19 lines
492 B
Plaintext
|
//::///////////////////////////////////////////////
|
||
|
//:: FileName reward_bounty
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:: Created By: Script Wizard
|
||
|
//:: Created On: 11/1/2002 10:31:47 AM
|
||
|
//:://////////////////////////////////////////////
|
||
|
#include "nw_i0_tool"
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
// Give the speaker some gold
|
||
|
RewardPartyGP(2000, GetPCSpeaker());
|
||
|
|
||
|
// Give the speaker some XP
|
||
|
RewardPartyXP(2000, GetPCSpeaker());
|
||
|
|
||
|
}
|