Author Topic: Miffy's Item Finder  (Read 105138 times)

0 Members and 1 Guest are viewing this topic.

Offline TrailMyxTopic starter

  • Officially retired from UO
  • Administrator
  • *
  • *
  • Posts: 13301
  • Activity:
    0%
  • Reputation Power: 154
  • TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!
  • Gender: Male
  • Viper!
  • Respect: +1349
  • Referrals: 33
    • View Profile
    • ScriptUO
Re: Miffy's Item Finder
« Reply #30 on: July 03, 2009, 09:57:04 AM »
+1
heh, might be easier to DIFF the two versions and make the little additions that I did to your copy.  ;)
Please read the ScriptUO site RULES
Come play RIFT with me!

Offline UOMaddog

  • Maddog
  • Elite
  • *
  • *
  • Posts: 1625
  • Activity:
    0%
  • Reputation Power: 22
  • UOMaddog might someday be someone...UOMaddog might someday be someone...UOMaddog might someday be someone...UOMaddog might someday be someone...
  • Gender: Male
  • Biggest B@D@$$ of the Universe
  • Respect: +165
  • Referrals: 8
    • View Profile
    • Insane UO
Re: Miffy's Item Finder
« Reply #31 on: July 04, 2009, 11:45:38 AM »
+1
I recently started on an item sorting script that would have a container to sort and then you can select mods and sort it into separate containers based on the mod. It's very basic at this time, but I already wrote some subs for it. I have tons of armor that I've burned in bags, but none of it is sorted. So I picked a mod like LRC and had it sort a bag of arms into 4 different containers, the first container was LRC items, the second was MR/LMC (excluding those that were already put into the LRC container). So basically an hierarchy of mod sorting. It's nowhere near complete yet, but it is in the works. Any input would be welcome, so I'll probably start a new thread with it! You can take a look at the menu below.


Drop this code in a new EUO window and you can kinda see what I was doing:

Code: [Select]
set %version 0.1
gosub MaddogItemSorterMenu
halt

sub PropertyList
menu Combo Add %1 Lower Reagent Cost
menu Combo Add %1 Lower Mana Cost
menu Combo Add %1 Mana Regen
menu Combo Add %1 Hit Point Regen
menu Combo Add %1 Stamina Regen
menu Combo Add %1 Mana Increase
menu Combo Add %1 Hit Point Increase
menu Combo Add %1 Stamina Increase
menu Combo Add %1 Reflect Physical Damage
menu Combo Select %1 %2
return
;--------- EasyUO Menu Designer Code Begin ---------
sub MaddogItemSorterMenu
menu Clear
menu Window Title Maddog Item Sorter v , %version
menu Window Color Black
menu Window Size 330 355
menu Font Transparent #true
menu Font Name MS Sans Serif
menu Font Style
menu Font Color Gray
menu Font BGColor Black
menu Font Align Left
menu Font Size 8
menu Text Heading 5 1 #1.Please select a specific bag to sort.$#2.Select any/all properties to sort.$#3.Target any/all bags that are needed.$**NOTE: Items are sorted by priority starting with Property 1!!!
  menu Font Color Lime
