Yoko
http://forum.yoko.com.ua/

Помогите с Fishing.
http://forum.yoko.com.ua/viewtopic.php?f=17&t=15870
Page 1 of 1

Author:  Cl@iMaN [ 2010-09-22 12:36:40 ]
Post subject:  Помогите с Fishing.

Вот скрипт:
Code:
sub fishing() 
var mx, my, mz, i, j
uo.print('А где ведро?')
uo.exec('addobject Bag')
while uo.targeting()
wait(100)
wend

mx = UO.GetX("self")
my = UO.GetY("self")
mz = UO.GetZ("self")
UO.DeleteJournal()
for i = mx-4 to mx+4
for j = my -4 to my+4
if UO.dead() then
return
endif
while not UO.Hidden()
UO.Warmode("0")
uo.print("hiding...")
UO.UseSkill("Hiding")
wait(4000)
wend

UO.Print("Now Fishing In: "+str(mx-i)+" "+str(my-j))
while not UO.InJournal("no fish here") and not UO.InJournal("location") and not UO.InJournal("far away") and not UO.InJournal("in water")
UO.DeleteJournal()
UO.Waittargettile("1341", str(i), str(j), str(mz))
UO.Usetype("0x0DBF") ;FishingPole
if UO.dead() then
return
endif
if UO.Weight>660 then
return
endif
while not UO.InJournal("You pull") and not UO.InJournal("location") and not UO.InJournal("no fish") and not UO.InJournal("but fail") and not UO.InJournal("far away") and not UO.InJournal("in water")
wait (100)
if UO.InJournal("You pull") then
UO.SetReceivingContainer('Bag')
UO.findtype('0x09CC','0x0000','ground') ;fish
UO.grab ('3','finditem')
wait (500)
UO.findtype('0x09CD','0x0000','ground') ;fish
UO.grab ('3','finditem')
wait (500)
UO.findtype('0x09CE','0x0000','ground') ;fish
UO.grab ('3','finditem')
wait (500)
UO.findtype('0x09CF','0x0000','ground') ;fish
UO.grab ('3','finditem')
wait (500)
UO.findtype('0x14EB','0x0000','ground') ;tattered map
UO.grab ('1','finditem')
wait (500)
UO.findtype('0x0DD6','0x05F6','ground') ;Truly rare fish
UO.grab ('1','finditem')
wait (500)
UO.findtype('0x0DD6','0x01BB','ground') ;Prize fish
UO.grab ('1','finditem')
wait (500)
UO.UnSetReceivingContainer()
end if
wend
wend
UO.DeleteJournal()
next
next
end sub


Помогите убрать Hiding. Заранее благодарен.

Author:  kirpaaa [ 2010-09-22 12:50:51 ]
Post subject:  Re: Помогите с Fishing.

sub fishing()
var mx, my, mz, i, j
uo.print('А где ведро?')
uo.exec('addobject Bag')
while uo.targeting()
wait(100)
wend

mx = UO.GetX("self")
my = UO.GetY("self")
mz = UO.GetZ("self")
UO.DeleteJournal()
for i = mx-4 to mx+4
for j = my -4 to my+4
if UO.dead() then
return
endif
#while not UO.Hidden()
#UO.Warmode("0")
#uo.print("hiding...")
#UO.UseSkill("Hiding")
#wait(4000)
wend

UO.Print("Now Fishing In: "+str(mx-i)+" "+str(my-j))
while not UO.InJournal("no fish here") and not UO.InJournal("location") and not UO.InJournal("far away") and not UO.InJournal("in water")
UO.DeleteJournal()
UO.Waittargettile("1341", str(i), str(j), str(mz))
UO.Usetype("0x0DBF") ;FishingPole
if UO.dead() then
return
endif
if UO.Weight>660 then
return
endif
while not UO.InJournal("You pull") and not UO.InJournal("location") and not UO.InJournal("no fish") and not UO.InJournal("but fail") and not UO.InJournal("far away") and not UO.InJournal("in water")
wait (100)
if UO.InJournal("You pull") then
UO.SetReceivingContainer('Bag')
UO.findtype('0x09CC','0x0000','ground') ;fish
UO.grab ('3','finditem')
wait (500)
UO.findtype('0x09CD','0x0000','ground') ;fish
UO.grab ('3','finditem')
wait (500)
UO.findtype('0x09CE','0x0000','ground') ;fish
UO.grab ('3','finditem')
wait (500)
UO.findtype('0x09CF','0x0000','ground') ;fish
UO.grab ('3','finditem')
wait (500)
UO.findtype('0x14EB','0x0000','ground') ;tattered map
UO.grab ('1','finditem')
wait (500)
UO.findtype('0x0DD6','0x05F6','ground') ;Truly rare fish
UO.grab ('1','finditem')
wait (500)
UO.findtype('0x0DD6','0x01BB','ground') ;Prize fish
UO.grab ('1','finditem')
wait (500)
UO.UnSetReceivingContainer()
end if
wend
wend
UO.DeleteJournal()
next
next
end sub

