Regarding Umbris camp and the blaz'n self heal script

Don't know how something works? Here you will find some useful links. And if you have a question, feel free to ask.
Locked
Kevan
Master Scribe
Posts: 59
Joined: Mon Sep 02, 2013 7:36 pm

Regarding Umbris camp and the blaz'n self heal script

Post by Kevan »

Hi folks. Went to Umbris for the first time earlier and noticed my bandaids were taking 2 seconds instead of being instant. I'm assuming that's a design of Umbris camp but it caused me an issue with Blaz'n self heals spamming too fast and bandaids would never land as a result. I'm not much of a coder, can someone please tell me what to alter in the code? Also, are cleric spells generally used as a filler to make up for bandaid heals here? Maybe life leech on a WW weapon as well? Thanks!
User avatar
Xavian
Legendary Scribe
Posts: 485
Joined: Sun Dec 25, 2011 4:09 pm

Re: Regarding Umbris camp and the blaz'n self heal script

Post by Xavian »

Replace this:

Code: Select all

if ( #hits * 100 ) / #maxhits <= %HP || C in #charstatus
  {
  event macro 1 0 [bandself
  set %time ( 11 - ( #dex / 20 ) ) * 20
  if %time < 5
    set %time 5
  wait %time + %pause
  }
With this:

Code: Select all

if ( #hits * 100 ) / #maxhits <= %HP || C in #charstatus
  {
  event macro 1 0 [bandself
  set %time ( 11 - ( #dex / 20 ) ) * 20
;  if %time < 5
    set %time 40
  wait %time + %pause
  }
That sets the heal time to 2 seconds. For the event area where healing is diminished it is a 1 second heal delay, change the 40 to 20. and it will take care of that. If you have 220 dex or above the ; isn't really necessary as it would still work just by changing the 5 to 40.
acolyte
Grandmaster Scribe
Posts: 80
Joined: Tue May 24, 2011 10:57 pm

Re: Regarding Umbris camp and the blaz'n self heal script

Post by acolyte »

Kevan wrote:Also, are cleric spells generally used as a filler to make up for bandaid heals here? Maybe life leech on a WW weapon as well? Thanks!
vampiric embrace + curse weapon
Locked