menu Combo Create Property1 85 85 180
gosub PropertyList Property1 1
menu Combo Create Property2 85 115 180
gosub PropertyList Property2 2
menu Combo Create Property3 85 145 180
gosub PropertyList Property3 3
menu Combo Create Property4 85 175 180
gosub PropertyList Property4 4
menu Combo Create Property5 85 205 180
gosub PropertyList Property5 5
menu Edit Custom1 85 235 180 Type Custom Property Here...
menu Edit Custom2 85 265 180 Type Custom Property Here...
menu Edit Custom3 85 295 180 Type Custom Property Here...
menu Font Color Blue
menu Button SortBag  85 55 180 25 Sort Specific Bag
menu Check EUOCheckBox1 5 85 75 25 #false Property 1:
menu Check EUOCheckBox2 5 115 75 25 #false Property 2:
menu Check EUOCheckBox3 5 145 75 25 #false Property 3:
menu Check EUOCheckBox4 5 175 75 25 #false Property 4:
menu Check EUOCheckBox5 5 205 75 25 #false Property 5:
menu Check EUOCheckBox6 5 235 75 25 #false Property 6:
menu Check EUOCheckBox7 5 265 75 25 #false Property 7:
menu Check EUOCheckBox8 5 295 75 25 #false Property 8:
menu Font Color Yellow
menu Button Container1 275 85 50 25 Target
menu Button Container2 275 115 50 25 Target
menu Button Container3 275 145 50 25 Target
menu Button Container4 275 175 50 25 Target
menu Button Container5 275 205 50 25 Target
menu Button Container6 275 235 50 25 Target
menu Button Container7 275 265 50 25 Target
menu Button Container8 275 295 50 25 Target
menu Font Color Red
menu Button StartButton 10 325 95 25 START
menu Button ResetButton 115 325 95 25 RESET
menu Button ExitButton 220 325 95 25 EXIT
menu Show 100 100
return
;--------- EasyUO Menu Designer Code End ---------



There are 10 kinds of people in this world: those that understand binary and those that don't!

Windows:  A 64-bit tweak of a 32-bit extension to a 16-bit user interface for an 8-bit operating system based on a 4-bit architecture from a 2-bit company that can't stand 1 bit of competition!

Offline TrailMyxTopic starter

  • Officially retired from UO
  • Administrator
  • *
  • *
  • Posts: 13301
  • Activity:
    0%
  • Reputation Power: 154
  • TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!
  • Gender: Male
  • Viper!
  • Respect: +1349
  • Referrals: 33
    • View Profile
    • ScriptUO
Re: Miffy's Item Finder
« Reply #32 on: July 04, 2009, 11:57:48 AM »
+1
That's too cool!  I love item evaluation scirpts!!  You should make that thread so we can discuss it.  I'm sure people have some unique input about this.

BTW:  Miffy's Item Finder kinda does this already.  There's 3 levels of attributes you can look for and also have a source/target container.  Also this does recursive chest traversal, so it will dig down into chests within bags within boxes to hunt through and entire containers content.  Also it will hunt through all containers within REACHABLE range.  This means it won't try to hunt through containers on your 2nd or 3rd floor, or containers that don't belong to you.
« Last Edit: July 04, 2009, 12:27:03 PM by TrailMyx »
Please read the ScriptUO site RULES
Come play RIFT with me!

Offline Superslayer

  • Elite
  • *
  • *
  • Posts: 1006
  • Activity:
    0%
  • Reputation Power: 14
  • Superslayer barely matters.Superslayer barely matters.
  • Gender: Male
  • Well what do you drink? Not tea.
  • Respect: +43
  • Referrals: 0
    • View Profile
Re: Miffy's Item Finder
« Reply #33 on: July 04, 2009, 12:28:39 PM »
+1
These item eval's and sorter script are going to be great for raveling/unraveling. imagine loads of boxes with all the mods easily sorted and measured, just waiting to be plucked for unraveling.

Offline TrailMyxTopic starter

  • Officially retired from UO
  • Administrator
  • *
  • *
  • Posts: 13301
  • Activity:
    0%
  • Reputation Power: 154
  • TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!
  • Gender: Male
  • Viper!
  • Respect: +1349
  • Referrals: 33
    • View Profile
    • ScriptUO
Re: Miffy's Item Finder
« Reply #34 on: July 04, 2009, 12:34:13 PM »
+1
Oh, I loaded your UI and I see your thoughts now.  That'd be useful!
Please read the ScriptUO site RULES
Come play RIFT with me!

Offline UOMaddog

  • Maddog
  • Elite
  • *
  • *
  • Posts: 1625
  • Activity:
    0%
  • Reputation Power: 22
  • UOMaddog might someday be someone...UOMaddog might someday be someone...UOMaddog might someday be someone...UOMaddog might someday be someone...
  • Gender: Male
  • Biggest B@D@$$ of the Universe
  • Respect: +165
  • Referrals: 8
    • View Profile
    • Insane UO
Re: Miffy's Item Finder
« Reply #35 on: July 05, 2009, 08:53:07 PM »
+1
If I get some time, I'll make a few modifications I've already thought of and start a thread...just too busy with work lately!
There are 10 kinds of people in this world: those that understand binary and those that don't!

Windows:  A 64-bit tweak of a 32-bit extension to a 16-bit user interface for an 8-bit operating system based on a 4-bit architecture from a 2-bit company that can't stand 1 bit of competition!

Offline tandj99

  • Elite
  • *
  • *
  • Posts: 261
  • Activity:
    0.2%
  • Reputation Power: 1
  • tandj99 has no influence.
  • Gender: Male
  • Respect: +40
  • Referrals: 1
    • View Profile
Re: Miffy's Item Finder
« Reply #36 on: August 16, 2009, 04:20:16 PM »
+1
i love that menu that will be awesome when you get the rest of it done.

Offline Cerveza

  • Hacksimus Maximus
  • Scripthack
  • *
  • Posts: 5857
  • Activity:
    0%
  • Reputation Power: 80
  • Cerveza is awe-inspiring!Cerveza is awe-inspiring!Cerveza is awe-inspiring!Cerveza is awe-inspiring!Cerveza is awe-inspiring!Cerveza is awe-inspiring!Cerveza is awe-inspiring!Cerveza is awe-inspiring!Cerveza is awe-inspiring!Cerveza is awe-inspiring!Cerveza is awe-inspiring!Cerveza is awe-inspiring!
  • Gender: Male
  • So... Hows that Hopey-Changey thing working out?
  • Respect: +403
  • Referrals: 11
    • View Profile
Re: Miffy's Item Finder
« Reply #37 on: September 10, 2009, 06:48:55 AM »
+1
I'd still like Miffy to include TOTAL RESISTS in the display, or make it available as a search criteria.

Just a little peeve is, when I click to Take and Item, I'd like to see the display automatically move to the next item on the list.

I'd like to see a button for "Trash" to throw away items into a selectable container. So I can "Keep" items into my secure and "Trash" them into the trash barrel.

I'd like a lot.... I'm a needy person.... I want it all.... I'm a tard today.
XXXXXXXXXX________________________________________] 20%
I've forgotten more about this game then most people will ever know.
Thank you for controlling your children. Their manners reflect your love for them.
Give a man a fish and you feed him for a day. Don't teach a man to fish, and you feed yourself. He's a grown man. Fishing's not that hard.

Offline cgeorgemo

  • Hero Member
  • *
  • Posts: 586
  • Activity:
    0%
  • Reputation Power: 5
  • cgeorgemo has no influence.
  • Gender: Male
  • I'm Brian...cgeorgemo is Curious George Missouri
  • Respect: +19
  • Referrals: 1
    • View Profile
Re: Miffy's Item Finder
« Reply #38 on: September 10, 2009, 07:07:09 AM »
+1
This is pretty much what I was wanting to see in CLAw. I had no idea that this script was around.


*****goes of nosing around into the library for a closer look.
Sarcasm is your body's natural defense against stupidity.

Offline TrailMyxTopic starter

  • Officially retired from UO
  • Administrator
  • *
  • *
  • Posts: 13301
  • Activity:
    0%
  • Reputation Power: 154
  • TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!
  • Gender: Male
  • Viper!
  • Respect: +1349
  • Referrals: 33
    • View Profile
    • ScriptUO
Re: Miffy's Item Finder
« Reply #39 on: September 10, 2009, 10:39:23 AM »
+1
One of my back-burnered projects is to move the CLAw evaluation engine over to this.  Some day.
Please read the ScriptUO site RULES
Come play RIFT with me!

