Nuok
Community Developer
- Joined
- Jan 15, 2010
- Messages
- 975
- Reaction score
- 28
Was wondering if someone could clear up the usegameobject override for me; what i have so far is below. The object i want to use is the altar, and afterwards killing the spawned mob.
(locations are correct)
the possible error i see is me using the wrong count type?
What i see in my log is:
[17:49:41:44] Done with objective for Vanquishing Aquantion
[17:49:42:762] Activity: Moving to complete grind-objective for Vanquishing Aquantion
So obviously im doing something wrong, i get this error weather i have UseCount or just count.
Have also tried collect count
<Quest Id="9174" Name="Vanquishing Aquantion">
<Objective Type="UseGameObject" ObjectId="181157" Count="1">
<Hotspots>
<Hotspot X="7933.914" Y="-7639.799" Z="113.098" />
</Hotspots>
</Objective>
<Objective Type="KillMob" MobId="16292" KillCount="1">
<Hotspots>
<Hotspot X="7933.914" Y="-7639.799" Z="113.098" />
</Hotspots>
</Objective>
</Quest>
Im going to try and trick buy using a false collect item id, but id rather use an UseObject if possible.
<!-- Vanquishing Aquantion -->
<Quest Id="9174" Name="Vanquishing Aquantion">
<Objective Type="Collect" ItemId="181157" Count="1">
<CollectFrom>
<GameObject Id="181157" Name="Altar of Tidal Mastery" />
</CollectFrom>
<Hotspots>
<Hotspot X="7933.914" Y="-7639.799" Z="113.098" />
</Hotspots>
</Objective>
<Objective Type="KillMob" MobId="16292" KillCount="1">
<Hotspots>
<Hotspot X="7933.914" Y="-7639.799" Z="113.098" />
</Hotspots>
</Objective>
</Quest>
(locations are correct)
the possible error i see is me using the wrong count type?
What i see in my log is:
[17:49:41:44] Done with objective for Vanquishing Aquantion
[17:49:42:762] Activity: Moving to complete grind-objective for Vanquishing Aquantion
So obviously im doing something wrong, i get this error weather i have UseCount or just count.
Have also tried collect count
<Quest Id="9174" Name="Vanquishing Aquantion">
<Objective Type="UseGameObject" ObjectId="181157" Count="1">
<Hotspots>
<Hotspot X="7933.914" Y="-7639.799" Z="113.098" />
</Hotspots>
</Objective>
<Objective Type="KillMob" MobId="16292" KillCount="1">
<Hotspots>
<Hotspot X="7933.914" Y="-7639.799" Z="113.098" />
</Hotspots>
</Objective>
</Quest>
Im going to try and trick buy using a false collect item id, but id rather use an UseObject if possible.
<!-- Vanquishing Aquantion -->
<Quest Id="9174" Name="Vanquishing Aquantion">
<Objective Type="Collect" ItemId="181157" Count="1">
<CollectFrom>
<GameObject Id="181157" Name="Altar of Tidal Mastery" />
</CollectFrom>
<Hotspots>
<Hotspot X="7933.914" Y="-7639.799" Z="113.098" />
</Hotspots>
</Objective>
<Objective Type="KillMob" MobId="16292" KillCount="1">
<Hotspots>
<Hotspot X="7933.914" Y="-7639.799" Z="113.098" />
</Hotspots>
</Objective>
</Quest>
Last edited: