Attr:Magery

Z Endor Revived Wiki

Every profession has its spells divided into different circles, from level 1 to 8. The higher the circle, the more difficult the spell is to cast. The Magery skill increases the chance of successfully casting any spell.

Training

For training, it is recommended to cast a spell that is approximately within the same range as your current skill level. Example: if my Magery skill is 40, I should use a spell from circle 3 or 4 for training.

Razor magery script

1. Set your target to cast spells on using the .stare command. 2. Adjust the variables according to the instructions provided in the script.

This skill will train your magery and meditation at once

// Change these values:
// maxMedit = your max meditation value
// maxMagery = your max magery value
// manaNeeded = mana needed for the spell you are trying to cast
// timeToCast = how long a spell is casted in milliseconds
// change Por Ort Grav at bottom to your spell
setvar! 'maxMedit' 86
setvar! 'maxMagery' 86
setvar! 'manaNeeded' 40
setvar! 'timeToCast' 4000

while not dead
if mana < 'manaNeeded'
while mana < maxmana
    clearsysmsg
    say '.useskill meditation'
    wait 3000

    if insysmsg 'meditate'
        if skill 'Meditation' == 'maxMedit' or skill 'Meditation' == 0
            while not insysmsg 'Your mana is full'
                wait 100
            endwhile
        endif
    endif
endwhile
endif
say '.cast_lt Por Ort Grav' // Change spell
wait 'timeToCast'

if skill 'Magery' == 'maxMagery'
    stop
endif
endwhile