19 lines
478 B
Plaintext
19 lines
478 B
Plaintext
|
//::///////////////////////////////////////////////
|
||
|
//:: FileName at_271
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:: Created By: Script Wizard
|
||
|
//:: Created On: 9/9/2005 12:08:12 AM
|
||
|
//:://////////////////////////////////////////////
|
||
|
#include "nw_i0_tool"
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
// Give the speaker some gold
|
||
|
GiveGoldToCreature(GetPCSpeaker(), 10000);
|
||
|
|
||
|
// Give the speaker some XP
|
||
|
RewardPartyXP(1000, GetPCSpeaker());
|
||
|
|
||
|
}
|