Back to "ali" tags

Train stealing with pack animal by raveX99

1# Author: raveX
2# Script: Will steal bottles from a pack animal
3# Notes: You MUST set up an organizer for the stack of bottles
4# and placing in the pack animal and set your organizer 
5# number below in the script
6
7if not varexist 'packanimal'
8    overhead 'Select the pack animal to steal from'
9    setvar 'packanimal'
10endif
11
12
13while skill 'stealing' < 100
14    
15    while findtype 3854 'packanimal'
16        overhead 'Stealing'
17        skill 'stealing'
18        wft 5000
19        targettype 3854 'packanimal'
20        wait 11000
21    endwhile
22
23    # SET AN ORGANIZER, AND SET NUMBER HERE
24    organizer 2
25    wait 500
26    
27 endwhile
28
29overhead 'stopped'