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

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);
}