What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal

How to defend an NPC/totem

Cicrocoft

New Member
Joined
Aug 15, 2010
Messages
468
Reaction score
12
So, im stuck at this quest where you have to place a totem and protect it for 60sec.

What i tried:

PHP:
	<PickUp QuestName="Soothing the Elements" QuestId="13580" GiverName="Elder Brownpaw" GiverId="33117" />
	<UseItem ItemId="46546" QuestName="Soothing the Elements" QuestId="13580" X="5539.249" Y="453.6834" Z="31.05616" />
	<CustomBehavior File="Escort" MobId="34367" QuestId="0" X="5539.249" Y="453.6834" Z="31.05616" />
	<TurnIn QuestName="Soothing the Elements" QuestId="13580" TurnInName="Elder Brownpaw" TurnInId="33117" />

The totem atcutally have an NPC ID acording to the profilehelper plugin, but the bot just stands there watching the mobs nuking the totem, even after the totem is gone.

AND:

PHP:
	<PickUp QuestName="Soothing the Elements" QuestId="13580" GiverName="Elder Brownpaw" GiverId="33117" />
	<UseItem ItemId="46546" QuestName="Soothing the Elements" QuestId="13580" X="5539.249" Y="453.6834" Z="31.05616" />
	<If Condition="HasQuest(13580)">
	<CustomBehavior File="WaitTimer" WaitTime="60000" />
                </If>
	<TurnIn QuestName="Soothing the Elements" QuestId="13580" TurnInName="Elder Brownpaw" TurnInId="33117" />

Now the bot just stands there in 60sec and then leaves... But, guess thats what this QB does ;)


Any ideas?
 
Awwww, thats sad :(

Nope, cant see the blog :(
 
Last edited:
Got this idea... Only problem is that UseItem waits for the quests to be completed...

PHP:
	<PickUp QuestName="Soothing the Elements" QuestId="13580" GiverName="Elder Brownpaw" GiverId="33117" />
	<UseItem ItemId="46546" QuestName="Soothing the Elements" QuestId="13580" X="5539.249" Y="453.6834" Z="31.05616" />
		<If Condition="!IsQuestCompleted(13580)"> 
   <SetGrindArea>
        <GrindArea>
            <Name>Protecting Totem</Name>
            <TargetMinLevel>12</TargetMinLevel>
            <TargetMaxLevel>20</TargetMaxLevel>
            <Factions>14</Factions>
            <LootRadius>4</LootRadius>
            <MaxDistance>4</MaxDistance>
            <RandomizeHotspots>False</RandomizeHotspots> 
            <Hotspots>
<Hotspot X="5541.609" Y="453.0555" Z="29.7345" />
            </Hotspots>
        </GrindArea>
    </SetGrindArea>
</If>
	<TurnIn QuestName="Soothing the Elements" QuestId="13580" TurnInName="Elder Brownpaw" TurnInId="33117" />


check your notifications and then you can see it

Thanks, can see i now :)
 
Last edited:
Back
Top