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

problems with townrun in town

i change the numbers cTarget.TimesBeenPrimaryTarget > 15 to 45 and trying to craft 500 Amulets Of Dexterity

1. 60 in the inventory 440 on the ground and i started the bot. I use Gniller's rulers for amulets
2. my code for jeweller
Code:
<Profile>
	<Name>[A2 - Crafting v0.1] jeweller</Name>
	<KillMonsters>True</KillMonsters>
	<PickupLoot>True</PickupLoot>
	<GameParams act="A2" difficulty="Inferno" resumeFromSave="true"  />
	
	<TargetBlacklists>
	<TargetBlacklist actorId="178304" /> <!--Portal to Caldeum Bazaar-->
	<TargetBlacklist actorId="195171" /> <!--PT_Blacksmith_ForgeWeaponShortcut-->
	<TargetBlacklist actorId="195170" /> <!--PT_Blacksmith_RepairShortcut-->
	<TargetBlacklist actorId="195172" /> <!--PT_Blacksmith_ForgeArmorShortcut-->
	<TargetBlacklist actorId="200371" /> <!--door-->
	<TargetBlacklist actorId="212519" /> <!--PT_Jeweler_AddSocketShortcut-->
	<TargetBlacklist actorId="212521" /> <!--PT_Jeweler_RemoveGemShortcut-->
	<TargetBlacklist actorId="101123" /> <!--Blacksmith_Crafting_Backbone-->
	<TargetBlacklist actorId="56947" /> <!--PT_Blacksmith-->
	<TargetBlacklist actorId="56949" /> <!--PT_Jeweler-->
    </TargetBlacklists>
	
	<Order>
	
		<ToggleTargeting questId="1" combat="False" looting="True" lootRadius="25" killRadius="100" />	
		<!-- From Town -->
		<While condition="Me.IsInTown">
		    <WaitTimer questId="1" waitTime="1000" />
			<MoveTo questId="1" x="348.3535" y="278.8417" z="0.10" pathPrecision="10"  />
			<MoveTo questId="1" x="358.4619" y="231.263" z="0.1" pathPrecision="10"  />
			<MoveTo questId="1" x="382.8233" y="235.1746" z="0.31" pathPrecision="10"  />
			<WaitTimer questId="1" waitTime="1000" />
		</While>
		
		
	</Order>

 </Profile>
3. log settings
zGTH02b.jpg

4. but anyway bot left 48 items on the ground and wont pick up it


and 142 hits with stuck/flipflop message in log file
will try another way rrrix recommended
 

Attachments

now that code about stuck/flipflop looks like this
i delete all rrrix told me
Code:
{
                TrinityCacheObject cTarget = (TrinityCacheObject)GenericCache.GetObject(targetMd5Hash).Value;
                bool isEliteLowHealth = cTarget.HitPointsPct <= 0.75 && cTarget.IsBossOrEliteRareUnique;
                bool isLegendaryItem = cTarget.Type == GObjectType.Item && cTarget.ItemQuality >= ItemQuality.Legendary;

                {
                    cTarget.TimesBeenPrimaryTarget++;
                    GenericCache.UpdateObject(new GenericCacheObject(targetMd5Hash, cTarget, new TimeSpan(0, 10, 0)));
                }

but anyway when i start the bot to pick up 500 bracers bot left 124! on the ground and wont pick up it...
the differences - now without any messanges about Blacklisting those items...

w8ting on rrrix help :D
 

Attachments

Back
Top