Advertisement
julienanid

[Trinity]Player start with riding skill

Jul 23rd, 2013
1,064
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SQL 2.65 KB | None | 0 0
  1. -- Warrior
  2. INSERT INTO `playercreateinfo_spell` (`race`, `class`, `Spell`, `Note`) VALUES
  3. (0, 1, 33389, 'Apprentice Riding'),
  4. (0, 1, 33392, 'Journeyman Riding'),
  5. (0, 1, 34092, 'Expert Riding'),
  6. (0, 1, 34093, 'Artisan Riding'),
  7. (0, 1, 54198, 'Cold Weather Flying');
  8. -- Paladin
  9. INSERT INTO `playercreateinfo_spell` (`race`, `class`, `Spell`, `Note`) VALUES
  10. (0, 2, 33389, 'Apprentice Riding'),
  11. (0, 2, 33392, 'Journeyman Riding'),
  12. (0, 2, 34092, 'Expert Riding'),
  13. (0, 2, 34093, 'Artisan Riding'),
  14. (0, 2, 54198, 'Cold Weather Flying');
  15. -- Hunter
  16. INSERT INTO `playercreateinfo_spell` (`race`, `class`, `Spell`, `Note`) VALUES
  17. (0, 3, 33389, 'Apprentice Riding'),
  18. (0, 3, 33392, 'Journeyman Riding'),
  19. (0, 3, 34092, 'Expert Riding'),
  20. (0, 3, 34093, 'Artisan Riding'),
  21. (0, 3, 54198, 'Cold Weather Flying');
  22. -- Rogue
  23. INSERT INTO `playercreateinfo_spell` (`race`, `class`, `Spell`, `Note`) VALUES
  24. (0, 4, 33389, 'Apprentice Riding'),
  25. (0, 4, 33392, 'Journeyman Riding'),
  26. (0, 4, 34092, 'Expert Riding'),
  27. (0, 4, 34093, 'Artisan Riding'),
  28. (0, 4, 54198, 'Cold Weather Flying');
  29. -- Priest
  30. INSERT INTO `playercreateinfo_spell` (`race`, `class`, `Spell`, `Note`) VALUES
  31. (0, 5, 33389, 'Apprentice Riding'),
  32. (0, 5, 33392, 'Journeyman Riding'),
  33. (0, 5, 34092, 'Expert Riding'),
  34. (0, 5, 34093, 'Artisan Riding'),
  35. (0, 5, 54198, 'Cold Weather Flying');
  36. -- Death Knight
  37. INSERT INTO `playercreateinfo_spell` (`race`, `class`, `Spell`, `Note`) VALUES
  38. (0, 6, 33389, 'Apprentice Riding'),
  39. (0, 6, 33392, 'Journeyman Riding'),
  40. (0, 6, 34092, 'Expert Riding'),
  41. (0, 6, 34093, 'Artisan Riding'),
  42. (0, 6, 54198, 'Cold Weather Flying');
  43. -- Shaman
  44. INSERT INTO `playercreateinfo_spell` (`race`, `class`, `Spell`, `Note`) VALUES
  45. (0, 7, 33389, 'Apprentice Riding'),
  46. (0, 7, 33392, 'Journeyman Riding'),
  47. (0, 7, 34092, 'Expert Riding'),
  48. (0, 7, 34093, 'Artisan Riding'),
  49. (0, 7, 54198, 'Cold Weather Flying');
  50. -- Mage
  51. INSERT INTO `playercreateinfo_spell` (`race`, `class`, `Spell`, `Note`) VALUES
  52. (0, 8, 33389, 'Apprentice Riding'),
  53. (0, 8, 33392, 'Journeyman Riding'),
  54. (0, 8, 34092, 'Expert Riding'),
  55. (0, 8, 34093, 'Artisan Riding'),
  56. (0, 8, 54198, 'Cold Weather Flying');
  57. -- Warlock
  58. INSERT INTO `playercreateinfo_spell` (`race`, `class`, `Spell`, `Note`) VALUES
  59. (0, 9, 33389, 'Apprentice Riding'),
  60. (0, 9, 33392, 'Journeyman Riding'),
  61. (0, 9, 34092, 'Expert Riding'),
  62. (0, 9, 34093, 'Artisan Riding'),
  63. (0, 9, 54198, 'Cold Weather Flying');
  64. -- Druid
  65. INSERT INTO `playercreateinfo_spell` (`race`, `class`, `Spell`, `Note`) VALUES
  66. (0, 11, 33389, 'Apprentice Riding'),
  67. (0, 11, 33392, 'Journeyman Riding'),
  68. (0, 11, 34092, 'Expert Riding'),
  69. (0, 11, 34093, 'Artisan Riding'),
  70. (0, 11, 54198, 'Cold Weather Flying');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement