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

Wand of Woh - How Do I Make The Bot Spam Explosive Blast?

Phildalt

New Member
Joined
Jan 18, 2013
Messages
104
Reaction score
0
The title explains it all... I want the bot to always be spamming explosive blast and if possible not in town.

If anyone know how to do this, I would appreciate it very much!

P.S. If there is any wand of woh user here, please let me know what settings are you using and what gear/build please :D
 
Last edited:
There are no settings in trinity within the bot to configure explosive blast off of cd wether in combat or not. There is however a spell delay option which is nice but not exactly what was being asked for.
 
LOL. damn u. I was thinking u wanted this to "make" wand of woh drop. Until I jsut realized what this is all about. and all I can say.... ya bastard! lol:D
 
I use
(replace this with current explosive blast code in wizard.cs)

// if (CombatBase.CanCast(SNOPower.Wizard_ExplosiveBlast, CombatBase.CanCastFlags.NoTimer) && Player.PrimaryResource >= 20)
if (!useOocBuff && CombatBase.CanCast(SNOPower.Wizard_ExplosiveBlast) && Player.PrimaryResource >= 20)
{
return new TrinityPower(SNOPower.Wizard_ExplosiveBlast, 5f, CurrentTarget.Position);
}


if (useOocBuff && CombatBase.CanCast(SNOPower.Wizard_ExplosiveBlast) && Player.PrimaryResource >= 20 && !Player.IsInTown)
{
return new TrinityPower(SNOPower.Wizard_ExplosiveBlast);
}

and set variables in trinity to 1500 insted of 6000

Still buggy but does the job.
Hoping for a fix from rixx
 
Back
Top