View Single Post
Old 10-04-2005, 10:03 AM   #13 (permalink)
ArteGordon
Forum Master
 
Join Date: Aug 2003
Posts: 5,688
Default

Quote:
Originally Posted by twig
Well I dug around and think I found and fixed the problem.. well at least it places the quest book into the players backpack instead of the ground...

in the Akara.npc file.. line 56
Code:
    <Action>GIVE/&amp;amp;lt;questholder/name/Den Of Evil/titlestring/Slay the evil creatures that plague the town of Vesper./objective1/Travel West and find the caves Akara mentioned.</Action>
should be ...
Code:
    <Action>GIVE/&lt;questholder/name/Den Of Evil/titlestring/Slay the evil creatures that plague the town of Vesper./objective1/Travel West and find the caves Akara mentioned.</Action>

and in the Kashya.npc file ... line 67 ...
Code:
    <Action>GIVE/&amp;amp;lt;questholder/name/Sister's Burial Grounds/titlestring/Find and kill Blood Raven./objective1/Search the nearby graveyard for Blood Raven. </Action>
should be ...
Code:
    <Action>GIVE/&lt;questholder/name/Sister's Burial Grounds/titlestring/Find and kill Blood Raven./objective1/Search the nearby graveyard for Blood Raven. </Action>
yes, that is correct. The &amp; stuff looks like the work of some html editor.

For completeness, the proper syntax would be to enclose the entire questholder specification in < >, so

<Action>GIVE/&lt;questholder/name/Sister's Burial Grounds/titlestring/Find and kill Blood Raven./objective1/Search the nearby graveyard for Blood Raven.&gt; </Action>

But it will work without the closing > since the end of the string will terminate it. Just a bit cleaner to add it in.
__________________
The first line of the first rule in the forum rules and guidelines "Be respectful of others. "

For questions, information, and support for XmlSpawner and its addons, visit the
XmlSpawner Support Forum
ArteGordon is offline