Advertisement
Guest User

Untitled

a guest
Aug 17th, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MySQL 1.45 KB | None | 0 0
  1. -- First Aid trainer - Aresella - 18991, Mildred Fletcher - 19184
  2.  
  3. DELETE FROM npc_trainer WHERE entry = 18991;
  4. INSERT INTO npc_trainer (entry, spell, spellcost, reqskill, reqskillvalue, reqlevel) VALUES
  5. (18991, 3276,   100,    129,    40, 0),
  6. (18991, 3277,   250,    129,    80, 0),
  7. (18991, 3278,   1000,   129,    115,    0),
  8. (18991, 3279,   100,    0,  0,  0),
  9. (18991, 3280,   500,    129,    50, 0),
  10. (18991, 7928,   5000,   129,    150,    0),
  11. (18991, 7929,   25000,  129,    180,    0),
  12. (18991, 7934,   250,    129,    80, 0),
  13. (18991, 10840,  60000,  129,    210,    0),
  14. (18991, 10841,  100000, 129,    240,    0),
  15. (18991, 10847,  25000,  129,    200,    35),
  16. (18991, 18629,  125000, 129,    260,    0),
  17. (18991, 18630,  150000, 129,    290,    0),
  18. (18991, 27028,  100000, 129,    300,    0),
  19. (18991, 27032,  200000, 129,    300,    0),
  20. (18991, 27033,  400000, 129,    330,    0),
  21. (18991, 54254,  1000,   129,    125,    0),
  22. (18991, 54255,  100000, 129,    275,    0);
  23.  
  24. DELETE FROM npc_trainer WHERE entry = 19184;
  25. INSERT INTO npc_trainer (entry, spell, spellcost, reqskill, reqskillvalue, reqlevel) VALUES
  26. (19184, 3276,   100,    129,    40, 0),
  27. (19184, 3277,   250,    129,    80, 0),
  28. (19184, 3278,   1000,   129,    115,    0),
  29. (19184, 3279,   100,    0,  0,  0),
  30. (19184, 3280,   500,    129,    50, 0),
  31. (19184, 7928,   5000,   129,    150,    0),
  32. (19184, 7929,   25000,  129,    180,    0),
  33. (19184, 7934,   250,    129,    80, 0),
  34. (19184, 10840,  60000,  129,    210,    0),
  35. (19184, 10841,  100000, 129,    240,    0),
  36. (19184, 10847,  25000,  129,    200,    35),
  37. (19184, 18629,  125000, 129,    260,    0),
  38. (19184, 18630,  150000, 129,    290,    0),
  39. (19184, 54254,  1000,   129,    125,    0);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement