18 lines
250 B
Plaintext
18 lines
250 B
Plaintext
#include "nw_i0_tool"
|
|
void main()
|
|
{
|
|
|
|
object oPC = GetPCSpeaker();
|
|
|
|
object oItem;
|
|
oItem = GetItemPossessedBy(oPC, "Gland1");
|
|
|
|
if (GetIsObjectValid(oItem))
|
|
DestroyObject(oItem);
|
|
|
|
RewardPartyXP(1000, oPC, FALSE);
|
|
|
|
RewardPartyGP(1000, oPC, FALSE);
|
|
|
|
}
|