EQ2Interface.com
Search Downloads


Go Back   EQ2Interface > Interface Pieces > Group window

Category: Group windowMaddBomber83 Group/Player
Interface Information
Download
How do I install this? (FAQ)
Name: MaddBomber83 Group/Player   Popular!
Author:
Date: 12-16-2005 12:52 PM
Size: 12.60 Kb
Version: 1.0
Rate Addon: 5 out of 5 with 3 votes  
Pictures
Click to enlarge 

Views: 7599
Size: 13.73 Kb
Dimensions: 122 x 295
 
Click to enlarge 

Views: 6970
Size: 14.73 Kb
Dimensions: 696 x 53
 
Description
This is a modified version of ger's compact groupmembers/player (with leave group, kick from group, invite targetted, and assist buttons windows.

Changed Features:
  • Can Resize Vertical or Horizontal
  • Resized Player Window to Match Group Window
  • Added Current/Max Health and Power to player window
  • Removed Disband/Kick from buttons (no accidental kicks)
  • Removed Frame from Window (but not individual group members)

Retained Original Features:
  • Removes a fair amount of dead space
  • Has DoT/Debuff icons on player window and group window
  • Follow and assist buttons to individual group members
  • Invite targetted in the LFG/Find Display
  • Health/Power percent texts in player/group window

Big thanks to ger for making a great group window.
File Statistics
User Rating:
5 out of 5 with 3 votes
Downloads: 8199
Views: 33798
Favorites: 5
Uploaded By:
 
Last Modified: 12-16-2005 07:12 PM by maddbomber83    

View Pictures. Download Now! Post A Comment


Post A Reply
Author Comments Comment Options
Unread 02-07-2006, 11:13 PM  
khalad
A Coastal Crab
 
khalad's Avatar

Server: Najena
Forum posts: 0
File comments: 7
Uploads: 0
That did the trick, thanks alot Krull.
khalad is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 02-07-2006, 03:10 PM  
Krull
A Sea Turtle
Interface Author - Click to view interfaces

Server: Oasis
Forum posts: 30
File comments: 60
Uploads: 15
Quote:
Originally posted by khalad
Thanks to you both for the help and the assistance.

I have tried the fix below several times, but am not having any luck. The button remains blacked out. I have tried this both with the image file in and with it out.

Any other ideas? Thanks again
Opps I forgot to mention, you need to go to your
c:\Program files\everquest ii\ui\default\images\icon\ folder and copy this file: icon_ms1.dds and place it in your customUI\images folder

That way if they ever change files again you will have a copy of it in your custom folder and it wont break the graphic again.

Last edited by Krull : 02-07-2006 at 03:11 PM.
Krull is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 02-07-2006, 12:17 AM  
khalad
A Coastal Crab
 
khalad's Avatar

Server: Najena
Forum posts: 0
File comments: 7
Uploads: 0
Thanks to you both for the help and the assistance.

I have tried the fix below several times, but am not having any luck. The button remains blacked out. I have tried this both with the image file in and with it out.

Any other ideas? Thanks again

Last edited by khalad : 02-07-2006 at 04:27 AM.
khalad is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 02-06-2006, 10:08 PM  
maddbomber83
A Fallen Diplomat
 
maddbomber83's Avatar
Interface Author - Click to view interfaces

Server: Oggok
Forum posts: 52
File comments: 24
Uploads: 13
Thank you for pointing that out. Will be fixed in my next release wich uses a different graphic anyway (still a default image, i'm not an artist!).
Quote:
Originally posted by Krull
Quite sure it used a default image file that SoE changed a while back which also broke Gers assist button on the original mod. I know neither Ger's nor this one included the image file used in the code at least.

Easy fix for anyone who doesnt mind a little editing in notepad:

Find the following lines (should all 3 be together)

<ImageStyle Filter="true" Name="activated">
<ImageFrame Name="image" Source="images/window_pieces01.dds" SourceRect="70,220,91,240"/>
</ImageStyle>
<ImageStyle Filter="true" Name="mouseover">
<ImageFrame Name="image" Source="images/window_pieces01.dds" SourceRect="70,220,91,240"/>
</ImageStyle>
<ImageStyle Filter="true" Name="normal">
<ImageFrame Name="image" Source="images/window_pieces01.dds" SourceRect="70,220,91,240"/>

Copy the code below then highlight the old code (above lines) in notepad and paste over it with this:

<ImageStyle Filter="true" Name="activated">
<ImageFrame Name="image" Source="images/icon_ms1.dds" SourceRect="168,42,209,83"/>
</ImageStyle>
<ImageStyle Filter="true" Name="mouseover">
<ImageFrame Name="image" Source="images/icon_ms1.dds" SourceRect="168,42,209,83"/>
</ImageStyle>
<ImageStyle Filter="true" Name="normal">
<ImageFrame Name="image" Source="images/icon_ms1.dds" SourceRect="168,42,209,83"/>

Make sure you then click save and not save as (if you do click save as make sure you change where it says save as txt file to All Files) and then save it. After its saved make sure it is still a .xml file and not .txt and you should then have a new icon (for example above I used the autoattack icon).
maddbomber83 is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 02-06-2006, 07:20 PM  
Krull
A Sea Turtle
Interface Author - Click to view interfaces

Server: Oasis
Forum posts: 30
File comments: 60
Uploads: 15
Quite sure it used a default image file that SoE changed a while back which also broke Gers assist button on the original mod. I know neither Ger's nor this one included the image file used in the code at least.

Easy fix for anyone who doesnt mind a little editing in notepad:

Find the following lines (should all 3 be together)

<ImageStyle Filter="true" Name="activated">
<ImageFrame Name="image" Source="images/window_pieces01.dds" SourceRect="70,220,91,240"/>
</ImageStyle>
<ImageStyle Filter="true" Name="mouseover">
<ImageFrame Name="image" Source="images/window_pieces01.dds" SourceRect="70,220,91,240"/>
</ImageStyle>
<ImageStyle Filter="true" Name="normal">
<ImageFrame Name="image" Source="images/window_pieces01.dds" SourceRect="70,220,91,240"/>

Copy the code below then highlight the old code (above lines) in notepad and paste over it with this:

<ImageStyle Filter="true" Name="activated">
<ImageFrame Name="image" Source="images/icon_ms1.dds" SourceRect="168,42,209,83"/>
</ImageStyle>
<ImageStyle Filter="true" Name="mouseover">
<ImageFrame Name="image" Source="images/icon_ms1.dds" SourceRect="168,42,209,83"/>
</ImageStyle>
<ImageStyle Filter="true" Name="normal">
<ImageFrame Name="image" Source="images/icon_ms1.dds" SourceRect="168,42,209,83"/>

Make sure you then click save and not save as (if you do click save as make sure you change where it says save as txt file to All Files) and then save it. After its saved make sure it is still a .xml file and not .txt and you should then have a new icon (for example above I used the autoattack icon).
Krull is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 02-06-2006, 05:52 PM  
maddbomber83
A Fallen Diplomat
 
maddbomber83's Avatar
Interface Author - Click to view interfaces

Server: Oggok
Forum posts: 52
File comments: 24
Uploads: 13
Quote:
Originally posted by khalad
Nice window, but my assist button is blacked out, any ideas? Thanks.
Got the image file in the image folder?
maddbomber83 is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 02-04-2006, 12:25 AM  
khalad
A Coastal Crab
 
khalad's Avatar

Server: Najena
Forum posts: 0
File comments: 7
Uploads: 0
Nice window, but my assist button is blacked out, any ideas? Thanks.
khalad is offline Report comment to moderator   Reply With Quote Reply With Quote
Unread 12-16-2005, 07:04 PM  
maddbomber83
A Fallen Diplomat
 
maddbomber83's Avatar
Interface Author - Click to view interfaces

Server: Oggok
Forum posts: 52
File comments: 24
Uploads: 13
Reserved

Reserved for later use.
maddbomber83 is offline Report comment to moderator   Reply With Quote Reply With Quote
Post A Reply

 
Category Jump:
Search this Category:
 

All times are GMT -5. The time now is 04:49 PM.


Our Network
EQInterface | EQ2Interface | WoWInterface | LoTROInterface | ESOUI | MMOUI