[1.7.3] Roster Tooltip Mod for Gems and Enchants (v1.3)

Item tooltips with Gem Sockets and Enchantment coloring

Moderator: ds

[1.7.3] Roster Mod for Enchantment coloring and Sockets

Postby ds » Wed Feb 21, 2007 3:35 am

Need to enter the correct EnchantID's and GemIDs. If you have Debugging on for the Mod it should report the ID's for you. Then you just need to add them to the WoW_IDs.php file and you'll be set. Also, sharing the ID's to this thread would be great. I'll add your finding to the next Revision of the WoW_IDs.php file.
Image
ds
Roster AddOn Dev
Roster AddOn Dev
 
Posts: 297
Joined: Sat Jul 08, 2006 9:58 am

[1.7.3] Roster Mod for Enchantment coloring and Sockets

Postby DiscoWay » Wed Feb 21, 2007 3:53 am

ds001

I wanted to ask you, I noticed that you had to tweak with the settings.php file to get things to work for your mod. Im wondering, when you have your motd set to image mode in settings, does it not diplay the gmotd.png file for you? I think the settings.php modification may of had something to do with it. If this doesn't seem to be an issue for you, let me know either way, so i can look elsewhere. Its probably me being careless again and not reverting back when i thought it did from a undo. Arg

Thank a bunch.

[EDIT]
Adding to post,

Ok, so i found these

Code: Select all
'2968' => array
(
'name' => 'Thick Amber',
'txt'  => '+4 Defense Rating',
'img'  => 'INV_Misc_Gem_Topaz_03',
),
'2744' => array
(
'name' => 'Dazzling Talasite',
'txt'  => '+4 Intellect and +2 Mana every 5 seconds',
'img'  => 'INV_Jewelcrafting_Talasite_03',
),
'2701' => array
(
'name' => 'Lustrous Azure Moonstone',
'txt'  => '+2 Mana every 5 seconds',
'img'  => 'INV_Misc_Gem_AzureDraenite_02',
),


However, there seems to be a new issue.

Goto this link again
http://www.nomad-legacy.net/WoWRosterDF ... rmoon.html

And look at the Primal Mooncloth Belt, waist item.

The +2 Mana every 5 seconds entry, is now clashing with a gem that has two stats. It thinks it is another socket so it adds the image next to it. I cannot remember if it does this in game or not?
Last edited by DiscoWay on Wed Feb 21, 2007 4:07 am, edited 1 time in total.
User avatar
DiscoWay
WR.net Apprentice
WR.net Apprentice
 
Posts: 25
Joined: Mon Feb 12, 2007 11:40 pm

[1.7.3] Roster Mod for Enchantment coloring and Sockets

Postby ds » Wed Feb 21, 2007 4:11 am

@DiscoWay

The only change to Settings.php by this Mod is the inclusion of WoW_IDs.php.

But, I think the problem is my mistake in WoW_IDs.php I had extra lines after the closing php tag ?> this I sure is causing the header information to break. Download Revision 3 of WoW_IDs.php or just delete the extra lines after the closing php Tag.

@DiscoWay again (edit)

Yeah.. I need to change the logic of the parser for a more line by line replacement rather then a blind global change. I was trying to make it fast but as we can see I need to make it more of a line by line change. I got a guild run soon but after i'm done with that I'll make the changes and post the new changes. Thanks for the report :)
Last edited by ds on Wed Feb 21, 2007 4:27 am, edited 2 times in total.
Image
ds
Roster AddOn Dev
Roster AddOn Dev
 
Posts: 297
Joined: Sat Jul 08, 2006 9:58 am

[1.7.3] Roster Mod for Enchantment coloring and Sockets

Postby Subxero » Wed Feb 21, 2007 5:07 am

Ds001 i get ENCHANT ID and GEMS ID .. but how i get the other data for gems ?

(i edited my last post with some enchants and gems that have my members guild :D)
User avatar
Subxero
WR.net Artisan
WR.net Artisan
 
