Attr:Magery/en: Porovnání verzí

Z Endor Revived Wiki

(založena nová stránka s textem „Category:Skills“)
(založena nová stránka s textem „== Training ==“)
Řádek 3: Řádek 3:
[[Category:Skills]]
[[Category:Skills]]


<div lang="cs" dir="ltr" class="mw-content-ltr">
<span id="Tréning"></span>
== Tréning ==
== Training ==
</div>


<div lang="cs" dir="ltr" class="mw-content-ltr">
<div lang="cs" dir="ltr" class="mw-content-ltr">

Verze z 8. 4. 2025, 15:56

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

Pre tréning sa odporúča kúzliť kúzlo ktoré sa nachádza približne v rovnakom rozmedzí aký skill mám. Príklad: môj skill magery je 40, pre tréning používam kúzlo z okruhu 3 alebo 4.

Razor magery scrip

1. Nastav si target na ktorý budeš kúzliť cez .stare 2. Zmeň premenné podľa návodu v scripte

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