Jump to content
  • Rathis Tomber


    madmax
    • Status: Completed
      Main Category: Database
      Sub-Category: NPC
      Version: 0.20 Milestone: 20 Priority: Normal
      Implemented Version: 0.20

    Rathis Tomber

    If I recall correctly, Rathis Tomber did not offer any goods for sale until after you completed "Tomber's Supplies". It doesn't break anything, but if we want it to be truly blizz-like then the current situation where he has goods for sale immediately is a bug.

    [url]http://www.covenant-wow.com/forums/index.php?topic=184.0[/url]


    User Feedback

    Recommended Comments

    Checked in-game and this has not been fixed.

    I think it can be sorted out by the use of:
    [B]npc_vendor [/B]table
    [B]conditions [/B]table + CONDITION_QUESTREWARDED type + the quest entry 9152

    ----------------------------------------------
    -- Quest rewarded 9152
    [B][COLOR="#0000FF"]INSERT INTO conditions (condition_entry, type, value1) VALUES (1734, 8, 9152);[/COLOR][/B]

    -- Only allow access to trade if quest rewarded
    [B][COLOR="#0000FF"]UPDATE npc_vendor SET condition_id = 1734 WHERE entry = 16224;[/COLOR][/B]

    That does not appear to be the way to do it :(

    [B]gossip_menu_option [/B]perhaps ?

    [B][COLOR="#0000FF"]UPDATE gossip_menu_option SET condition_id=1734 WHERE menu_id=7162 and id=0;[/COLOR][/B]

    YEY, that did it :)

    Will PR this in a mo!

    Link to comment
    Share on other sites

    [B][SIZE=3][COLOR="#008000"]THE FIX[/COLOR][/SIZE][/B]

    -- Quest rewarded 9152
    [COLOR="#0000FF"]DELETE FROM conditions WHERE condition_entry = 1734;
    INSERT INTO conditions (condition_entry, type, value1) VALUES (1734, 8, 9152);[/COLOR]
    -- Stop the option for listing vendor goods
    [COLOR="#0000FF"]UPDATE gossip_menu_option SET condition_id=1734 WHERE menu_id=7162 and id=0;[/COLOR]

    PR and merged on MaNGOSOne
    [url]https://github.com/mangosone/database/pull/10[/url]

    Will check MaNGOSTwo tomorrow!

    MaNGOSTwo is fine.

    [SIZE=3][B]***** [COLOR="#008000"]Job done - Setting to Completed[/COLOR] *****[/B][/SIZE]

    Link to comment
    Share on other sites



    Create an account or sign in to comment

    You need to be a member in order to leave a comment

    Create an account

    Sign up for a new account in our community. It's easy!

    Register a new account

    Sign in

    Already have an account? Sign in here.

    Sign In Now

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. Privacy Policy Terms of Use