Author:  Cl@iMaN [ 2010-09-22 12:58:48 ]
Post subject:  Re: Помогите с Fishing.

пишет ошибку: Unhandled exception in parser.

Author:  kirpaaa [ 2010-09-22 13:05:13 ]
Post subject:  Re: Помогите с Fishing.

#while not UO.Hidden()
#UO.Warmode("0")
#uo.print("hiding...")
#UO.UseSkill("Hiding")
#wait(4000)
wend

удали это все ! и вроде будет гут :)

Author:  Cl@iMaN [ 2010-09-22 13:08:10 ]
Post subject:  Re: Помогите с Fishing.

Заработало :D , тока теперь пишет клетки 8 8 ; 8 7 и всё. Но в Injecte скрипт продолжает работать :?

Author:  kirpaaa [ 2010-09-22 13:18:41 ]
Post subject:  Re: Помогите с Fishing.

попробуй выруби инжект и заново зайди

Author:  Cl@iMaN [ 2010-09-22 13:23:33 ]
Post subject:  Re: Помогите с Fishing.

kirpaaa wrote:
попробуй выруби инжект и заново зайди


не помогает.

Author:  kirpaaa [ 2010-09-22 13:28:36 ]
Post subject:  Re: Помогите с Fishing.

хз , у меня все ок.. Жди тогда может кто еще поможет , только долго ждать до 2ух суток бывает жду пока кто-то ответит :(


sub fishing()
var mx, my, mz, i, j
uo.print('А где ведро?')
uo.exec('addobject Bag')
while uo.targeting()
wait(100)
wend

mx = UO.GetX("self")
my = UO.GetY("self")
mz = UO.GetZ("self")
UO.DeleteJournal()
for i = mx-4 to mx+4
for j = my -4 to my+4
if UO.dead() then
return
endif


UO.Print("Now Fishing In: "+str(mx-i)+" "+str(my-j))
while not UO.InJournal("no fish here") and not UO.InJournal("location") and not UO.InJournal("far away") and not UO.InJournal("in water")
UO.DeleteJournal()
UO.Waittargettile("1341", str(i), str(j), str(mz))
UO.Usetype("0x0DBF") ;FishingPole
if UO.dead() then
return
endif
if UO.Weight>660 then
return
endif
while not UO.InJournal("You pull") and not UO.InJournal("location") and not UO.InJournal("no fish") and not UO.InJournal("but fail") and not UO.InJournal("far away") and not UO.InJournal("in water")
wait (100)
if UO.InJournal("You pull") then
UO.SetReceivingContainer('Bag')
UO.findtype('0x09CC','0x0000','ground') ;fish
UO.grab ('3','finditem')
wait (500)
UO.findtype('0x09CD','0x0000','ground') ;fish
UO.grab ('3','finditem')
wait (500)
UO.findtype('0x09CE','0x0000','ground') ;fish
UO.grab ('3','finditem')
wait (500)
UO.findtype('0x09CF','0x0000','ground') ;fish
UO.grab ('3','finditem')
wait (500)
UO.findtype('0x14EB','0x0000','ground') ;tattered map
UO.grab ('1','finditem')
wait (500)
UO.findtype('0x0DD6','0x05F6','ground') ;Truly rare fish
UO.grab ('1','finditem')
wait (500)
UO.findtype('0x0DD6','0x01BB','ground') ;Prize fish
UO.grab ('1','finditem')
wait (500)
UO.UnSetReceivingContainer()
end if
wend
wend
UO.DeleteJournal()
next
next
end sub

Author:  Cl@iMaN [ 2010-09-22 13:33:21 ]
Post subject:  Re: Помогите с Fishing.

он как, пропускает 2-е координаты и встоет в ступор. походу он пытается закинуть удочку в последнюю координату.

Был где-то скрипт, но найти не могу. Там если 1-2-3-4-5 координаты земля, то он продолжает дальше поиск воды.

Author:  kirpaaa [ 2010-09-22 13:37:08 ]
Post subject:  Re: Помогите с Fishing.

могу дать на EasyUo если пользуешся ?

Author:  Cl@iMaN [ 2010-09-22 13:37:32 ]
Post subject:  Re: Помогите с Fishing.

давай попробую :)

Author:  kirpaaa [ 2010-09-22 13:38:28 ]
Post subject:  Re: Помогите с Fishing.

дай Skype свой

Author:  Cl@iMaN [ 2010-09-22 13:41:34 ]
Post subject:  Re: Помогите с Fishing.

Skype не стоит. Есть тока такие контыкты:
claimill@mail.ru или icq627677722

Author:  kirpaaa [ 2010-09-22 13:48:18 ]
Post subject:  Re: Помогите с Fishing.

+email

Author:  Cl@iMaN [ 2010-09-22 13:56:12 ]
Post subject:  Re: Помогите с Fishing.

всё стало круто, после твоей посылки :)

Author:  kirpaaa [ 2010-09-22 13:57:16 ]
Post subject:  Re: Помогите с Fishing.

:D удачи

Page 1 of 1 All times are UTC+02:00
Powered by phpBB® Forum Software © phpBB Limited
https://www.phpbb.com/