NWNDS/nwnds_module/at_arisrew1.nss
Jaysyn904 de24f81734 Added NWN Dark Sun module contents
Added NWN Dark Sun module contents.
2021-07-12 21:24:46 -04:00

22 lines
645 B
Plaintext

//::///////////////////////////////////////////////
//:: FileName at_arisrew1
//:://////////////////////////////////////////////
//:://////////////////////////////////////////////
//:: Created By: Script Wizard
//:: Created On: 10/6/2002 11:25:57 PM
//:://////////////////////////////////////////////
#include "nw_i0_tool"
void main()
{
// Give the speaker some XP
RewardPartyXP(700, GetPCSpeaker());
// Remove items from the player's inventory
object oItemToTake;
oItemToTake = GetItemPossessedBy(GetPCSpeaker(), "AristiphanalesNecklace");
if(GetIsObjectValid(oItemToTake) != 0)
DestroyObject(oItemToTake);
}