Hello All, I was wondering how you would script HB to destroy objects like the plans in Thwarting Kolkar Aggression. The best I can tell so far HB likes kill quests and collection quests. Anybody know how I would go about scripting this quest? <PickUp QuestName="Thwarting Kolkar Aggression" QuestId="786" GiverName="Lar Prowltusk" GiverId="3140" /> <TurnIn QuestName="Thwarting Kolkar Aggression" QuestId="786" TurnInName="Lar Prowltusk" TurnInId="3140" /> ~Thanks, Jim
Thanks Metus, So would I be able to script something like: <PickUp QuestName="Thwarting Kolkar Aggression" QuestId="786" GiverName="Lar Prowltusk" GiverId="3140" /> <Objective QuestName="Thwarting Kolkar Aggression" QuestId="786" Type="CollectItem" ItemId="xxx" CollectCount="1" /> <Objective QuestName="Thwarting Kolkar Aggression" QuestId="786" Type="CollectItem" ItemId="xxx" CollectCount="1" /> <Objective QuestName="Thwarting Kolkar Aggression" QuestId="786" Type="CollectItem" ItemId="xxx" CollectCount="1" /> <TurnIn QuestName="Thwarting Kolkar Aggression" QuestId="786" TurnInName="Lar Prowltusk" TurnInId="3140" /> Will this work even though there is not an item that is collected? ~Thanks, Jim
No you need to use the item as in <Objective QuestName="Thwarting Kolkar Aggression" QuestId="786" Type="UseObject" ItemId="xxx" />
Thank you Synik, So I scripted: <PickUp QuestName="Thwarting Kolkar Aggression" QuestId="786" GiverName="Lar Prowltusk" GiverId="3140" /> <Objective QuestName="Thwarting Kolkar Aggression" QuestId="786" Type="UseObject" ItemId="3189" UseCount="1"/> <Objective QuestName="Thwarting Kolkar Aggression" QuestId="786" Type="UseObject" ItemId="3190" UseCount="1"/> <Objective QuestName="Thwarting Kolkar Aggression" QuestId="786" Type="UseObject" ItemId="3192" UseCount="1"/> <TurnIn QuestName="Thwarting Kolkar Aggression" QuestId="786" TurnInName="Lar Prowltusk" TurnInId="3140" /> It just accepted the quest, and then kept trying to turn it back in w/o doing anything. If anybody can help, what did I do wrong here? ~Thanks, Jim
<Objective QuestName="Thwarting Kolkar Aggression" QuestId="786" Type="UseObject" ItemId="3192" UseCount="1" /> <-- Must add a space between UseCount="1" and />
Thank you Lt. Leon, So if I interpret that correctly, the objective's were ignored and it jumped right to trying to turn in the quest. ~Thanks again, Jim