Custom Wrathful (Season8) Gear. menu

Shout-Out

User Tag List

Results 1 to 10 of 10
  1. #1
    lurkinator911's Avatar Private
    Reputation
    1
    Join Date
    Mar 2011
    Posts
    6
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Custom Wrathful (Season8) Gear.

    Hello people of OwnedCore.
    i was wondering if there is anyone here that could compile me a SQL, simply just a update SQL for specificly the Wrathful Gear
    im having trouble converting ALL the Wrathful (Season gear to lvl 100 gear with better stats. i don't want overpowered stuff, just a buff of 50-70 on each stats and lvl set up to lvl 100, as im putting up a lvl 100 custom lvling/pvp realm.
    i'm running a TrinityCore Server btw.
    Help would be very much apreciated!
    Last edited by lurkinator911; 03-28-2012 at 12:07 PM.

    Custom Wrathful (Season8) Gear.
  2. #2
    stoneharry's Avatar Moderator Harry


    Reputation
    1618
    Join Date
    Sep 2007
    Posts
    4,564
    Thanks G/R
    151/150
    Trade Feedback
    0 (0%)
    Mentioned
    4 Post(s)
    Tagged
    0 Thread(s)
    UPDATE item_template SET statvalue1 = statvalue1*1.7 WHERE entry = '1';

    This would make statvalue1 column times by 1.7. Just edit the query to effect the correct columns and experiment with some different values. You will need to change the entry of the item (currently set to 1). Back up your database before executing any queries in case you get it wrong.

  3. #3
    lurkinator911's Avatar Private
    Reputation
    1
    Join Date
    Mar 2011
    Posts
    6
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by stoneharry View Post
    UPDATE item_template SET statvalue1 = statvalue1*1.7 WHERE entry = '1';

    This would make statvalue1 column times by 1.7. Just edit the query to effect the correct columns and experiment with some different values. You will need to change the entry of the item (currently set to 1). Back up your database before executing any queries in case you get it wrong.
    it's been 3 years since last i did server work / db work and stuff like that.. :| it's like all out of my system, so i barely can do shit other than adding SQLs and editing few bits in DB :/

    Also i've recently modified about 20 Wrathful items so far. hence the reason im asking for this, it takes damn long x_x
    Last edited by lurkinator911; 03-28-2012 at 02:13 PM.

  4. #4
    stoneharry's Avatar Moderator Harry


    Reputation
    1618
    Join Date
    Sep 2007
    Posts
    4,564
    Thanks G/R
    151/150
    Trade Feedback
    0 (0%)
    Mentioned
    4 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by lurkinator911 View Post
    it's been 3 years since last i did server work / db work and stuff like that.. :| it's like all out of my system, so i barely can do shit other than adding SQLs and editing few bits in DB :/

    Also i've recently modified about 20 Wrathful items so far. hence the reason im asking for this, it takes damn long x_x
    Look up some basic tutorials on how to 'script' MySQL queries.

  5. #5
    lurkinator911's Avatar Private
    Reputation
    1
    Join Date
    Mar 2011
    Posts
    6
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by stoneharry View Post
    Look up some basic tutorials on how to 'script' MySQL queries.
    cant seem to find any x_x gawd

  6. #6
    bendaferi's Avatar Active Member
    Reputation
    34
    Join Date
    Jun 2008
    Posts
    111
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    SQL Update

    You can find other statements at the left side menu under SQL Basic. You do not need to read the advanced part. At least for this gear update process

  7. #7
    lurkinator911's Avatar Private
    Reputation
    1
    Join Date
    Mar 2011
    Posts
    6
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by bendaferi View Post
    SQL Update

    You can find other statements at the left side menu under SQL Basic. You do not need to read the advanced part. At least for this gear update process
    Could you please tell me how? perhaps through a guide, would be helpfull

  8. #8
    Stige's Avatar Contributor
    Reputation
    115
    Join Date
    May 2009
    Posts
    1,324
    Thanks G/R
    7/13
    Trade Feedback
    1 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Why do you even bother trying to run a server which you cant even run yourself?
    Super Unicum

  9. #9
    lurkinator911's Avatar Private
    Reputation
    1
    Join Date
    Mar 2011
    Posts
    6
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by xarper View Post
    Why do you even bother trying to run a server which you cant even run yourself?
    i can perfectly fine run my own server. i've been off the emulator work for 3 years, can't ****ing expect me to have it all back in the system in 2 days.
    get your facts straight.

  10. #10
    facka138b's Avatar Member
    Reputation
    10
    Join Date
    Mar 2008
    Posts
    37
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Lurkinator911, just do what stoneharry told you.

    Step 1: Create a new SQL file.
    Step 2: Open the SQL file.
    Step 3: Add this to the SQL File:
    UPDATE item_template SET statvalue1 = statvalue1*1.7 WHERE entry = 'REPLACE WITH ITEM ID';
    UPDATE item_template SET statvalue2 = statvalue2*1.7 WHERE entry = 'REPLACE WITH ITEM ID';
    UPDATE item_template SET statvalue3 = statvalue3*1.7 WHERE entry = 'REPLACE WITH ITEM ID';
    UPDATE item_template SET statvalue4 = statvalue4*1.7 WHERE entry = 'REPLACE WITH ITEM ID';
    UPDATE item_template SET statvalue5 = statvalue5*1.7 WHERE entry = 'REPLACE WITH ITEM ID';
    UPDATE item_template SET statvalue6 = statvalue6*1.7 WHERE entry = 'REPLACE WITH ITEM ID';
    UPDATE item_template SET statvalue7 = statvalue7*1.7 WHERE entry = 'REPLACE WITH ITEM ID';
    UPDATE item_template SET RequiredLevel = '100' WHERE entry = 'REPLACE WITH ITEM ID';
    Step 4: Now delete REPLACE WITH ITEM ID with the entry of the item you want to tweak.
    Step 5: Run the SQL file into the database.

    HINT: Press Ctrl+H. This brings up a menu. Type this in the specific field:
    Replace: REPLACE WITH ITEM ID
    Replace With: Entry ID
    Then press Replace All. The program will then automatically replace it all with the selected entry id.
    Now copy/paste a new line for a new item and do the same thing above.
    Last edited by facka138b; 04-25-2012 at 04:39 AM.

Similar Threads

  1. A problem with Wrathful Gladiator gear... Halp...
    By Vent in forum WoW ME Questions and Requests
    Replies: 0
    Last Post: 07-13-2010, 09:20 PM
  2. Replies: 0
    Last Post: 08-09-2009, 12:04 PM
  3. Custom GM / Admin Gear For your Server!
    By kimmern in forum WoW EMU Guides & Tutorials
    Replies: 5
    Last Post: 12-09-2008, 02:01 PM
  4. Split Infinity [2.4.2][NO OP Donor Gear][Custom BG/PvP Gear][Very few crashes]
    By Sorayazlawl in forum WoW Emulator Server Listings
    Replies: 0
    Last Post: 07-14-2008, 04:24 PM
All times are GMT -5. The time now is 08:06 PM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search