31 lines
548 B
Plaintext
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);
|
|
|
|
}
|
|
|