29 lines
664 B
Plaintext
29 lines
664 B
Plaintext
/*
|
|
* Script generated by LS Script Generator, v.TK.0
|
|
*
|
|
* For download info, please visit:
|
|
* http://nwvault.ign.com/View.php?view=Other.Detail&id=1502
|
|
*/
|
|
// Put this under "Actions Taken" in the conversation editor.
|
|
|
|
#include "mn_i_pwfunctions"
|
|
|
|
|
|
void main()
|
|
{
|
|
// Get the PC who is in this conversation.
|
|
object oPC = GetPCSpeaker();
|
|
|
|
// Take "essence_aranqia" from the PC.
|
|
DestroyObject(GetItemPossessedBy(oPC, "essence_aranqia"));
|
|
|
|
// Give stuff to the PC.
|
|
GiveXPToCreature(oPC, 3000);
|
|
|
|
SetQuestStatus(oPC, "quest_0304", QUEST_COMPLETED);
|
|
|
|
CreateItemOnObject("ldf_token", oPC);
|
|
CreateItemOnObject("ldf_token", oPC);
|
|
}
|
|
|