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

Killing specific monsters guide required (step by step please)

rka666

New Member
Joined
Jan 26, 2015
Messages
13
Reaction score
0
Hey,

I am struggling to understand on how to create, attach, or what to do correctly to create a bot that will kill specific mobs in an area. Tried to read forums, but couldnt understand on how to start a fighting bot. Only saw gathering ones. Really, would be really good help for example to create a bot that would kill raptors "Lindwurm" in Bentbranch Meadows 13.19 area. Sorry for being a noob, but.. Thanks in advance.

R
 
Code:
<?xml version="1.0" encoding="UTF-8"?>
<Profile>
<KillRadius>100</KillRadius>
	<GrindAreas>
		<GrindArea name="Lindwurm">
		<Hotspots>
			<HotSpot Radius="100" XYZ="-398.4014, 59.23532, -105.865"/>
		</Hotspots>
		<TargetMobs>
			<TargetMob Id="130"/>
		</TargetMobs>
		<MinLevel>49</MinLevel>
		<MaxLevel>62</MaxLevel>
		</GrindArea>
		</GrindAreas>
<Order>	
		<If Condition="not IsOnMap(148) and not HasAtLeast(5322,20)">
		<TeleportTo Name="Bentbranch Meadows" AetheryteId="3" />
		<Grind grindref="Lindwurm" While="not HasAtLeast(5322,20)" PostCombatDelay=".5" />
	</If>
		
</Order>
</Profile>


it grinds for 20 Raptor Sinew then stops
 
Back
Top