Posts: 234
Joined: Thu Jul 06, 2006 4:08 pm
Realm: Zul'jin (PvE) - US

Re: [1.7.3] Roster Mod for Enchantment coloring and Sockets

Postby Diska » Wed Feb 21, 2007 10:21 am

ds001 wrote:@Zanix: Changed this already for v1.1 :)


I'm sorry ds001, but you did not. You only retrieve the image suffix from the roster config, but not the image folder location, you still assume everyone has them in img/ while some people might have them in other locations (heck, even another server would be possible I think). If you would get the image url from the roster config than I also think this mod would work without changes in DragonFly
User avatar
Diska
Roster AddOn Dev
Roster AddOn Dev
 
Posts: 179
Joined: Tue Jul 04, 2006 2:05 pm

[1.7.3] Roster Mod for Enchantment coloring and Sockets

Postby DiscoWay » Wed Feb 21, 2007 10:59 am

Yet another =)

Code: Select all
'2705' => array //corrected
(
'name' => 'Luminous Flame Spessarite',
'txt'  => '+7 Healing Spells and +3 Intellect',
'img'  => 'INV_Misc_Gem_FlameSpessarite_02',
),


[EDIT Addition]


(Gems)

Additions
Code: Select all
'2730' => array //corrected
(
'name' => 'Subtle Living Ruby',
'txt'  => '+8 Dodge Rating',
'img'  => 'INV_Jewelcrafting_LivingRuby_03',
),
'2737' => array //corrected
(
'name' => 'Thick Dawnstone',
'txt'  => '+8 Defense Rating',
'img'  => 'INV_Jewelcrafting_Dawnstone_03',
),
'2693' => array //corrected
(
'name' => 'Delicate Blood Garnet',
'txt'  => '+6 Agility',
'img'  => 'INV_Misc_Gem_BloodGem_02',
),
'2969' => array //corrected
(
'name' => 'Swift Windfire Diamond',
'txt'  => '+20 Attack Power and Minor Run Speed Increase',
'img'  => 'INV_Misc_Gem_Diamond_07',
),


(Enchants)

Additions
Code: Select all
'2666' => '+30 Intellect',
'2996' => '+13 Critical Strike Rating',

Corrections
Code: Select all
'2503' => '+5 Defense',
Last edited by DiscoWay on Wed Feb 21, 2007 11:58 am, edited 1 time in total.
User avatar
DiscoWay
WR.net Apprentice
WR.net Apprentice
 
Posts: 25
Joined: Mon Feb 12, 2007 11:40 pm

[1.7.3] Roster Mod for Enchantment coloring and Sockets

Postby Diska » Wed Feb 21, 2007 2:18 pm

Another enchant:
Code: Select all
'3002' => '+22 Spell Power and +14 Spell Hit Rating',
User avatar
Diska
Roster AddOn Dev
Roster AddOn Dev
 
Posts: 179
Joined: Tue Jul 04, 2006 2:05 pm

Re: [1.7.3] Roster Mod for Enchantment coloring and Sockets

Postby ds » Wed Feb 21, 2007 10:13 pm

Diska wrote:
ds001 wrote:@Zanix: Changed this already for v1.1 :)


I'm sorry ds001, but you did not. You only retrieve the image suffix from the roster config, but not the image folder location, you still assume everyone has them in img/ while some people might have them in other locations (heck, even another server would be possible I think). If you would get the image url from the roster config than I also think this mod would work without changes in DragonFly


Boy I feel like a noob. Guess I should actually READ the post and not assume the content. Sorry 'bout that. *blushes*

I will add that for the next version that should be done tonight I hope. Rewriting most of it as it was not the best method after seeing the problems you guys found. :)
Image
ds
Roster AddOn Dev
Roster AddOn Dev
 
Posts: 297
Joined: Sat Jul 08, 2006 9:58 am

Re: [1.7.3] Roster Mod for Enchantment coloring and Sockets

Postby ds » Wed Feb 21, 2007 11:07 pm

Here is Rev 4 of WoW_IDs.php.

Added many thanks to Subxero and DiscoWay!
Attachments
wow_ids_rev4.zip
Rev 4
(12.39 KiB) Downloaded 398 times
Image
ds
Roster AddOn Dev
Roster AddOn Dev
 
Posts: 297
Joined: Sat Jul 08, 2006 9:58 am

[1.7.3] Roster Mod for Enchantment coloring and Sockets

Postby robojerk » Thu Feb 22, 2007 12:37 am

Add to Gems
Code: Select all
'2765' => array
(
'name' => 'Stormy Star of Elune',
'txt'  => '+10 Spell Penetration',
'img'  => 'INV_Jewelcrafting_StarOfElune_03',
),
'2727' => array
(
'name' => 'Teardrop Living Ruby',
'txt'  => '+18 Healing',
'img'  => 'INV_Jewelcrafting_LivingRuby_03',
),
'2741' => array
(
'name' => 'Royal Nightseye',
'txt'  => '+9 Healing Spells and +2 Mana every 5 seconds',
'img'  => 'INV_Jewelcrafting_Nightseye_03',
),
'2733' => array
(
'name' => 'Lustrous Star of Elune',
'txt'  => '+3 Mana every 5 seconds',
'img'  => 'INV_Jewelcrafting_StarOfElune_03',
),



Add to Enchants
Code: Select all
'2937' => '+20 Spell Damage',
Last edited by robojerk on Thu Feb 22, 2007 1:21 am, edited 3 times in total.
Image
For the Horde!
Image
User avatar
robojerk
WR.net Master
WR.net Master
 
Posts: 484
Joined: Wed Jul 05, 2006 12:17 am
Location: -The OmniMatrix- Web 3.0

[1.7.3] Roster Mod for Enchantment coloring and Sockets

Postby robojerk » Thu Feb 22, 2007 12:39 am

Scaled Greaves of Patience is not showing gems/enchants correctly..

This user has the item
http://www.blacktemplars.org/index.php? ... er=Kilrogg
Last edited by robojerk on Thu Feb 22, 2007 12:52 am, edited 1 time in total.
Image
For the Horde!
Image
User avatar
robojerk
WR.net Master
WR.net Master
 
Posts: 484
Joined: Wed Jul 05, 2006 12:17 am
Location: -The OmniMatrix- Web 3.0

Re: [1.7.3] Roster Mod for Enchantment coloring and Sockets

Postby robojerk » Thu Feb 22, 2007 1:26 am

zanix wrote:Instead of hardcoding the image url, use Roster's variables to write it



To get the icons to show up in wowrosterdf I edited line 497 commonfunctions.lib.php from this
Code: Select all
$parsedToolTip = str_replace($gem_ids[$id]['txt'], '<img width="16px" height="16px" src="img/Interface/Icons/'.$gem_ids[$id]['img'].'.'.$roster_conf['img_suffix'].'"><span style="color:#00ff00;">  '.$gem_ids[$id]['txt'].'</span>', $parsedToolTip);


to this
Code: Select all
$parsedToolTip = str_replace($gem_ids[$id]['txt'], '<img width="16px" height="16px" src="'.$roster_conf['interface_url'].'Interface/Icons/'.$gem_ids[$id]['img'].'.'.$roster_conf['img_suffix'].'"><span style="color:#00ff00;">  '.$gem_ids[$id]['txt'].'</span>', $parsedToolTip);


I assume making this change in the stand alone version will work as well.
Last edited by robojerk on Thu Feb 22, 2007 1:27 am, edited 1 time in total.
Image
For the Horde!
Image
User avatar
robojerk
WR.net Master
WR.net Master
 
Posts: 484
Joined: Wed Jul 05, 2006 12:17 am
Location: -The OmniMatrix- Web 3.0

Re: [1.7.3] Roster Mod for Enchantment coloring and Sockets

Postby ds » Thu Feb 22, 2007 2:11 am

