24 lines
646 B
Plaintext
24 lines
646 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: FileName will_toman
|
|
//:://////////////////////////////////////////////
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Script Wizard
|
|
//:: Created On: 30/09/2003 17:21:09
|
|
//:://////////////////////////////////////////////
|
|
#include "nw_i0_tool"
|
|
#include "NW_O2_CONINCLUDE"
|
|
|
|
void main()
|
|
{
|
|
// Give the speaker some XP
|
|
RewardPartyXP(225, GetPCSpeaker());
|
|
|
|
// Give the speaker the items
|
|
CreateItemOnObject("goblinbridgekey", GetPCSpeaker(), 1);
|
|
|
|
location llocation = GetLocation(OBJECT_SELF);
|
|
ShoutDisturbed();
|
|
DestroyObject(OBJECT_SELF, 3.0);
|
|
|
|
}
|