Back to "afk" tags

New Character Auto Level Magery to 80 by Legenis

1###########################################################################
2# New Character Auto Level Magery to 80 in Shelter Dungeon
3# Created by WhiskeyWalt, Updated by Legenis
4#
5# New character, select 50 Magery, 49 Mediation and 1 Necromancy.
6# Pro tip, start with max strength for max HP! You will start with runes to
7# increase your int!!
8#
9# Selecting 1 Necromancy will double your starting spellstones and 
10# give you a free necro book!
11# Spellstones let you cast spells without regs in the starting area.
12#
13# New player guide, enter dungeon in starting area by follow the road north
14# of where you first log in. Upon entering the dungeon, there are people
15# AFK leveling to the left of the entrance. Stand in that group of people.
16# You will want to level inside the dungeon to get a huge increase to skill gain.
17#
18###########################################################################
19
20
21//mana check
22if skill 'magery' < 60 and mana < 11
23  useskill "meditation"
24  while mana < maxmana
25  endwhile
26  pause 600
27  elseif skill 'magery' < 80 and mana < 20
28  useskill "meditation"
29  while mana < maxmana
30  endwhile
31  pause 600
32endif
33//training
34if skill 'magery' < 60
35    cast "greater heal"
36  waitfortarget 15000
37  target self
38  pause 1000
39  elseif skill 'magery' < 80
40    cast "invisibility"
41  waitfortarget 15000
42  target self
43  pause 1000
44  elseif skill 'magery' == 80
45    msg "Magery leveling complete!"
46  stop
47endif
48loop