Jaysyn904 66a0a3e043 Initial commit
Initial commit.
2024-08-03 14:13:18 -04:00

37 lines
746 B
Plaintext

//::///////////////////////////////////////////////
//:: FileName at_005
//:://////////////////////////////////////////////
//:://////////////////////////////////////////////
//:: Created By: Script Wizard
//:: Created On: 9/6/2004 8:44:01 PM
//:://////////////////////////////////////////////
#include "nw_i0_tool"
void main()
{
object oPC = GetPCSpeaker();
object oItem;
oItem = GetItemPossessedBy(oPC, "GrizzleyQuartz");
if (GetIsObjectValid(oItem))
DestroyObject(oItem);
// Give the speaker some gold
RewardPartyGP(150, GetPCSpeaker());
// Give the speaker some XP
RewardPartyXP(150, GetPCSpeaker());
// Give the speaker the items
CreateItemOnObject("biagokey", GetPCSpeaker(), 1);
}