Alangara_PRC8/_module/nss/treant_done1.nss
Jaysyn904 86feb9ca6f Initial commit
Initial commit.
2024-06-05 21:21:06 -04:00

31 lines
548 B
Plaintext

//Put this on action taken in the conversation editor
#include "nw_i0_tool"
#include "mn_i_pwfunctions"
void main()
{
object oPC = GetPCSpeaker();
object oItem;
oItem = GetFirstItemInInventory(oPC);
while (GetIsObjectValid(oItem))
{
if (GetTag(oItem)=="pervertedseed") DestroyObject(oItem);
oItem = GetNextItemInInventory(oPC);
}
RewardPartyXP(1500, oPC, FALSE);
CreateItemOnObject("keheal3", oPC);
CreateItemOnObject("keheal3", oPC);
CreateItemOnObject("keheal3", oPC);
SetQuestStatus(oPC, "quest_0307", QUEST_COMPLETED);
}