23 lines
616 B
Plaintext
23 lines
616 B
Plaintext
|
//::///////////////////////////////////////////////
|
||
|
//:: FileName at_115
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:: Created By: Script Wizard
|
||
|
//:: Created On: 8/24/2005 9:08:28 PM
|
||
|
//:://////////////////////////////////////////////
|
||
|
#include "nw_i0_tool"
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
// Give the speaker some gold
|
||
|
GiveGoldToCreature(GetPCSpeaker(), 10000);
|
||
|
|
||
|
// Give the speaker some XP
|
||
|
RewardPartyXP(1000, GetPCSpeaker());
|
||
|
|
||
|
// Give the speaker the items
|
||
|
CreateItemOnObject("item049", GetPCSpeaker(), 1);
|
||
|
CreateItemOnObject("staffoffire", GetPCSpeaker(), 1);
|
||
|
|
||
|
}
|