Yoko

All sides of Injection
It is currently 2026-01-16 11:56:40

All times are UTC+02:00




Post new topic  Reply to topic  [ 4 posts ] 
Author Message
 Post subject: moving ores..
PostPosted: 2004-10-01 10:27:39 
Offline

Joined: 2004-09-21 05:24:31
Posts: 2
how can i move the ores in my back pack to a chest ?
Learning this code is kind of hard because all the pages are in russian =/. any help will be apreciated..


Top
   
 Post subject:
PostPosted: 2004-10-01 14:36:39 
Offline

Joined: 2004-04-23 19:58:03
Posts: 60
Code:
uo.setreceivingcontainer("ID_your_chest")
uo.findtype('type_your_ore','0x0000','my') # ore
uo.grab('0','finditem')
uo.unsetreceivingcontainer()


Top
   
 Post subject:
PostPosted: 2004-10-01 15:02:03 
Offline
Expert!
User avatar

Joined: 2004-07-04 00:14:58
Posts: 1284
Code:
sub MoveOre()
var tOre = '...' ;type_of_ore
var idChest = '...' ;chest_id
  UO.FindType(tOre,'-1','backpack')
  while UO.Count(tOre)>0
    UO.MoveItem('finditem','-1',idChest)
    wait(1000)
    UO.FindType(tOre,'-1','backpack')
  wend
end sub
It move all colors of ore to the chest


Top
   
 Post subject:
PostPosted: 2004-10-02 09:20:59 
Offline
Expert!

Joined: 2004-04-25 11:11:07
Posts: 359
Code:
  dim ore[5]
  ore[1] = "TVJ"
  ore[2] = "GWJ"
  ore[3] = "EWJ" 
  ore[4] = "DWJ" 
    UO.UseObject("Serial of chest")
    for i = 1 to 4
      uo.findtype(ore[i])
      while uo.findcount() > 0
        uo.MoveItem("finditem","-1","Serial of chest")
        wait(500)
        uo.findtype(ore[i])
      wend
    next

Will move ore of all types and all colors from your backpack to chest

_________________
Без труда не выловишь и рыбку из пруда,
А без пруда не выловишь её и с трудом...


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

All times are UTC+02:00


Who is online

Users browsing this forum: No registered users and 2 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