42 lines
804 B
Plaintext
42 lines
804 B
Plaintext
/* Script generated by
|
|
Lilac Soul's NWN Script Generator, v. 2.3
|
|
|
|
For download info, please visit:
|
|
http://nwvault.ign.com/View.php?view=Other.Detail&id=4683&id=625 */
|
|
|
|
//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)=="petorasbook") DestroyObject(oItem);
|
|
|
|
oItem = GetNextItemInInventory(oPC);
|
|
}
|
|
|
|
RewardPartyXP(4500, oPC, FALSE);
|
|
|
|
CreateItemOnObject("ldf_token", oPC);
|
|
CreateItemOnObject("ldf_token", oPC);
|
|
|
|
|
|
CreateItemOnObject("ldf_token", oPC);
|
|
CreateItemOnObject("ldf_token", oPC);
|
|
|
|
CreateItemOnObject("ldf_token", oPC);
|
|
|
|
SetQuestStatus(oPC, "quest_0306", QUEST_COMPLETED);
|
|
|
|
|
|
|
|
}
|