Yoko

All sides of Injection
It is currently 2025-10-15 07:45:04

All times are UTC+02:00




Post new topic  Reply to topic  [ 2 posts ] 
Author Message
PostPosted: 2004-06-26 17:10:41 
Offline
User avatar

Joined: 2004-06-22 11:46:18
Posts: 6
сабж
из сумок на земле получается, а с земли не идет...


Top
   
 Post subject:
PostPosted: 2004-06-26 19:54:51 
Offline
Expert!

Joined: 2004-04-25 11:11:07
Posts: 359
Code:
sub uoPromptObject(s)
  var needserial = 1
  while needserial
    uo.exec("addobject " + s)
    while uo.targeting()
      wait(50)
    wend
    if uo.getserial(s) <> "0x00000000" then
      needserial = 0
    endif
  wend
  return uo.getserial(s)
end sub

sub massmove()
  var backpack
  var maxquant = 70 #max number of items to move
  var delay = 400 #move delay
  var item
  var moved = 0
  var quant = 0
  var obj = PromptObject("Select Object Of Type To MassMove")
  var type = uo.GetGraphic(obj)
  var color = "-1" #color of items to move
  # OR var color = uo.GetColor(obj)
  var cont = uo.containerof(obj)
  if cont = "0x00000000" then
    cont = "ground"
  endif
  var x = -100,y = -100
  uo.findtype(type,color,cont)
  while uo.findcount() and quant <= maxquant
    item = uo.getserial("finditem")
    moved = 0     
    if x == -100 then
      uo.moveitem(item)
    else
      uo.moveitem(item,color,backpack,str(x),str(y),"0")
    endif
    while not moved     
      wait(delay)
      if not uo.containerof(item) == cont then
        moved = 1
        if quant == 0 then
          x = uo.getx(item)
          y = uo.gety(item)
          uo.findtype("-1")
          backpack = uo.containerof("finditem")           
        endif
        quant = quant + 1
      endif
    wend
    uo.findtype(type,color,cont)
  wend
end sub

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


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

All times are UTC+02:00


Who is online

Users browsing this forum: No registered users and 1 guest


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:  
Powered by phpBB® Forum Software © phpBB Limited