Search results

  1. kureji

    Minor fixes v14 (Firelands Raid)

    Thanks for the update! You might want to have future updates in code blocks next time, hit the triple dots and then then </> button, set the language to SQL and then your code will look like this: DELETE FROM `creature_text` WHERE `entry` = 53494; INSERT INTO `creature_text` VALUES (53494, 0...
  2. kureji

    Fix quest Bring 'Em Back Alive

    Here is the SQL code for your suggested change. UPDATE creature_template_addon SET auras=0 WHERE entry=25596;
  3. kureji

    Minor fixes v14 (Stratholm Crusader Square Dungeon)

    I ran this dungeon and saw Dathorohan was level 62 and I was like... that can't be right let me check what he was in cata. So according to https://wowpedia.fandom.com/wiki/Balnazzar_(tactics) in cataclysm, they got rid of the grand crusader phase and it's just balnazaar waiting for you in strat...
  4. kureji

    V14 Valor and Justice Quartermasters Inventory Update (T11 now as well)

    So while fixing the tier 11 for the vendors, I noticed two errors in the DBC. The first is that there isn't an entry for an item cost of Leggings of the Forlorn Protector, they all require that and the normal version of the pants, I believe 3097 was supposed to be just the token but it's a...
  5. kureji

    V14 Valor and Justice Quartermasters Inventory Update (T11 now as well)

    Next up I needed to update the inventory of the justice quartermaster to tier 12 level. I was a little smarter this time around and utilized variables to minimize my manual data entry. SELECT 1 INTO @slot; -- variable for keeping track of slot number SELECT 3038 INTO @j22; -- declare...
  6. kureji

    V14 Valor and Justice Quartermasters Inventory Update (T11 now as well)

    So I was looking through the VP and JP vendors and realized that their inventory isn't correct for 4.3.4 and also that an NPC was missing from Orgrimmar. So I decided to work on updating their inventory (and oh boy what a job this is) First this will add the missing NPC: -- missing NPC Rugok...
  7. kureji

    Minor Fixes v14 (Deepholm)

    Thanks for the update, btw the second code snip has an extra comma
  8. kureji

    V14 - ZulFarrak - Dustwraith and LBRS - Urok DoomHowl

    While going through ZF, I was attacked by the dustwraith rare elite and noticed that he was not attackable despite being aggressive. Had to use gm codes to kill him. Looked through the db and found his unit flags and faction were not correct. This fixes it: --...
  9. kureji

    The Nexus - Crystalline Frayers V14

    I was able to complete the Nexus but I don't remember the part with the drakes, that part may still be broken but I was able to beat every boss and complete all the quests. Well now that I think about it.. there was a room with a skull on the map but I couldn't figure out how to make a boss...
  10. kureji

    The Nexus - Crystalline Frayers V14

    So I was running The Nexus on normal and I noticed that the Crysalline Frayers levels were all over the place. Checking the database it showed level 66-80. That didn't mesh with what I remember from my WOTLK days so I looked up what they should be. Took me a while to finally find a video of...
  11. kureji

    Goram Guild Vendor V14

    Due some chat on the discord, I looked more into Goram and how he never had loot available. Apparently there are two Gorams and the wrong one was placed in Orgrimmar. This should switch it to the correct Goram, or at least the not bugged goram. UPDATE creature SET id = 46572 WHERE guid=171241...
  12. kureji

    V14 Lady Illucia Barov

    [Location, Faction, Race] Scholomance, Horde. All characters I've tried. [Name, Type] Lady Illucia Barov, creature (10502) [Problem Description] Summons two level 70 "Summoned Bloodwarder Reservist" (id 20078) every 60 seconds. [How it should work] This boss should not be summoning any mobs...
  13. kureji

    Minor Fix V14 (Scholomance)

    This might be a bug that is blizz-like, not sure... Jandice Barov spawns adds that are level 61 despite scholo being scaled down for Cata. This will fix the stats to be closer to what they should be. -- https://www.wowhead.com/npc=11439/illusion-of-jandice-barov UPDATE creature_template SET...
  14. kureji

    Minor Fixes v14 (Icecrown - Crusader's Pinnacle)

    You're right, I missed the space. Thanks! Updated.
  15. kureji

    Minor Fixes v14 (Icecrown - Crusader's Pinnacle)

    I wanted to try and fix the bugged out questline that starts your entry into Icecrown. Here are the fixes that I've applied Quest: Scourge Tactics The webbed crusaders had the wrong phase, easy enough fix. -- https://www.wowhead.com/quest=13008/scourge-tactics UPDATE creature SET phaseMask = 2...
  16. kureji

    V14 Minor item fix

    The items from Brazie's black book of secrets didn't have their pages assigned to them so they were unreadable. Clearly, this is essential so here is the fix to the items: UPDATE item_template SET PageText = 3581 WHERE entry=49918; --...
  17. kureji

    V14 Learning to Leave and Return: the Magical Way

    [Location, Faction, Race] Crystalsong, Violet Stand/Dalaran, Horde. Tauren Male Deathknight/Warrior [Name, Type] Teleport to Dalaran Crystal, gameobject 191229, or Teleport to Violet Stand Crystal, gameobject 191229 [Problem Description] During the quest "Learning to Leave and Return: the...
  18. kureji

    Utgarde Keep

    UPDATE creature_template SET faction_h = 35 WHERE entry=24068; UPDATE creature_template SET faction_a = 35 WHERE entry=24068; I tested this out and it seems to have worked as you intended. I could be mistaken but I believe the angel thing autoattacks you while it is nearby, don't know how to...
  19. kureji

    V14 Quest 26830

    [Location, Faction, Race]Orgrimmar City near the flight point, Horde. Happened on my Male Tauren and Female Bloodelf [Name, Type] Traitor's Bait, Quest 26830 [Problem Description] After questioning the Suspicious Peon, Sauranok the Mystic appears and kills you [How it should work] Sauranok the...
Top