Back to "wall of stone" tags

Easy Dispel Field by Jaseowns

1# Easy Dispel Field by Jaseowns
2# UO Outlands 
3# Bound to J on my keyboard
4
5# Energy Field
6if findtype 10408 ground 293 -1 10 as jield
7    while not targetexists 
8        cast 'Dispel Field'
9        wft 200
10    endwhile
11    if targetexists 
12        target jield
13    endif
14endif
15
16# Wall of Stone
17if findtype 19739 ground 0 -1 10 as jield
18    while not targetexists 
19        cast 'Dispel Field'
20        wft 200
21    endwhile
22    if targetexists 
23        target jield
24    endif
25endif
26
27
28