Advertisement
Guest User

Untitled

a guest
Jun 23rd, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MySQL 3.40 KB | None | 0 0
  1. -- Misc.
  2. UPDATE creature_template SET `expansion`='2', `minhealth`='126000', `maxhealth`='126000', `armor`='3750', `faction_A`='1619', `faction_H`='1619', `npcflag`='131', `mindmg`='96', `maxdmg`='144', `attackpower`='36', `dmg_multiplier`='2.8', `baseattacktime`='1500', `rangeattacktime`='1500', `unit_flags`='2', `minrangedmg`='77', `maxrangedmg`='115', `rangedattackpower`='29', `mingold`='0', `maxgold`='0' WHERE entry=15350;
  3. UPDATE creature_template SET `gossip_menu_id`='6598', `expansion`='2', `npcflag`='3', `mindmg`='420', `maxdmg`='630', `attackpower`='157', `dmg_multiplier`='2', `rangeattacktime`='2000', `minrangedmg`='336', `maxrangedmg`='504', `rangedattackpower`='126' WHERE entry=32615;
  4. -- Quest-ek (nem mind) törlése
  5. DELETE FROM creature_questrelation WHERE quest IN (11340, 11339, 11341, 14164, 13407, 11342, 13428, 14181, 14182, 14183, 22426, 24226, 24225, 24221, 24216, 24217);
  6. DELETE FROM creature_involvedrelation WHERE quest IN (11340, 11339, 11341, 14164, 13407, 11342, 13428, 14181, 14182, 14183, 22426, 24226, 24225, 24221, 24216, 24217);
  7. -- Vendor rész
  8. DELETE FROM npc_vendor WHERE entry=15350;
  9. INSERT INTO npc_vendor (`entry`, `item`, `maxcount`, `incrtime`, `ExtendedCost`)
  10. VALUES
  11. ('15350', '54637', '0', '0', '2991'),
  12. ('15350', '54637', '0', '0', '2992'),
  13. ('15350', '54637', '0', '0', '2993'),
  14. ('15350', '54637', '0', '0', '2994'),
  15. ('15350', '54637', '0', '0', '2995'),
  16. ('15350', '54637', '0', '0', '2996');
  17. -- Gossip
  18. DELETE FROM gossip_menu_option WHERE menu_id=6598;
  19. INSERT INTO gossip_menu_option (`menu_id`, `id`, `option_icon`, `option_text`, `option_id`, `npc_option_npcflag`, `action_menu_id`, `action_poi_id`, `action_script_id`, `box_coded`, `box_money`, `box_text`, `cond_1`, `cond_1_val_1`, `cond_1_val_2`, `cond_2`, `cond_2_val_1`, `cond_2_val_2`, `cond_3`, `cond_3_val_1`, `cond_3_val_2`)
  20. VALUES
  21. ('6598', '0', '0', 'GOSSIP_OPTION_QUESTGIVER', '2', '2', '0', '0', '0', '0', '0', '', '15', '11', '1', '0', '0', '0', '0', '0', '0'),
  22. ('6598', '1', '1', 'Redeem marks the battlefield to honor.', '3', '128', '0', '0', '0', '0', '0', '', '0', '0', '0', '0', '0', '0', '0', '0', '0');
  23. DELETE FROM gossip_menu WHERE entry=6598;
  24. INSERT INTO gossip_menu (`entry`, `text_id`, `cond_1`, `cond_1_val_1`, `cond_1_val_2`, `cond_2`, `cond_2_val_1`, `cond_2_val_2`)
  25. VALUES
  26. ('6598', '7819', '0', '0', '0', '0', '0', '0');
  27. -- Quest
  28. DELETE FROM creature_questrelation WHERE id IN (15350, 32615);
  29. INSERT INTO creature_questrelation (`id`, `quest`)
  30. VALUES
  31. ('15350', '13476'),
  32. ('32615', '13476');
  33.  
  34. UPDATE quest_template SET `Method`='1', `QuestFlags`='8', `Details`='Serving the Horde in one of the great battles against the Alliance is a source of great honor! The few however, that have served the Horde in ALL of our active battlefronts are our truly great fighters. We shall vanquish our opponents, not by fighting isolated skirmishes, but by waging a well-coordinated war.$B$BGo forth and crush the Alliance on every front! For Honor! For the Horde!', `Objectives`='Bring a Mark of Honor from each battleground to a Horde Warbringer in any Horde capital city, Shattrath, Dalaran, or Wintergrasp.', `CompletedText`='Return to Horde Warbringer.', `ReqItemId5`='20560', `ReqItemId6`='47395', `ReqItemCount5`='1', `ReqItemCount6`='1' WHERE entry=13476;
  35. DELETE FROM creature_involvedrelation WHERE id IN (15350, 32615);
  36. INSERT INTO creature_involvedrelation (`id`, `quest`)
  37. VALUES
  38. ('15350', '13476'),
  39. ('32615', '13476');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement