SELECT ITEM.id, STRING.value
FROM ARCADIA.dbo.ItemResource ITEM, ARCADIA.dbo.StringResource STRING
WHERE STRING.code=ITEM.name_id and STRING.value like '%Searchterm%'
USE Arcadia
SELECT I.id, S.value
FROM dbo.ItemResource I
WITH (NOLOCK) INNER JOIN dbo.StringResource S
WITH (NOLOCK) ON I.name_text_id = S.Code AND S.name LIKE '%name_item_%'
ORDER BY name_text_id ASC
USE Arcadia
SELECT I.id, S.value
FROM dbo.ItemResource I
WITH (NOLOCK) INNER JOIN dbo.StringResource S
WITH (NOLOCK) ON I.name_text_id = S.Code AND S.name LIKE '%name_item_%'
ORDER BY name_text_id ASC
ehhh, wtf?
Whats the sence on the nolock thingly? o.0
also ItemResource has the column name_id, not name_text_id....
Well then why don't you just correct it? Oh that's right because you have this whole superiority thing going on. Forgot, here we go with you and your minion's huh?
CORRECTED BY XIJEZU (So he can have his fame, you know how girls act when they want to be the prettiest)
USE Arcadia
SELECT I.id, S.value
FROM dbo.ItemResource I
INNER JOIN dbo.StringResource S
ON I.name_id = S.Code AND S.name LIKE '%name_item_%'
ORDER BY name_id ASC
NOLOCK is pretty handy but not needed for a "small" query like this i'd say. It just reduces the overhead for a query but on the other hand you can't be 100% sure about the data you get, cause it could be under update the same moment.
Well then why don't you just correct it? Oh that's right because you have this whole superiority thing going on. Forgot, here we go with you and your minion's huh?
CORRECTED BY XIJEZU (So he can have his fame, you know how girls act when they want to be the prettiest)
USE Arcadia
SELECT I.id, S.value
FROM dbo.ItemResource I
INNER JOIN dbo.StringResource S
ON I.name_id = S.Code AND S.name LIKE '%name_item_%'
ORDER BY name_id ASC
ID's help 03/02/2012 - Flyff - 1 Replies Hi everyone!
I am asking if there is an id for redchips and Demon set (M) :confused:
Thanks ;)
item id's and mob id's 08/25/2011 - SRO Private Server - 0 Replies can someone give me the full list of all the id's of mobs and items ingame?
cheers for that :D
[Suche] Alle Upp-Items Id's 08/06/2011 - Metin2 Private Server - 3 Replies Hallo liebe Com!
ICh suche schon seit langem alle Upp-Items id, für meinen Server!
Jedoch finde ich sie nicht, ich bin zwar schon auf dem Thread gewesen, wo eine alle Server ids hingeschriben hatt, und dort hab ich auch die ids gefunden, aber unter dieser kategorie sind auch noch andere Items erhalten! Und ich weis jetzt nicht egnau, welche items man braucht zum uppen! Deswegen frag ich euch, ob ihr mir eine liste aufschreiben könnt! Am besten währe es auch gerade eine Query für die...
new mob id's 11/23/2009 - Lin2 Exploits, Hacks, Bots, Tools & Macros - 0 Replies This might be a simple question but does anybody know what the mob ID is for the new mob Kasha's Eye or is there an easy way through walker to find the id for mobs? towalker doesn't have an updated id list for the new mobs.
Just trying to make something to kill the Kasha's Eyes every 4 min or so in Den of Evil so the toons dont get that mean debuff. It sounds simple, but I don't really know anything about scripting and I don't have the mob id's
Thanks a bunch