Author Topic: Looking for pointers  (Read 7146 times)

0 Members and 1 Guest are viewing this topic.

Offline camotbik

  • Sr. Member
  • *
  • Posts: 349
  • Activity:
    0%
  • Reputation Power: 3
  • camotbik has no influence.
  • Gender: Male
  • Hello! I'm a UO addict.
  • Respect: +38
  • Referrals: 0
    • View Profile
Re: Looking for pointers
« Reply #15 on: August 15, 2011, 03:28:50 PM »
0
it depends what backpack you specify, for example
Code: [Select]
set %storage ID
  finditem POF c_ , %storage ; it searches for Gold only in %storage container
  while #findcnt > 0
  {
    Exevent Drag #findid #findstack ; Drags the the found item in whatever open container
    Exevent Dropc #backpackid       ; Drops the gold in specified container e.g. in your backpack
    wait 10
    finditem POF c_ , %storage; it searches for Gold only in %storage contai
  }

But if you would use

Code: [Select]
 finditem POF c_   ; it searches for Gold only in all open containers
  while #findcnt > 0
  {
    Exevent Drag #findid #findstack ; Drags the the found item in %storage container
    Exevent Dropc %storage       ; Drops the gold in specified container e.g. storage
    wait 10
    finditem POF c_  ; it searches for Gold only in all open containers
  }
 
About n/a  - Not applicable! That means you cannot answer the question.
What you witness -- is whatver..
uogamers hybrid.

Offline SardornTopic starter

  • Jr. Member
  • **
  • Posts: 34
  • Activity:
    0%
  • Reputation Power: 2
  • Sardorn has no influence.
  • Respect: +2
  • Referrals: 0
    • View Profile
Re: Looking for pointers
« Reply #16 on: August 16, 2011, 05:31:24 PM »
0
Wonderful again!
I kinda figured the N/A thing but it wasnt clicking that a button would need a non applicable title. And so far I'm learning right along, have managed to make little subs that open and position both my pack and secure and drag and drop each of the items from my pack to my secure, and thanks to camotbik, dragging exactally the ones I want moved. And of course with neo's help I've manged to get my loom and wheel id's, though I'm not using the menu's just yet. I'm starting small!
Once I get it pieced together I'll toss it up here for you all to give a run through to see how many lines I wasted!

Tags: