annuncio

Comprimi
Ancora nessun annuncio.

xx

Comprimi
X
 
  • Filtro
  • Ora
  • Visualizza
Elimina tutto
nuovi messaggi

  • xx

    Rendo pubbliche le mie macro (e altre che ho trovato) di AssistUO per vari templates

    [PVM]


    War

    Impostazioni AUO
    • Se avete healing
      1. Options -> Friends -> Healing:
        • (mettere spunta su) Enabled -> Self
        • (mettere spunta su) Count seconds until finishes
        • (mettere spunta su) Start below -> mettete la % di hp raggiunti i quali vi inizia a bendare
        • (mettere spunta su) Use OSI dexterity formula delay


    Macro AUO (metto solo quelle più "complesse", le altre saprete di certo farle voi [enemy of one, consecrate weapon, le ability])
    • Cura by spells
      codice:
      // Author: Gramoz
      // Purpose: Cure you if poisoned, heal you if damaged (by chivalry spells)
      //
      if poisoned 'self'
       cast 'cleanse by fire' 'self'
      else
       cast 'close wounds' 'self'
      endif
    • Attacco mob più vicino + honor
      codice:
      // Author: Gramoz
      // Purpose: Attack the closest mob and honor it
      //
      @getenemy 'murderer' 'enemy' 'criminal' 'gray' 'humanoid' 'transformation' 'closest'
      if @findobject 'enemy'
       autotargetobject 'enemy'
       virtue 'Honor'
       attack 'enemy'
      endif
    • Divine fury
      codice:
      // Author: Gramoz
      // Purpose: Cast divine fury only if it is not already casted
      //
      if not buffexists 'divine fury'
       cast 'divine fury'
      endif
    • Remove curse self + ri-equip
      codice:
      // Author: Gramoz
      // Purpose: Cast remove curse on self only if you have been cursed and dress any pieces of equip, to work you must create a new set called "equip" in Agents -> Dress, and import all the equip of your pg
      //
      if not listexists 'buffs'
       createlist 'buffs'
       pushlist 'buffs' 'weaken'
       pushlist 'buffs' 'curse'
       pushlist 'buffs' 'evil omen'
       pushlist 'buffs' 'corpse skin'
       pushlist 'buffs' 'mind rot'
       pushlist 'buffs' 'strangle'
       pushlist 'buffs' 'pain spike'
       pushlist 'buffs' 'mortal strike'
       pushlist 'buffs' 'bleed'
       pushlist 'buffs' 'blood oath'
       pushlist 'buffs' 'clumsy'
       pushlist 'buffs' 'feeblemind'
       pushlist 'buffs' 'mass curse'
       pushlist 'buffs' 'death strike'
      endif
      for 0 to 'buffs'
       if buffexists 'buffs[]'
        cast 'remove curse' 'self'
        dress 'equip'
        break
       endif
      endfor


    Script di EUO di cui continuerete ad aver bisogno
    • Anti Blood Oath
    • Conteggio Honor
    • Lightning Striker (se avete bushido)




    Mage
    Ultima modifica di gramoz; 26-05-2013, 20:59.
Sto operando...
X