Avoiding to struggle - a guide for beginers

  1. And now we have to fight, isn’t? You already have from forum listOverviewEntryToAttack; checking for dread, but, marking the anomaly … ah , yes, this is enough( i will let the commented lines, because i tried all variants, and finally i used the trick with ignore in anomalyEnter … but you can try yourself):
				if (bot?.OwnAnomaly == false)
				{

					if ((listOverviewEntryToAttack.Count() > 100) || (listOverviewEntryFriends.Length > 0) || (listOverviewEntryCorp.Length>0) )
					{

					//	yield return new SkipAnomalyF { bot = bot };
						yield return new AnomalyEnter { bot = bot };
					//	yield return new RetreatTask { Bot = bot };


					}
					else
					
						bot?.SetOwnAnomaly(true);
/*						if (null != scanActuallyAnomaly)
						{
							yield return scanActuallyAnomaly.ClickMenuEntryByRegexPattern(bot, "save location");
						}
						//	yield return bot.LaunchFighters(memoryMeasurement?.ShipUi?.SquadronsUI);

*/
(the if ((listOverviewEntryToAttack.Count() > 100)  is from when i tested ignoring , but you can change from 100 to 10 and so you avoid the gas haven :d :)) or to be sure, you can put also the towers from gas havens, so you will take only rock ones )					
Yes, you can bookmark anomaly ( for salvaging? for taking  later your mtu??? )

You wanna take the loot from faction rats? take this:

				var listOverviewCommanderWreck = memoryMeasurement?.WindowOverview?.FirstOrDefault()?.ListView?.Entry?.Where(entry => entry?.Name?.RegexMatchSuccessIgnoreCase("Commander|Dark Blood|Shadow Serpentis|Dread Gurista|Domination Saint") ?? true)
				.ToList();
				var wreckCommander = listOverviewCommanderWreck?.FirstOrDefault(); // next lines are at the end when:  if (!(0 < listOverviewEntryToAttack?.Length))....
							if (wreckCommander != null)
								yield return wreckCommander.ClickMenuEntryByRegexPattern(bot, "open cargo");

Of course, you have to push the button “loot all” from window inventory. :slight_smile:

But in the end you have to be alive. be aware, sometimes the bot doesn’t read some window ( drones/probes etc and you have to restart the game) and sometimes he will alert you for nothing and try to save the ship. I concluded he is catch not only the flagicon but also the personal standings of one or another guy from local. If you have 300 on local… you are all time in saveship task because one or another guy just killed an enemy and he has bad standings ( ?? or he is read … with errors, maybe he is just entered in ally etc etc))even if he’s blue/green. I dont have a prove,( and believe-me, i tried to measure 3-4 days but nothing, and most of false alarms are from "excellent standings(.) ) so is just my conclusion . So another advice, avoid to bot in systems with more than 20 guys, in big ally.
4.
Staying alive, so saveship task for me is:
stop afterburner,
start armor repairer ( because some rats will hit you, or just because the reds could be on you )
align to retreatbookmark : you want to be far from theoretical point of reds warp AND also, if your drones struggle to get out from wrecks and rats is better to be a little far, and also you avoid the situation when your drones try and try and try for 20-30 seconds to enter in your ship.
retreat your drones ( for me it take 5-6 sec)

Also , if the reds come to you or you have in system more that 2 ( yes, the bot count you also) ( if you have a spike???) forget your drones AND ASAP warp retreat bookmark.
Another thing, dont chose a citadel home near of stargates, the rats near stargate will put you in combat mode)

In the end ( or at beginning) you can learn from sanderling scripts to: have more than one safespots ( unload your cargo full of faction loot, etc etc), warp to bookmark ( for salvaging?? or take the small and voluminous loot??). You’ll find invaluable infos and ways to do things( changing your system? :d)

2 Likes