TasteID, Healing, Anatomy, Armslore Trainer by psychotics88
Description: Will train TasteID, Healing, Anatomy, Armslore at the same time while attacking a trainer, pet etc. Shortens training time drastically. mainly used to prep for a poison dexxer, or poison build
1setvar! myHealTarget
2setvar! food
3
4while not dead and not hidden
5 // Bandaging
6 if not bandaging
7 hotkey "use bandage (no timer)"
8 wft 500
9 target myHealTarget
10 wait 2000 // Pause after bandaging
11 endif
12
13 // Armslore training
14 if skill "armslore" < 100
15 useskill "armslore"
16 wft 500
17 targettype "dagger" backpack
18 wait 2000 // Pause after Armslore training
19 endif
20
21 // Anatomy training
22 if skill "anatomy" < 100
23 useskill "anatomy"
24 wft 500
25 target myHealTarget
26 wait 2000 // Pause after Anatomy training
27 endif
28
29 // Taste Identification
30 if skill "Taste Identification" < 100
31 useskill "TasteIdentification"
32 wft 500
33 target food
34 wait 2000 // Pause after Taste Identification training
35 endif
36endwhile