Yoko

All sides of Injection
It is currently 2025-11-10 05:23:45

All times are UTC+02:00




Post new topic  Reply to topic  [ 6 posts ] 
Author Message
PostPosted: 2006-09-09 12:38:01 
Offline

Joined: 2004-07-23 11:05:19
Posts: 22
Ребят, подскажите пожалуйста, в скрипте в переменно стоит максимальный вес после которого чар улетает и складывает руду. Но проблема в том, что чар не докапывает до данного веса. Подскажите где и что исправить, что бы чар скажем копал до веса 600.
Вот скрипт:
Code:
Var RuneBook = "0x404A4437" # Бука по которой прыгаем по минам и к дому
var Marks = 10 # Количество марков в буке по минам
var WeightLimit = 1050 # Максимальный вес
var Container = "0x4056CE16" # Контейнер у дома в который сыпем
var ContainerLopat = "0x4056CE16" # Контейнер у дома с лопатами
var charkiller;
var MarkNo
var i
var TmpX
var TmpY
var CurX
var CurY
var CurZ
var TileX
var TileY
VAR X
sub main()
UO.Warmode(0)
uo.Exec('exec proverkagm')
uo.Exec('exec Reconnect')
uo.Exec("filterspeech on")
uo.Exec("filterspeech add 'Where do you want to use the pickaxe?'")
start:
for MarkNo = 1 to ( Marks )
RecallTo( MarkNo )
Wait( 1000 )

CurX = UO.GetX("self")
CurY = UO.GetY("self")
CurZ = UO.GetZ("self")

for TileX = -2 to 2
for TileY = -2 to 2
while UO.Dead()
UO.Playwav("C:\sound107.wav")
Wait(2500);
wend

tuktuk:
proverka_pk()
UO.DeleteJournal()
While not UO.Hidden()
UO.Useskill("Hiding")
Wait(9000)
Wend
if UO.Weight > WeightLimit then
GoHome()
Goto tocka_end
end if
UO.Exec("waittargettile * "+STR(CurX + TileX)+" "+STR(CurY + TileY)+" "+STR(CurZ))
UO.Exec("usetype 0x0E85")
X=0
rknd:
If UO.InJournal("There is no ore here to mine") OR UO.InJournal("Try mining in rock") OR UO.InJournal("There is no ore here to mine") OR UO.InJournal("That is too far away.") OR UO.InJournal("You have no line of sight to that location") or UO.InJournal("You put the Proto Ore in your pack.") OR UO.InJournal("You put the Common Ore in your pack.") OR UO.InJournal("You put the Elemental Ore in your pack") then
Wait(2000)
goto konec
End if
If UO.InJournal("You put the Arch Ore in your pack.") OR UO.InJournal("You put the Luxury Ore in your pack.") OR UO.InJournal("You loosen some rocks but fail to find any useable ore") OR X>225 then
;Wait(1000)
goto tuktuk
End if
X=X+1
Wait(100)
goto rknd
konec:
proverka_pk()
next
next
GoHome()
tocka_end:
next
Goto start
end sub

sub RecallTo( i )
TmpX = UO.GetX("self")
TmpY = UO.GetY("self")
UO.Exec("recall "+RuneBook+" "+STR( i ))
Wait (5000)
UO.UseSkill("Hiding")
while TmpX == UO.GetX("self") and TmpY == UO.GetY("self")
Wait(500)
wend
end sub
sub GoHome()
TmpX = UO.GetX("self")
TmpY = UO.GetY("self")
UO.Exec("recall "+RuneBook+" "+STR( 11 ));тут номер метки в тревеле к ДОМУ
Wait (2000)
while TmpX == UO.GetX("self") and TmpY == UO.GetY("self")
Wait(500)
wend
UO.Exec("setreceivingcontainer "+Container)
while not UO.Count("0x19b9") == 0
UO.Exec("waittargettype 0x19b9")
UO.Exec("grab 0")
Wait(2000)
wend
UO.Exec("unsetreceivingcontainer")
uo.Useobject(ContainerLopat)
While UO.Count(0x0E85) < 2
UO.Findtype("0x0E85", "-1",ContainerLopat)
UO.WaitTargetObject('finditem')
UO.Grab()
Wait (2000)
Wend
While UO.Count(0x1f4c) < 1
UO.Findtype("0x1f4c", "-1", ContainerLopat)
UO.WaitTargetObject('finditem')
UO.Exec("grab 30")
Wait (2000)
Wend
rechargeallbook()
While UO.Count(0x1f4c) > 0
Uo.Setreceivingcontainer(ContainerLopat)
Uo.Waittargettype(0x1f4c)
UO.Grab()
Wait(1000)
Wend
Uo.UnSetreceivingcontainer()
end sub
sub proverka_pk()
if uo.InJournal("attaking you") then
charkiller=uo.JournalSerial(uo.InJournal("attaking you")-1)
Uo.Print("killer = "+charkiller)
UO.Playwav("c:\Sound108.wav")
wait(3000)
UO.Playwav("c:\Sound108.wav")
wait(3000)
UO.Playwav("c:\Sound108.wav")
uo.exec("terminate all")
end if
end sub
sub rechargeallbook()
var recalls
var current_book
UO.IgnoreReset()
while 1
UO.FindType('0x1F4C')
if UO.FindCount() < 1 then
UO.Print("No recall scrolls left!")
#return
end if
recalls = UO.GetSerial('finditem')
UO.FindType('0x0EFA', '0x0127')
if UO.FindCount() < 1 then
UO.Print("All books are sucessfully charged!")
return
end if
current_book = UO.GetSerial('finditem')
UO.WaitTargetObject(recalls, current_book)
UO.Msg(".travelbook_recharge")
UO.Ignore(current_book)
Wait(1000)
wend
end sub


