D diavolaki New Member Joined Jun 3, 2014 Messages 16 Reaction score 0 Jun 20, 2014 #1 Is there a way to make the bot curse with Warlord's Mark on all monsters? It only does it on rare monsters and Orange monsters . Any help appriciated.
Is there a way to make the bot curse with Warlord's Mark on all monsters? It only does it on rare monsters and Orange monsters . Any help appriciated.
T toNyx Well-Known Member Joined Oct 29, 2011 Messages 3,770 Reaction score 35 Jun 20, 2014 #2 diavolaki said: Is there a way to make the bot curse with Warlord's Mark on all monsters? It only does it on rare monsters and Orange monsters . Any help appriciated. Click to expand... Search for this line : RegisterCurse(spell, curse, ret => BestTarget.IsCursable && (BestTarget.Rarity >= Rarity.Rare || NumberOfMobsNear(BestTarget, 10, 4))); Click to expand... Replace it with : RegisterCurse(spell, curse, ret => BestTarget.IsCursable && (/*BestTarget.Rarity >= Rarity.Rare ||*/ NumberOfMobsNear(BestTarget, 10, 4))); Click to expand... Should, work, supposing you don't use any other curses.
diavolaki said: Is there a way to make the bot curse with Warlord's Mark on all monsters? It only does it on rare monsters and Orange monsters . Any help appriciated. Click to expand... Search for this line : RegisterCurse(spell, curse, ret => BestTarget.IsCursable && (BestTarget.Rarity >= Rarity.Rare || NumberOfMobsNear(BestTarget, 10, 4))); Click to expand... Replace it with : RegisterCurse(spell, curse, ret => BestTarget.IsCursable && (/*BestTarget.Rarity >= Rarity.Rare ||*/ NumberOfMobsNear(BestTarget, 10, 4))); Click to expand... Should, work, supposing you don't use any other curses.