spellweaving
Differences
This shows you the differences between two versions of the page.
| — | spellweaving [2025/02/25 22:20] (current) – created - external edit 127.0.0.1 | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| + | < | ||
| + | # | ||
| + | # | ||
| + | # What you need: | ||
| + | # | ||
| + | # 1) Spellweaving Spellbook with Arcane Circle, Immolating Weapon, Reaper Form, Essence of Wind, Wildfire, and Word of Death | ||
| + | # | ||
| + | # 2) A weapon equipped in your hand | ||
| + | # | ||
| + | # Once you have those Press Play | ||
| + | # | ||
| + | # | ||
| + | |||
| + | |||
| + | |||
| + | |||
| + | |||
| + | |||
| + | while True: | ||
| + | Spellweaving = Player.GetSkillValue(' | ||
| + | if Spellweaving < 20 and Player.Mana > 20: | ||
| + | Spells.CastSpellweaving(' | ||
| + | Misc.Pause(2000) | ||
| + | | ||
| + | if Spellweaving >= 20 and Spellweaving < 36 and Player.Mana > 20: | ||
| + | Spells.CastSpellweaving(' | ||
| + | Misc.Pause(2200) | ||
| + | |||
| + | if Spellweaving >= 36 and Spellweaving < 58 and Player.Mana > 40: | ||
| + | Spells.CastSpellweaving(' | ||
| + | Misc.Pause(4000) | ||
| + | |||
| + | if Spellweaving >= 58 and Spellweaving < 74 and Player.Mana > 60: | ||
| + | Spells.CastSpellweaving(' | ||
| + | Misc.Pause(5000) | ||
| + | |||
| + | if Spellweaving >= 74 and Spellweaving < 92 and Player.Mana > 60: | ||
| + | Spells.CastSpellweaving(' | ||
| + | Target.WaitForTarget(4000, | ||
| + | Target.Self() | ||
| + | Misc.Pause(5000) | ||
| + | |||
| + | if Spellweaving >= 92 and Spellweaving != Player.GetSkillCap(' | ||
| + | if Player.Hits < 50: | ||
| + | Spells.CastSpellweaving(' | ||
| + | Target.WaitForTarget(4000, | ||
| + | Target.Self() | ||
| + | Misc.Pause(2000) | ||
| + | else: | ||
| + | Spells.CastSpellweaving(' | ||
| + | Target.WaitForTarget(4000, | ||
| + | Target.Self() | ||
| + | Misc.Pause(2000) | ||
| + | |||
| + | if Spellweaving == Player.GetSkillCap(' | ||
| + | Misc.ScriptStopAll() | ||
| + | | ||
| + | </ | ||