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

kolayuk

New Member
Joined
Sep 20, 2015
Messages
12
Reaction score
0
I playing DH multishot build with taeguk, when I play myself I enable macro on start rift to spam multishot every 2 seconds to keep taeguk active. I checked trinity settings for the same option but nothing found. I can't use my macro with bot because of attack stops any long running action (town teleport, activaing events in bounties, etc), usually I disable macro by hand before townrun, but bot can't do that, so it'll be cool to add an option with skill (or key) selection to spam every 2-2.5s to keep taeguk active.
 
You could do it using coding.. and should not be to hard either
in the file plugins/trinity/movement/PlayerMove.cs

on line 708~
you should see
Code:
// Strafe to keep Taguk's up
                if (CombatBase.CanCast(SNOPower.DemonHunter_Strafe) && Trinity.Player.PrimaryResource > 12 &&
                    Gems.Taeguk.IsEquipped && Skills.DemonHunter.Strafe.TimeSinceUse > 2500 && Skills.DemonHunter.Strafe.TimeSinceUse < 3000)
                {
                    Skills.DemonHunter.Strafe.Cast(destination);
                    return;
                }

you could add another section like that under like..

Code:
// Multishoot to keep Taguk's up
                if (CombatBase.CanCast(SNOPower.DemonHunter_[COLOR=#ff0000][B]Multishot[/B][/COLOR]) && Trinity.Player.PrimaryResource > [B][COLOR=#ff0000]12[/COLOR][/B] &&
                    Gems.Taeguk.IsEquipped && Skills.DemonHunter.[COLOR=#ff0000][B]Multishot[/B][/COLOR].TimeSinceUse > 2500 && Skills.DemonHunter.[COLOR=#ff0000][B]Multishot[/B][/COLOR].TimeSinceUse < 3000)
                {
                    Skills.DemonHunter.[COLOR=#ff0000][B]Multishot[/B][/COLOR].Cast(destination);
                    return;
                }

Dont forget to change all the red bold places to whatever you need... i made this for multishot and i havnt even tested it.. and i have no idea if it works.. also change the resouce cost to whatever multishot cost i have no idea if you wanna use other skill.. just change all multi shot to whatever skill you need to use they are usualy called same as in game but without space.
 
Back
Top