View Single Post
  #5  
Old 07-19-2011, 08:27 AM
Leere
Sarnak
 
Join Date: Sep 2008
Location: Home
Posts: 31
Default

Quote:
Originally Posted by strider51 View Post
Right, but what I don't understand is that the titanium client surely had the first epics. I don't believe it's a new graphic.
New icons were added for most epics in late 2008, they now actually look like the epics, instead of being fairly generic swords, staffs and daggers. 2008-12-23, according to lucy, was the exact date for the change. Titanium does not have those new graphics. (They are in dragitem66 or thereabouts; Titanium only goes up to 34.)

PEQ uses the new icon numbers, and has been doing so for a while. In all likelihood the choice was driven by the simple expedient of not wanting to have to apply yet another patch to the items table after sourcing a fresh snapshot from 13thfloor. They also look far nicer.

One of the guides mentioned by lerxst2112 is sticked in the Support::General Support section.


For those who'd rather get the old icons back for the epics, here a list of those that were changed. Old denotes the old icon number, new the icon number of the new graphic. The links are to the history page of the items from lucy, it shows both the old and the new icon graphic.

Jagged Blade of War - old:1332 - new:2871
http://lucy.allakhazam.com/itemhistory.html?id=66175

Staff of the Four - old:811 - new:2870
http://lucy.allakhazam.com/itemhistory.html?id=14341

Spear of Fate - old:1187 - new:2872
http://lucy.allakhazam.com/itemhistory.html?id=10651

Innoruuk's Curse - old:1195 - new:2873
http://lucy.allakhazam.com/itemhistory.html?id=14383

Singing Short Sword - old:882 - new:2863
http://lucy.allakhazam.com/itemhistory.html?id=20542

Claw of the Savage Spirit - old:518 - new:2839
http://lucy.allakhazam.com/itemhistory.html?id=8495
http://lucy.allakhazam.com/itemhistory.html?id=8496

Nature Walkers Scimitar - old:1169 - new:2867
http://lucy.allakhazam.com/itemhistory.html?id=20490

Water Sprinkler of Nem Ankh - old:741 - new:2866
http://lucy.allakhazam.com/itemhistory.html?id=5532

Staff of the Serpent - old:686 - new:2865
http://lucy.allakhazam.com/itemhistory.html?id=10650

Orb of Mastery - old:810 - new:2868
http://lucy.allakhazam.com/itemhistory.html?id=28034

Scythe of the Shadowed Soul - old:781 - new:2869
http://lucy.allakhazam.com/itemhistory.html?id=20544

Fiery Defender - old:519 - new:2864
http://lucy.allakhazam.com/itemhistory.html?id=10099

Swiftwind - old:603 - new:2875
http://lucy.allakhazam.com/itemhistory.html?id=20487
http://lucy.allakhazam.com/itemhistory.html?id=20488 (Earthcaller)

Ragebringer - old:1183 - new:2874
http://lucy.allakhazam.com/itemhistory.html?id=11057

SQL for the above (not tested)
Code:
update items set icon = 1183 where id = 11057;
update items set icon = 603 where id in (20487, 20488);
update items set icon = 519 where id = 10099;
update items set icon = 781 where id = 20544;
update items set icon = 810 where id = 28034;
update items set icon = 686 where id = 10650;
update items set icon = 1187 where id = 10651;
update items set icon = 518 where id in (8495, 8496);
update items set icon = 741 where id = 5532;
update items set icon = 1169 where id = 20490;
update items set icon = 882 where id = 20542;
update items set icon = 1195 where id = 14383;
update items set icon = 811 where id = 14341;
update items set icon = 1332 where id = 66175;

Last edited by Leere; 07-19-2011 at 08:30 AM.. Reason: typo
Reply With Quote