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

Curse

diavolaki

New Member
Joined
Jun 3, 2014
Messages
16
Reaction score
0
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.

Search for this line :

RegisterCurse(spell, curse, ret => BestTarget.IsCursable && (BestTarget.Rarity >= Rarity.Rare || NumberOfMobsNear(BestTarget, 10, 4)));

Replace it with :

RegisterCurse(spell, curse, ret => BestTarget.IsCursable && (/*BestTarget.Rarity >= Rarity.Rare ||*/ NumberOfMobsNear(BestTarget, 10, 4)));

Should, work, supposing you don't use any other curses.
 
Back
Top