19 lines
569 B
Plaintext
19 lines
569 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: FileName s_takemayorsash
|
|
//:://////////////////////////////////////////////
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Script Wizard
|
|
//:: Created On: 12/17/2004 12:18:05 AM
|
|
//:://////////////////////////////////////////////
|
|
#include "nw_i0_tool"
|
|
|
|
void main()
|
|
{
|
|
|
|
// Remove items from the player's inventory
|
|
object oItemToTake;
|
|
oItemToTake = GetItemPossessedBy(GetPCSpeaker(), "SHA_ELIDOR_MAYOR_SASH");
|
|
DestroyObject(oItemToTake);
|
|
RewardPartyXP(750, GetPCSpeaker());
|
|
}
|