Healing
Moderators: Murderator+, Murderator
-
darkangelgg
- Posts: 9
- Joined: 2006-10-18 13:53:25
- Contact:
Healing
Люди! Дайте скрипт просто на хилинг с киркой, 4тобы сам мыл бинты... уверен, 4то это нетрудно

-
slonopotam
- Posts: 270
- Joined: 2006-08-05 14:09:06
- Contact:
Code: Select all
;===============================================
;===== HEALING SCRIPT ====== © Maahdi ================
;===============================================
sub healing()
; Создать объекты:
VAR bandage = 0x0e21 ; Чистые бинтики
VAR bloodbandages = 0x0e20 ; Использованные бинтики
VAR washbasin = 0x1008 ; Миска с водой
VAR kursa = 0x1530 ; Рубашка курсовая
VAR eda = 0x1608 ; Рыбку жувать будем еще
VAR hide = 0 ; Уходить ли в хайд перед началом прокачки
; Далее ничего не меняем ---------------------------
Var Strength
Strength=UO.Life
UO.Print("/----------------------------\")
UO.Print("| НАЧИНАЕМ КАЧАТЬ ХИЛИНГ :-) |")
UO.Print("\----------------------------/")
repeat
uo.usetype(eda)
if hide==1 then
While not UO.Hidden()
UO.Print("Прячемся :-)")
UO.UseSkill('Stealth') ; Если качаете Hiding, то поменяйте ))
Wait(5000)
WEnd
end if
UO.Print("Одеваем курсу ...")
uo.usetype(kursa)
repeat
wait(300)
until UO.Life<Strength
UO.Print("Снимаем курсу ...")
uo.undress()
while UO.Life<Strength and UO.Count("bandage")>0
UO.Print("Лечимся ...")
UO.Exec("bandageself")
wait(5000)
WEnd
wait(500)
while UO.Count("bloodbandages")>0
UO.Print("Моем бинтики ...")
uo.usetype(bloodbandages)
uo.waittargettype(washbasin)
wait(500)
WEnd
until UO.Count("bandage")==0 AND UO.Count("bloodbandages")==0
UO.Print("Бандажики кончились :-(")
end sub
sub main()
end sub[b][color=green]ДРВ[/color][/b]
[color=blue]Spoiler[/color]
_________________
[b][color=green]Антарес[/color][/b]
[color=blue]Spoiler[/color]|[color=blue]Gostrabaiter[/color]|[color=red]Umhra[/color]|[color=red]Slog[/color]
[color=blue]Spoiler[/color]
_________________
[b][color=green]Антарес[/color][/b]
[color=blue]Spoiler[/color]|[color=blue]Gostrabaiter[/color]|[color=red]Umhra[/color]|[color=red]Slog[/color]
-
Scripts Writer
- Posts: 2259
- Joined: 2005-04-19 18:00:29
- Location: Московская область
- Contact:
-
Scripts Writer
- Posts: 2259
- Joined: 2005-04-19 18:00:29
- Location: Московская область
- Contact:
Code: Select all
sub Train_Heal()
var life = 195 # MaxHp
var blood= '0x0E20' #Type of bloody bandages
var wash= '0x400775D0' ,i #Serial of item,where to clean bandages
uo.Exec('addobject wash')
while uo.targeting()
wait(100)
wend
while not uo.Dead()
for i = 0 to 1000
uo.UseType('0x1515') #Type of cursed item
wait(500)
while uo.life > life - 1
wait(100)
wend
uo.Undress()
wait(500)
while uo.life < life
uo.bandageself()
wait(3000)
wend
next
uo.FindType(blood,'-1','backpack')
if uo.Count(blood) then
wait(1000)
uo.WaitTargetObject('wash')
uo.UseObject('finditem')
wait(1000)
end if
wend
end subэто что еще за чудо подземельяYou Must Die wrote:Code: Select all
sub Train_Heal() var life = 195 # MaxHp var blood= '0x0E20' #Type of bloody bandages var wash= '0x400775D0' ,i #Serial of item,where to clean bandages uo.Exec('addobject wash') while uo.targeting() wait(100) wend while not uo.Dead() for i = 0 to 1000 uo.UseType('0x1515') #Type of cursed item wait(500) while uo.life > life - 1 wait(100) wend uo.Undress() wait(500) while uo.life < life uo.bandageself() wait(3000) wend next uo.FindType(blood,'-1','backpack') if uo.Count(blood) then wait(1000) uo.WaitTargetObject('wash') uo.UseObject('finditem') wait(1000) end if wend end sub
вот самы нармальный
https://yoko.uokit.com/viewtopic.php?p=14842#14842
-
Scripts Writer
- Posts: 2259
- Joined: 2005-04-19 18:00:29
- Location: Московская область
- Contact:
Я написал нормальный, проверенный, практически самый оптимальный скрипт. Написан был мною под шард дрв.Question_GimFlex wrote:это что еще за чудо подземелья![]()
вот самы нармальный![]()
https://yoko.uokit.com/viewtopic.php?p=14842#14842
Если есть критика- говори. Если нет-то и флудить не надо.
-
darkangelgg
- Posts: 9
- Joined: 2006-10-18 13:53:25
- Contact: