Author Topic: serching for gumps  (Read 1904 times)

0 Members and 1 Guest are viewing this topic.

Offline KilroyIsDeadTopic starter

  • Full Member
  • ***
  • Posts: 155
  • Activity:
    0%
  • Reputation Power: 2
  • KilroyIsDead has no influence.
  • Respect: +13
  • Referrals: 0
    • View Profile
serching for gumps
« on: May 01, 2009, 11:31:53 AM »
0
Can you search for a container moreover a gump

Can I search or find stuff like bufficons_gump or spellicongump?

Thanks
Give a man a fire, he'll be warm the rest of the night;
Set a man afire, he'll be warm the rest of his life.

Offline _C2_

  • AFK FtW
  • Global Moderator
  • *
  • *
  • Posts: 4077
  • Activity:
    0%
  • Reputation Power: 48
  • _C2_ has great potential!_C2_ has great potential!_C2_ has great potential!_C2_ has great potential!_C2_ has great potential!_C2_ has great potential!_C2_ has great potential!_C2_ has great potential!_C2_ has great potential!
  • RIP Pen Trick
  • Respect: +254
  • Referrals: 4
    • View Profile
Re: serching for gumps
« Reply #1 on: May 01, 2009, 11:34:57 AM »
0
endless nights has a buff bar scanner that is posted at easy uo under josephaj.  it is a sample of how to read the different icons on the buff bar.

Offline TrailMyx

  • Officially retired from UO
  • Administrator
  • *
  • *
  • Posts: 13303
  • Activity:
    0.4%
  • 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: serching for gumps
« Reply #2 on: May 01, 2009, 11:39:55 AM »
0
You're looking to see if there is a particular gump on the screen?  Unfortunately you can't hunt through gumps on the screen to find ones you might be looking for.  The gumps have to filter through the #CONTID/#CONTNAME variables, and are brought into these variables with by selecting it or it becoming the "top" gump.

If you monitor the #CONTID/#CONTNAME over time, you can see different types come and go.  Like you've described, spellicongumps fly by as you play.  But there's no real way to determine if your bufficon_gumps have moved on your screen.
Please read the ScriptUO site RULES
Come play RIFT with me!

Offline TrailMyx

  • Officially retired from UO
  • Administrator
  • *
  • *
  • Posts: 13303
  • Activity:
    0.4%
  • 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: serching for gumps
« Reply #3 on: May 01, 2009, 11:43:39 AM »
0
Here's a quick snippet I wrote to sample/display these kinds of things (C2 was interested in this one)

Code: [Select]
set #LPC 100
gosub showEUOMenu1
set %containers
repeat
  set %sample_container #CONTNAME
  set %sample_id #CONTID
  set %sample_contsize #CONTSIZE
  if %sample_container , %sample_contsize notin %containers
  {
    set %containers %containers , _ , %sample_container , %sample_contsize
    menu list add EUOListBox1 %sample_container , _ , %sample_contsize , _ , %sample_id
  }
until #FALSE
;--------- EasyUO Menu Designer Code Begin ---------
sub showEUOMenu1
menu Clear
menu Window Title TMs CONTAINER/SIZE sampler
menu Window Color BtnFace
menu Window Size 322 271
menu Font Transparent #true
menu Font Align Right
menu Font Name MS Sans Serif
menu Font Size 8
menu Font Style
menu Font Color WindowText
menu Font BGColor Window
menu List Create EUOListBox1 12 12 281 249
menu Show 421 270
return
Please read the ScriptUO site RULES
Come play RIFT with me!

Tags: