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

Where i can find it and change it?

snejk

New Member
Joined
Oct 17, 2013
Messages
10
Reaction score
0
Hello guyz:)

Im new here and at star i want sorry for my english cuz is poor:P, and i dont know its good place to post here about my problem. Plz dont hate my post just help me:)

Ok my problem is: im using demonbuddy for my wizz at inferno, he have 180k dps @res about 700 ls 2,5% 1121 Loh and hp 67k, he dieing much times at mp4 cuz when he see elites use blizzard wth rune who give more dmg radius, but just at elites, when he see normal mobs he dont use it...

My question is where i can find this setup and change it , when he see more than 3-5 mobs the he will use blizzard?



again sry for my english
 
wizard.cs in trinity folder

Code:
if (!UseOOCBuff && !Player.IsIncapacitated && Hotbar.Contains(SNOPower.Wizard_Blizzard) &&
                   [ (TargetUtil.ClusterExists([U][B]18f[/B][/U], 90f, 2, false) || TargetUtil.AnyElitesInRange(40f) || TargetUtil.IsEliteTargetInRange(45f)) &&
                    (Player.PrimaryResource >= 40 || (hasSnowBoundRune && Player.PrimaryResource >= 20)) && SNOPowerUseTimer(SNOPower.Wizard_Blizzard))
                {
                    var bestClusterPoint = TargetUtil.GetBestClusterPoint([B][U]18f[/U][/B], 45f, false);
                    return new TrinityPower(SNOPower.Wizard_Blizzard, 45f, bestClusterPoint, CurrentWorldDynamicId, -1, 1, 1, WAIT_FOR_ANIM);
                }
so, trinity combat doesn't use rune check for blizzard, change 18f to 22f

if you wanna use blizzard as defence add TargetUtil.AnyMobsInRange(22f, X) where X - trash count in 22f range around you

Code:
(TargetUtil.ClusterExists(22f, 90f, 2, false) || TargetUtil.AnyElitesInRange(40f) || TargetUtil.IsEliteTargetInRange(45f) ||[B]TargetUtil.AnyMobsInRange(22f, 7)[/B])
 
thx for help i will chcek it and say what happen :) any way again thx

edit:

i dont know what im doing wrong but, all the time im use paste ur code
(TargetUtil.ClusterExists(22f, 90f, 2, false) || TargetUtil.AnyElitesInRange(40f) || TargetUtil.IsEliteTargetInRange(45f) ||TargetUtil.AnyMobsInRange(22f, 7))
to trinity wizzard.cs and i get error on demonbuddy bot;/


rly dunno what im makeing wrong, i had upload my orginal file from trinity folder
Code:
http://speedy.sh/gx7Rd/Wizard.cs
, maybe u can change it and reupload for me?

thx for any answer :)
 
ok guys i find the way now ist all ok and my wizz using blizzard like a defence when see more mob's :D

what i change just a sek

my orginal code was

// Blizzard
if (!UseOOCBuff && !PlayerStatus.IsIncapacitated && Hotbar.Contains(SNOPower.Wizard_Blizzard) &&
(TargetUtil.ClusterExists(45f, 2) || TargetUtil.AnyElitesInRange(40f) || TargetUtil.IsEliteTargetInRange(45f)) &&
(PlayerStatus.PrimaryResource >= 40 || (hasSnowBoundRune && PlayerStatus.PrimaryResource >= 20)) &&

i had add just this to my orginal code
TargetUtil.AnyMobsInRange(22f, 7)

and my wizz now using now blizzard like a defence :) now my code is
if (!UseOOCBuff && !PlayerStatus.IsIncapacitated && Hotbar.Contains(SNOPower.Wizard_Blizzard) &&
(TargetUtil.ClusterExists(22f, 90f, 2, false) || TargetUtil.AnyMobsInRange(22f, 7) || TargetUtil.AnyElitesInRange(40f) || TargetUtil.IsEliteTargetInRange(45f)) &&
(PlayerStatus.PrimaryResource >= 40 || (hasSnowBoundRune && PlayerStatus.PrimaryResource >= 20)) && GilesUseTimer(SNOPower.Wizard_Blizzard))


wher "7" its a number of mobs when he must use it i think :) any sugestion pls write here


edit:

now my wizz runing at mp5 and he dnot dieing much times, like 2-3 die/h
 
Back
Top