What's the blacklist code for the Demonic Vessel? I'm running act 3 champ hunting and in one of the towers one of these appears adjacent to the staircase and it gets stuck trying to grab it and switches profiles.
I dont know what I did. I just tried to run a gain the program and it worked fine.
Another question. How can my wizard attack close to the monster? Its sometimes attacking too far that the Explosion Blast wont hit.
My CM is on.
Thanks Giles, More power D:
Giles, please add a bWaitingForSpecial for Whirlwind and Sprint.
I watched my barb died a couple of times because WotB was ready to cast, but never got enough fury.
I tried to do myself, changing this: (and the same for sprint)
Code:// Whirlwind spam as long as necessary pre-buffs are up if (!bBuffsOnly && [B]!bWaitingForSpecial[/B] && !bAvoidanceEmergency
...with no success. Bot still spams ww and sprint. No fury for zerk :/
// 4 Mantra spam for the 4 second buff
if (hashPowerHotbarAbilities.Contains(SNOPower.Monk_MantraOfHealing) && (playerStatus.dCurrentHealthPct <= 0.60) &&
(playerStatus.dCurrentEnergyPct >= 0.80) && GilesUseTimer(SNOPower.Monk_MantraOfHealing) &&
playerStatus.dCurrentEnergy >= 80 && PowerManager.CanCast(SNOPower.Monk_MantraOfHealing))
{
return new GilesPower(SNOPower.Monk_MantraOfHealing, 0f, vNullLocation, iCurrentWorldID, -1, USE_ANY_TIME, USE_SLOWLY);
}
103919 and 155255What's the blacklist code for the Demonic Vessel? I'm running act 3 champ hunting and in one of the towers one of these appears adjacent to the staircase and it gets stuck trying to grab it and switches profiles.
My monk willl activate seven sided strike when the mob is not in range.... hmmm any idea how to fix this...
103919 and 155255
I think.
I had the same problem with him glitching out on them (spazzing back and forth or sometimes just getting stuck).
Why was mantra of healing spam removed? I had it set before so the mantra of healing would be used every time my health was less than 60% it worked well and is how the skill should be used anyway. please add it back in and make sure its used when is health less than 60%.
I'm no programmer but this worked for me before on older ver and made mantra healing more useful:
Code:// 4 Mantra spam for the 4 second buff if (hashPowerHotbarAbilities.Contains(SNOPower.Monk_MantraOfHealing) && (playerStatus.dCurrentHealthPct <= 0.60) && (playerStatus.dCurrentEnergyPct >= 0.80) && GilesUseTimer(SNOPower.Monk_MantraOfHealing) && playerStatus.dCurrentEnergy >= 80 && PowerManager.CanCast(SNOPower.Monk_MantraOfHealing)) { return new GilesPower(SNOPower.Monk_MantraOfHealing, 0f, vNullLocation, iCurrentWorldID, -1, USE_ANY_TIME, USE_SLOWLY); }
May I ask where the blacklist function file is located for editing? thanks
// Special blacklist for things like ravens, templar/scoundrel/enchantress in town, witch-doctor summons, tornado-animations etc. etc. that should never be attacked
private static readonly HashSet<int> hashActorSNOIgnoreBlacklist = new HashSet<int> {
5840, 111456, 5013, 5014, 205756, 205746, 4182, 4183, 4644, 4062, 4538, 52693, 162575, 2928, 51291, 51292,
96132, 90958, 90959, 80980, 51292, 51291, 2928, 3546, 129345, 81857, 138428, 81857, 60583, 170038, 174854, 190390,
194263, 174900, 87189, 90072, 107031, 106584, 186130, 187265, 201426, 201242, 200969, 201423,
201438, 201464, 201454, 108012, 103279, 89578, 74004, 84531, 84538, 89579, 190492, 209133, 6318, 107705, 105681, 89934,
89933, 182276, 117574, 182271, 182283, 182278, 128895, 81980, 82111, 81226, 81227, 107067, 103217, 105763, 110959, 106749,
107107, 107112, 106731, 107752, 107829, 90321, 107828, 121327, 185391, 249320, 81232, 81231, 81239, 81515, 210433, 195414,
80758, 80757, 80745, 81229, 81230, 82109, 83024, 83025, 82972, 83959, 249190, 251396, 138472, 118260, 200226, 192654, 245828,
215103, 132951, 217508, 199998, 199997, 114527, 245910,
};