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

Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

dayum12

Member
Joined
Aug 22, 2015
Messages
54
Heya!

I've been working on a script here, to farm Dhalmel hides.

I'll leave it here and I'd love if you'd help me pinpoint the problem.

This is what I get when I try to run it;

[13:06:06.593 D] Exception during scheduling Pulse: System.ArgumentNullException: Value cannot be null.
Parameter name: source
at System.Linq.Enumerable.FirstOrDefault[TSource](IEnumerable`1 source, Func`2 predicate)
at ff14bot.NeoProfiles.GrindTag.OnStart()
at ff14bot.NeoProfiles.ProfileBehavior.Start()
at ..()
at ff14bot.NeoProfiles.NeoProfileManager.UpdateCurrentProfileBehavior()
at ff14bot.BotBases.OrderBot.(Object , EventArgs )
at ff14bot.Behavior.BrainBehavior.()
 

Attachments

Tags are case sensative. you need to change Grindareas to GrindAreas and Grindarea to GrindArea.

Code:
<GrindAreas>
	<GrindArea Name="Dhalmel">
				<Hotspots>
					<Hotspot Radius="400" X="-209.7533" Y="-186.5992" Z="495.468" name="Dhalmel" />
				</Hotspots>
			<TargetMobs>
				<TargetMob Name="Dhalmel" Id="3505" />
			</TargetMobs>
		<MinLevel>1</MinLevel>
		<MaxLevel>61</MaxLevel>	
	 </GrindArea> 
</GrindAreas>
 
Back
Top