Advertisement
Guest User

Untitled

a guest
May 26th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.28 KB | None | 0 0
  1. select
  2. r.ID
  3. ,r.type
  4. ,case r.KeyItem
  5. when 1984 then 'WOOD_PURIFICATION'
  6. when 1985 then 'WOOD_ENSORCELLMENT'
  7. when 1986 then 'LUMBERJACK'
  8. when 1987 then 'BOLTMAKER'
  9. when 1992 then 'METAL_PURIFICATION'
  10. when 1993 then 'METAL_ENSORCELLMENT'
  11. when 1994 then 'CHAINWORK'
  12. when 1995 then 'SHEETING'
  13. when 2000 then 'GOLD_PURIFICATION'
  14. when 2001 then 'GOLD_ENSORCELLMENT'
  15. when 2002 then 'CLOCKMAKING'
  16. when 2008 then 'CLOTH_PURIFICATION'
  17. when 2009 then 'CLOTH_ENSORCELLMENT'
  18. when 2010 then 'SPINNING'
  19. when 2011 then 'FLETCHING'
  20. when 2016 then 'LEATHER_PURIFICATION'
  21. when 2017 then 'LEATHER_ENSORCELLMENT'
  22. when 2018 then 'TANNING'
  23. when 2024 then 'BONE_PURIFICATION'
  24. when 2025 then 'BONE_ENSORCELLMENT'
  25. when 2026 then 'FILING'
  26. when 2032 then 'ANIMA_SYNTHESIS'
  27. when 2033 then 'ALCHEMIC_PURIFICATION'
  28. when 2034 then 'ALCHEMIC_ENSORCELLMENT'
  29. when 2035 then 'TRITURATION'
  30. when 2036 then 'CONCOCTION'
  31. when 2037 then 'IATROCHEMISTRY'
  32. when 2040 then 'RAW_FISH_HANDLING'
  33. when 2041 then 'NOODLE_KNEADING'
  34. when 2042 then 'PATISSIER'
  35. when 2043 then 'STEWPOT_MASTERY'
  36. when 2108 then 'VANADIEL_TRIBUNE_VOL21'
  37. when 0 then ''
  38. else r.keyItem
  39. end KI
  40. ,r.Alchemy AL
  41. ,r.Bone BN
  42. ,r.Cloth CL
  43. ,r.Cook CK
  44. ,r.Gold GO
  45. ,r.Leather LE
  46. ,r.Smith SM
  47. ,r.Wood WD
  48. ,concat(r.result,' x',r.ResultQty) nq
  49. ,concat(r.resultHQ1,' x',r.ResultHQ1Qty) hq1
  50. ,concat(r.resultHQ2,' x',r.ResultHQ2Qty) hq2
  51. ,concat(r.resultHQ3,' x',r.ResultHQ3Qty) hq3
  52. ,replace((select name from item_basic where itemid=r.Crystal),'_crystal','') crystal
  53. ,replace((select name from item_basic where itemid=r.HQCrystal),'_crystal','') hq_crystal
  54. ,concat(ifnull((select name from item_basic where itemid=r.Ingredient1),''),'<br>'
  55. ,ifnull((select name from item_basic where itemid=r.Ingredient2),''),'<br>'
  56. ,ifnull((select name from item_basic where itemid=r.Ingredient3),''),'<br>'
  57. ,ifnull((select name from item_basic where itemid=r.Ingredient4),''),'<br>'
  58. ,ifnull((select name from item_basic where itemid=r.Ingredient5),''),'<br>'
  59. ,ifnull((select name from item_basic where itemid=r.Ingredient6),''),'<br>'
  60. ,ifnull((select name from item_basic where itemid=r.Ingredient7),''),'<br>'
  61. ,ifnull((select name from item_basic where itemid=r.Ingredient8),'')) ingredients
  62. from synth_recipes r
  63. where r.smith > 0
  64. order by r.smith
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement