Auto Divine Fury

Discussion about the technical aspects of scripting. Ask about all issues involving your freelance projects here.
Locked
User avatar
Devlin
Legendary Scribe
Reactions:
Posts: 658
Joined: Thu Mar 18, 2010 12:50 pm

Auto Divine Fury

Post by Devlin »

Will cast divine fury when needed. Customizable Stamina level allows you to cast it as often as you want, depending on total Stamina, SSI, wep type, personal preference, etc.

Somewhere between 50-75% is ideal to cast Divine Fury; if you have no SSI, you may want to put this around 85%.
If you do not have a lot of FC/FCR, you may need to change the %pause amount as well, but this should be fine.

Code: Select all

;======================================================================
; Script Name: Auto Divine Fury
; Author: Devlin
; Version: 1.1
; Purpose: Casts Divine Fury as needed.
;======================================================================
set %Stam 75  ; This number determines at what % you cast Divine Fury
set %pause 35  ; Make this longer if you are spamming Divine Fury, shorter if it takes too long to cast
 if ( #stamina * 100 ) / #maxstam <= %stam 
  {
  event macro 15 205
  set %time 35
  wait %time + %pause
  }
Last edited by Devlin on Sat Nov 10, 2012 11:09 pm, edited 1 time in total.
Resident Wiki Editor/Village Idiot

EasyUO Scripts
ReArmer
ReArmer (Old Version)
ReReader
Runebook Copier
---------------------------------------------
Combat Focus Guide (Godmode Formula)
User avatar
Devlin
Legendary Scribe
Reactions:
Posts: 658
Joined: Thu Mar 18, 2010 12:50 pm

Re: Auto Divine Fury

Post by Devlin »

Bumpity.
Resident Wiki Editor/Village Idiot

EasyUO Scripts
ReArmer
ReArmer (Old Version)
ReReader
Runebook Copier
---------------------------------------------
Combat Focus Guide (Godmode Formula)
Draconomicon
Legendary Scribe
Reactions:
Posts: 253
Joined: Thu Mar 24, 2011 4:42 am
Contact:

Re: Auto Divine Fury

Post by Draconomicon »

:nod:
Locked