Back to "b" tags

Two players Healing by golfinh0

Description: This script requires two open accounts. One is the "healer" the other is the "hitter".

The trigger to stop the script is dropping the bandage in the floor. This will halt the script.

I couldn't find a way to check other's player health.

1###### Add this snippet to the char that will hit
2if findtype 'clean bandage%s%' 'ground' 
3    warmode off
4    stop
5endif
6wait 2000
7loop
8######
9
10###### Add this script to the char that will 
11if count 'Bandages' < 5 or 'Healing' = 100
12    if findtype 'clean bandage%s%' as clean_bandages
13        lift clean_bandages
14        wait 500
15        drop 'ground'
16    endif
17    stop
18endif
19
20if hits < 100 and not bandaging
21    hotkey 'Bandage Self'
22    wait 10000
23endif
24loop
25######