22 lines
574 B
Plaintext
22 lines
574 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: FileName at_041
|
|
//:://////////////////////////////////////////////
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Script Wizard
|
|
//:: Created On: 3/24/2003 10:54:12 PM
|
|
//:://////////////////////////////////////////////
|
|
#include "nw_i0_tool"
|
|
|
|
void main()
|
|
{
|
|
// Give the speaker some gold
|
|
RewardPartyGP(5000, GetPCSpeaker());
|
|
|
|
// Give the speaker some XP
|
|
RewardPartyXP(5000, GetPCSpeaker());
|
|
|
|
// Give the speaker the items
|
|
CreateItemOnObject("Cagekey", GetPCSpeaker(), 1);
|
|
|
|
}
|