robojerk wrote:Scaled Greaves of Patience is not showing gems/enchants correctly..

This user has the item
http://www.blacktemplars.org/index.php? ... er=Kilrogg


I am not seeing the debugging information so that means the ItemID was not passed to the tooltip parser. I would guess for whatever reason CP did not capture the ItemID string. Recapture the data and reupload and I bet it will work.
Image
ds
Roster AddOn Dev
Roster AddOn Dev
 
Posts: 297
Joined: Sat Jul 08, 2006 9:58 am

Re: [1.7.3] Roster Mod for Enchantment coloring and Sockets

Postby Subxero » Thu Feb 22, 2007 2:31 am

Getting all gems from http://www.wowhead.com/?items=-2

new one (without corrected id !!)
Code: Select all
'30565' => array
(
'name' => 'Assassin\'s Fire Opal',
'txt'  => 'Critical Rating +6 and Dodge Rating +5',
'img'  => 'INV_Jewelcrafting_NobleTopaz_03',
),


Correct tooltip and twice faction (without corrected id !!)
Code: Select all
'27786' => array  //horde
(
'name' => 'Barbed Deep Peridot',
'txt'  => '+3 Stamina, +4 Critical Strike Rating',
'img'  => 'INV_Misc_Gem_DeepPeridot_01',
),
'27809' => array //alliance
(
'name' => 'Barbed Deep Peridot',
'txt'  => '+3 Stamina, +4 Critical Strike Rating',
'img'  => 'INV_Misc_Gem_DeepPeridot_01',
),


added (without corrected id !!)
Code: Select all
'30571' => array
(
'name' => 'Don Rodrigo\'s Heart',
'txt'  => '+8 Strength',
'img'  => 'INV_Misc_Gem_Ruby_01',
),


Correct tooltip (only one with correct id)
Code: Select all
'27820' => array //alliance
(
'name' => 'Notched Deep Peridot',
'txt'  => '+3 Stamina, +4 Spell Critical Strike Rating',
'img'  => 'INV_Misc_Gem_DeepPeridot_03',
),
'2898' => array //horde corrected Subxero
(
'name' => 'Notched Deep Peridot',
'txt'  => '+3 Stamina, +4 Spell Critical Strike Rating',
'img'  => 'INV_Misc_Gem_DeepPeridot_03',
),


A correct id :D
Code: Select all
'2943' => array
(
'name' => 'Mighty Blood Garnet',
'txt'  => '+14 Attack Power',
'img'  => 'INV_Misc_Gem_Bloodstone_02',
),


And yes like robojerk say 2756 is >> 2765

Enchants:
Addition
Code: Select all
'2997' => '+15 Critical Strike Rating and +20 Attack Power',

Correction
Code: Select all
'3001' => '+35 Healing and 7 Mana Per 5 sec.',
Last edited by Subxero on Thu Feb 22, 2007 4:08 am, edited 4 times in total.
User avatar
Subxero
WR.net Artisan
WR.net Artisan
 
Posts: 234
Joined: Thu Jul 06, 2006 4:08 pm
Realm: Zul'jin (PvE) - US

[1.7.3] Roster Mod for Enchantment coloring and Sockets

Postby Subxero » Thu Feb 22, 2007 2:56 am

Because some people get these errors ?

Failed to match enchant_txt from db
enchant txt: +9 Stamina
on tooltip show: Stamina +9

And others like HP +100 / +100 HP

+20 Fire Spell Damage / +20 Fire Damage
+20 Shadow Spell Damage / +20 Shadow Damage

etc..

inversed order 8(
Last edited by Subxero on Thu Feb 22, 2007 3:44 am, edited 1 time in total.
User avatar
Subxero
WR.net Artisan
WR.net Artisan
 
Posts: 234
Joined: Thu Jul 06, 2006 4:08 pm
Realm: Zul'jin (PvE) - US

PreviousNext

Return to Gem Sockets and Enchants (Roster Tooltip Mod)

Who is online

Users browsing this forum: No registered users and 0 guests

cron