xooGHOSToox
New member
Hi all, I've been doing a lot of custom things in game recently, and wanted to add new trader quests.
I followed this thread --
exactly as he has it.
But it is not being offered by the trader.
I even went as far as hard coding <!-- all the quests in tier 1 out of the trader list quest --> only having mine in there. Still, it is not showing up.
I can givequest to myself and it works fine.
Any suggestions?
Here is my config
I followed this thread --
exactly as he has it.
But it is not being offered by the trader.
I even went as far as hard coding <!-- all the quests in tier 1 out of the trader list quest --> only having mine in there. Still, it is not showing up.
I can givequest to myself and it works fine.
Any suggestions?
Here is my config
Code:
<configs>
<insertBefore xpath="/quests/quest_list[@id='trader_quests']">
<quest id="my_quest">
<property name="name" value="Go Fetch" />
<property name="subtitle" value="Just what I wanted!" />
<property name="description" value="Ive got a hankering for something special" />
<property name="icon" value="ui_game_symbol_quest" />
<property name="repeatable" value="true" />
<property name="category_key" value="quest" />
<property name="offer" value="Here is my offer" />
<property name="difficulty" value="easy" />
<property name="difficulty_tier" value="1" />
<property name="statement" value="here is my statement" />
<property name="response" value="here is my response" />
<property name="login_rally_reset" value="true" />
<property name="completiontype" value="TurnIn" />
<property name="completion_key" value="quest_clear_completion" />
<objective type="FetchKeep" id="resourceYuccaFibers" value="200" phase="1" >
<property name="phase" value="1" />
</objective>
<objective type="ReturnToNPC">
<property name="phase" value="2" />
</objective>
<objective type="InteractWithNPC">
<property name="phase" value="2" />
</objective>
<reward type="Exp" value="1000" />
<reward type="Item" id="casinoCoin" value="200-500" />
<reward type="LootItem" id="groupQuestAmmo" ischosen="true" value="1"/>
<reward type="LootItem" id="groupQuestSchematics" ischosen="true" value="1"/>
<reward type="LootItem" id="groupQuestMods" ischosen="true" value="1"/>
<reward type="LootItem" id="groupQuestAmmo,groupQuestSchematics,groupQuestMods" ischosen="true" value="1"/>
<reward type="LootItem" id="groupQuestAmmo,groupQuestSchematics,groupQuestMods" ischosen="true" value="1"/>
</quest>
</insertBefore>
<append xpath="/quests/quest_list[@id='trader_quests']">
<quest id="my_quest" />
</append>
</configs>
Last edited by a moderator: