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

Self cast enduring cry/immortal call

whistlingswordsman

New Member
Joined
May 15, 2014
Messages
19
Reaction score
0
Hi, is there a way to self cast cast enduring cry or immortal call? Seems like there was the option in the older version of the bot.

Thanks.
 
ExampleRoutine auto-casts Enduring Cry as long as it's on your skill bar. It doesn't do Immortal Call right now, but I can look into adding that into the default routine in the near future. It's mostly just some copy/paste work and adding a check for the number of endurance charges.
 
ExampleRoutine auto-casts Enduring Cry as long as it's on your skill bar. It doesn't do Immortal Call right now, but I can look into adding that into the default routine in the near future. It's mostly just some copy/paste work and adding a check for the number of endurance charges.

any chance we can get some help on coding immortal call in manually?
 
any chance we can get some help on coding immortal call in manually?

Should be something like (pseudo-code)

Code:
if Immortal Call != -1 #immortal call on skillbar
    if NumberOfMobsNear > 0
        if Player.EnduranceCharges == Player.MaxEnduranceCharges
            Cast Immortal Call
            return true
        else
            return false
    else
        return false
else
    return false
 
There was some kind of a gem ... cast on damage taken, should work pretty good, no?
 
yup lol, but actually might be important due to beta changes.

Lots of changes are occuring (mana reserved and such) and it's probably useless to talk about it until beta hits live.
 
Back
Top