Offline Bookwyrm

  • Elite
  • *
  • *
  • Posts: 357
  • Activity:
    0%
  • Reputation Power: 5
  • Bookwyrm has no influence.
  • Gender: Male
  • Better Civilization Through Medication
  • Respect: +34
  • Referrals: 0
    • View Profile
Re: Miffy's Item Finder
« Reply #40 on: September 12, 2009, 04:26:54 AM »
+1
Miffy is me.  :)  Or at least my feminine scripting side.  heh

Actually it's through this script that I met Cerveza.

Ya know... Taking these two posts together without all the proper context.... :o
"The most preposterous notion that H. Sapiens has ever dreamed up is that the Lord God of Creation, Shaper and Ruler of all the Universes, wants the saccharine adoration of His creatures, can be swayed by their prayers, and becomes petulant if He does not receive this flattery. Yet this absurd fantasy, without a shred of evidence to bolster it, pays all the expenses of the oldest, largest, and least productive industry in all of history."   Lazarus Long

"The second most preposterous notion is that copulation is inherently sinful."   L.L. 

Offline cgeorgemo

  • Hero Member
  • *
  • Posts: 586
  • Activity:
    0%
  • Reputation Power: 5
  • cgeorgemo has no influence.
  • Gender: Male
  • I'm Brian...cgeorgemo is Curious George Missouri
  • Respect: +19
  • Referrals: 1
    • View Profile
Re: Miffy's Item Finder
« Reply #41 on: September 12, 2009, 06:20:12 AM »
+1
Context?......we don't need no stinking CONTEXT....
Sarcasm is your body's natural defense against stupidity.

Offline TrailMyxTopic starter

  • Officially retired from UO
  • Administrator
  • *
  • *
  • Posts: 13301
  • Activity:
    0%
  • Reputation Power: 154
  • TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!
  • Gender: Male
  • Viper!
  • Respect: +1349
  • Referrals: 33
    • View Profile
    • ScriptUO
Re: Miffy's Item Finder
« Reply #42 on: September 12, 2009, 02:59:25 PM »
+1
Ya, there's a lot of context lost in this one.  Lol.  Plus if you throw in the hamster, that can really lead to some bad mental images.
« Last Edit: September 13, 2009, 04:41:34 AM by TrailMyx »
Please read the ScriptUO site RULES
Come play RIFT with me!

Offline Bookwyrm

  • Elite
  • *
  • *
  • Posts: 357
  • Activity:
    0%
  • Reputation Power: 5
  • Bookwyrm has no influence.
  • Gender: Male
  • Better Civilization Through Medication
  • Respect: +34
  • Referrals: 0
    • View Profile
Re: Miffy's Item Finder
« Reply #43 on: September 12, 2009, 10:46:43 PM »
+1
See?! This is where I miss all the wonderful little smileys we used to have over at UOCoders... :'(
"The most preposterous notion that H. Sapiens has ever dreamed up is that the Lord God of Creation, Shaper and Ruler of all the Universes, wants the saccharine adoration of His creatures, can be swayed by their prayers, and becomes petulant if He does not receive this flattery. Yet this absurd fantasy, without a shred of evidence to bolster it, pays all the expenses of the oldest, largest, and least productive industry in all of history."   Lazarus Long

"The second most preposterous notion is that copulation is inherently sinful."   L.L. 

Offline Wilk

  • Sr. Member
  • *
  • Posts: 308
  • Activity:
    0%
  • Reputation Power: 3
  • Wilk has no influence.
  • Gender: Male
  • Respect: +24
  • Referrals: 0
    • View Profile
Re: Miffy's Item Finder
« Reply #44 on: September 14, 2009, 08:04:56 AM »
+1
:( I miss my Miffy finder badly! I think I use her at least 1/2 a dozen times a times for the last year.