25 lines
634 B
Plaintext
25 lines
634 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: FileName at_045
|
|
//:://////////////////////////////////////////////
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Script Wizard
|
|
//:: Created On: 3/26/2003 6:28:47 PM
|
|
//:://////////////////////////////////////////////
|
|
#include "nw_i0_tool"
|
|
|
|
void main()
|
|
{
|
|
// Give the speaker some gold
|
|
RewardPartyGP(10000, GetPCSpeaker());
|
|
|
|
// Give the speaker some XP
|
|
RewardPartyXP(10000, GetPCSpeaker());
|
|
|
|
// Give the speaker the items
|
|
CreateItemOnObject("nw_it_mneck011", GetPCSpeaker(), 1);
|
|
|
|
// Set the variables
|
|
SetLocalInt(GetPCSpeaker(), "seenitonce", 1);
|
|
|
|
}
|