Top
   
 Post subject:
PostPosted: 2006-09-09 12:50:43 
Offline

Joined: 2004-07-23 11:05:19
Posts: 22
А то он покопает примерно до 150 веса и летит скидывать. Вообщем он не летит с первой метки на вторую, а летит первая метка, дом, потом вторая метка и т.д.


Top
   
 Post subject:
PostPosted: 2006-09-09 16:50:10 
Offline
Expert!
User avatar

Joined: 2005-09-14 15:31:58
Posts: 2152
Location: Latvia
Code:
if UO.Weight > WeightLimit 

на
Code:
if UO.Weight > UO.STR*4

:roll:

зы скрипт ужасный :roll:

_________________
Уроки языка Injection
Основные команды языка Injection
Yoko Injection Code Sweeper
Drw (2009) скрипты
2017 Начал играть на Uorpg.net


Top
   
 Post subject:
PostPosted: 2006-09-10 10:58:37 
Offline

Joined: 2004-07-23 11:05:19
Posts: 22
Спасибо за отзывчивость на мою просьбу.
Вот только почему-то и это не действует :( Он до 200 примерно веса докапывает и улетает. Где то 150 руды выкопает и летит сволочь в дом :(


Top
   
 Post subject:
PostPosted: 2006-09-10 12:53:48 
Offline
Expert!
User avatar

Joined: 2005-09-14 15:31:58
Posts: 2152
Location: Latvia
Code:
Var RuneBook = "0x404A4437" # Áóêà ïî êîòîðîé ïðûãàåì ïî ìèíàì è ê äîìó
var Marks = 10 # Êîëè÷åñòâî ìàðêîâ â áóêå ïî ìèíàì
var WeightLimit = 1050 # Ìàêñèìàëüíûé âåñ
var Container = "0x4056CE16" # Êîíòåéíåð ó äîìà â êîòîðûé ñûïåì
var ContainerLopat = "0x4056CE16" # Êîíòåéíåð ó äîìà ñ ëîïàòàìè
var charkiller;
var MarkNo
var i
var TmpX
var TmpY
var CurX
var CurY
var CurZ
var TileX
var TileY
VAR X
sub main()
UO.Warmode(0)
uo.Exec('exec proverkagm')
uo.Exec('exec Reconnect')
uo.Exec("filterspeech on")
uo.Exec("filterspeech add 'Where do you want to use the pickaxe?'")
start:
for MarkNo = 1 to ( Marks )
RecallTo( MarkNo )
Wait( 1000 )

CurX = UO.GetX("self")
CurY = UO.GetY("self")
CurZ = UO.GetZ("self")

for TileX = -2 to 2
for TileY = -2 to 2
while UO.Dead()
UO.Playwav("C:\sound107.wav")
Wait(2500);
wend

tuktuk:
proverka_pk()
UO.DeleteJournal()
While not UO.Hidden()
UO.Useskill("Hiding")
Wait(9000)
Wend
if UO.Weight > WeightLimit then
GoHome()
end if
UO.Exec("waittargettile * "+STR(CurX + TileX)+" "+STR(CurY + TileY)+" "+STR(CurZ))
UO.Exec("usetype 0x0E85")
X=0
rknd:
If UO.InJournal("There is no ore here to mine") OR UO.InJournal("Try mining in rock") OR UO.InJournal("There is no ore here to mine") OR UO.InJournal("That is too far away.") OR UO.InJournal("You have no line of sight to that location") or UO.InJournal("You put the Proto Ore in your pack.") OR UO.InJournal("You put the Common Ore in your pack.") OR UO.InJournal("You put the Elemental Ore in your pack") then
Wait(2000)
goto konec
End if
If UO.InJournal("You put the Arch Ore in your pack.") OR UO.InJournal("You put the Luxury Ore in your pack.") OR UO.InJournal("You loosen some rocks but fail to find any useable ore") OR X>225 then
;Wait(1000)
goto tuktuk
End if
X=X+1
Wait(100)
goto rknd
konec:
proverka_pk()
next
next
next
Goto start
end sub

sub RecallTo( i )
TmpX = UO.GetX("self")
TmpY = UO.GetY("self")
UO.Exec("recall "+RuneBook+" "+STR( i ))
Wait (5000)
UO.UseSkill("Hiding")
while TmpX == UO.GetX("self") and TmpY == UO.GetY("self")
Wait(500)
wend
end sub
sub GoHome()
TmpX = UO.GetX("self")
TmpY = UO.GetY("self")
UO.Exec("recall "+RuneBook+" "+STR( 11 ));òóò íîìåð ìåòêè â òðåâåëå ê ÄÎÌÓ
Wait (2000)
while TmpX == UO.GetX("self") and TmpY == UO.GetY("self")
Wait(500)
wend
UO.Exec("setreceivingcontainer "+Container)
while not UO.Count("0x19b9") == 0
UO.Exec("waittargettype 0x19b9")
UO.Exec("grab 0")
Wait(2000)
wend
UO.Exec("unsetreceivingcontainer")
uo.Useobject(ContainerLopat)
While UO.Count(0x0E85) < 2
UO.Findtype("0x0E85", "-1",ContainerLopat)
UO.WaitTargetObject('finditem')
UO.Grab()
Wait (2000)
Wend
While UO.Count(0x1f4c) < 1
UO.Findtype("0x1f4c", "-1", ContainerLopat)
UO.WaitTargetObject('finditem')
UO.Exec("grab 30")
Wait (2000)
Wend
rechargeallbook()
While UO.Count(0x1f4c) > 0
Uo.Setreceivingcontainer(ContainerLopat)
Uo.Waittargettype(0x1f4c)
UO.Grab()
Wait(1000)
Wend
Uo.UnSetreceivingcontainer()
end sub
sub proverka_pk()
if uo.InJournal("attaking you") then
charkiller=uo.JournalSerial(uo.InJournal("attaking you")-1)
Uo.Print("killer = "+charkiller)
UO.Playwav("c:\Sound108.wav")
wait(3000)
UO.Playwav("c:\Sound108.wav")
wait(3000)
UO.Playwav("c:\Sound108.wav")
uo.exec("terminate all")
end if
end sub
sub rechargeallbook()
var recalls
var current_book
UO.IgnoreReset()
while 1
UO.FindType('0x1F4C')
if UO.FindCount() < 1 then
UO.Print("No recall scrolls left!")
#return
end if
recalls = UO.GetSerial('finditem')
UO.FindType('0x0EFA', '0x0127')
if UO.FindCount() < 1 then
UO.Print("All books are sucessfully charged!")
return
end if
current_book = UO.GetSerial('finditem')
UO.WaitTargetObject(recalls, current_book)
UO.Msg(".travelbook_recharge")
UO.Ignore(current_book)
Wait(1000)
wend
end sub

а так ?

_________________
Уроки языка Injection
Основные команды языка Injection
Yoko Injection Code Sweeper
Drw (2009) скрипты
2017 Начал играть на Uorpg.net


Top
   
 Post subject:
PostPosted: 2006-09-10 16:55:24 
Offline

Joined: 2004-07-23 11:05:19
Posts: 22
Стал нормально соблюдать вес, но!!!
Чар полетел на первую точку, начал копать, потом полел на втору и так далее до максимального веса, после этого полетел к дому скидывать руду. Скинул руду. Заправил реколами треволбуку и дальше(должен был улететь на следующую точку окпки) встал прям у сундука и начал якобы копать :(
Гдже косяк? :(

Заранее благодарен.


Top
   
Display posts from previous:  Sort by  
Post new topic  Reply to topic  [ 6 posts ] 

All times are UTC+02:00


Who is online

Users browsing this forum: No registered users and 5 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
cron
Powered by phpBB® Forum Software © phpBB Limited