Z zamup New Member Joined Mar 20, 2014 Messages 114 Reaction score 0 Apr 8, 2014 #1 Is that possible to make the bot do not attack a specified monster? And just continue to run without attacking him
Is that possible to make the bot do not attack a specified monster? And just continue to run without attacking him
P pushedx Well-Known Member Joined Sep 24, 2013 Messages 4,252 Reaction score 290 Apr 9, 2014 #2 Right now, you can do that by blacklisting the object's id. Code: Blacklist.Add(id, TimeSpan.FromHours(1), BlacklistFlags.Combat, "Ignore this mob"); Access .Id of the NetworkObject you wish to blacklist, and the bot will ignore it. You can change up the time and reason as needed.
Right now, you can do that by blacklisting the object's id. Code: Blacklist.Add(id, TimeSpan.FromHours(1), BlacklistFlags.Combat, "Ignore this mob"); Access .Id of the NetworkObject you wish to blacklist, and the bot will ignore it. You can change up the time and reason as needed.
Z zamup New Member Joined Mar 20, 2014 Messages 114 Reaction score 0 Apr 9, 2014 #3 Thanks, how I get id of the mob?
P pushedx Well-Known Member Joined Sep 24, 2013 Messages 4,252 Reaction score 290 Apr 9, 2014 #4 See the last part of my post. So, BestTarget.Id, for example. You'd find whatever mob you want to ignore, and then access .Id
See the last part of my post. So, BestTarget.Id, for example. You'd find whatever mob you want to ignore, and then access .Id
Z zamup New Member Joined Mar 20, 2014 Messages 114 Reaction score 0 Apr 9, 2014 #5 Aight I think I get it ty
babosasa New Member Joined Jun 22, 2012 Messages 417 Reaction score 0 Apr 11, 2014 #6 where is the blacklist file located? i can't find it, i wanted to blacklist urns and pots, how to?