Need ethreal stuff's IDs

04/09/2012 12:45 X6axx34#1
null
04/09/2012 14:31 haxti#2
Go search them.
04/09/2012 14:32 ci4lblFmPW#3
Use a MSSQL SELECT query, include Arcadia.dbo.ItemResource and Arcadia.dbo.StringResource, then ORDER BY whateveryouwant.

1. Sorted by CODE (shows the weapons etc. from rank 1-7 etc.):
Code:
SELECT item.id, item.name_id, item.rank, item.use_min_level, string.value 
FROM Arcadia.dbo.ItemResource item, Arcadia.dbo.StringResource string
WHERE item.name_id = string.code
ORDER BY id ASC
2. Sorted by VALUE (shows all dura items in a row):
Code:
SELECT item.id, item.name_id, item.rank, item.use_min_level, string.value 
FROM Arcadia.dbo.ItemResource item, Arcadia.dbo.StringResource string
WHERE item.name_id = string.code
ORDER BY value ASC
If you are looking for the MC weapons, you should use query 1, then scroll down until you find a row with the value "?????? ????".
This row should be behind the t1/t2/t3 weapons of that type (2H mace and so on).

With query 2, the dura items are sorted by their name (alphabetical).

Greez,

Ciel
04/09/2012 21:46 ProdStar#4
STOP POST YOU HAVE THREAD HELP TO POST....
NO CREATE NEW THREAD..
SEARCH IN YOUR DB AND YOU FIND ID ......

#CLOSEDREQUEST
04/10/2012 03:24 mlejnek2#5
lol for 1 i knwo all the id's but for 2 you still have to fix the dura on them and oh ya i know those too but im not fully done fixing them all as there is so far alot prob over 2+k so far