Reduce elite mobs hp menu

User Tag List

Results 1 to 14 of 14
  1. #1
    DontCareQQ's Avatar Member
    Reputation
    7
    Join Date
    Jul 2008
    Posts
    134
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Reduce elite mobs hp

    Hello,

    I set up one server for me and my girl friend - but we want to raid elite monsters with 2 person, is there one way to update ALL elite mobs to have 75% less hp and 75% less damage at once? or is this impossible?

    Reduce elite mobs hp
  2. #2
    Ziddy1337's Avatar Contributor
    Reputation
    136
    Join Date
    Aug 2008
    Posts
    486
    Thanks G/R
    4/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    You can do it manually by updating the figures in the database.

  3. #3
    Sounddead's Avatar Contributor
    Reputation
    160
    Join Date
    Sep 2007
    Posts
    1,126
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I don't think you can anymore (They took those options out of the configs), altough you could do it through your DB. It would just take a while.

    I live in a shoe

  4. #4
    DontCareQQ's Avatar Member
    Reputation
    7
    Join Date
    Jul 2008
    Posts
    134
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Yeah, over 500 monsters update by hand? aint there a quicker way like a query that selects elite mobs and reduces their hp or something? because doing it 1by1 takes like, weeks..

  5. #5
    Gastricpenguin's Avatar Legendary
    Reputation
    980
    Join Date
    Feb 2007
    Posts
    2,236
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    UPDATE creature_proto SET minhealth='MINHP', maxhealth='MAXHP' WHERE rank IN (`creature_names`='1');

    You may have to edit and or fix this, as I wrote it off the top of my head.
    Life Puzzler WoW - Website | Forums

  6. #6
    DontCareQQ's Avatar Member
    Reputation
    7
    Join Date
    Jul 2008
    Posts
    134
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Gastricpenguin View Post
    UPDATE creature_proto SET minhealth='MINHP', maxhealth='MAXHP' WHERE rank IN (`creature_names`='1');

    You may have to edit and or fix this, as I wrote it off the top of my head.
    the problem there would be that mobs both lvl 10 and 80 would have the same hp

  7. #7
    Gastricpenguin's Avatar Legendary
    Reputation
    980
    Join Date
    Feb 2007
    Posts
    2,236
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Asking a bit much. I think that's just too many conditions for an SQL query to handle.
    Life Puzzler WoW - Website | Forums

  8. #8
    DontCareQQ's Avatar Member
    Reputation
    7
    Join Date
    Jul 2008
    Posts
    134
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Aaah ok thank you.

  9. #9
    waymirec's Avatar Member
    Reputation
    49
    Join Date
    Jan 2008
    Posts
    155
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    You could do something like the following (based on the NCDB format):

    Code:
    UPDATE `creature_template` AS ct,creature_root AS cr SET `minhealth`=`minhealth` * .25, `maxhealth`=`maxhealth` * .25 WHERE ct.creature_entry=cr.creature_entry AND cr.rank > 0

  10. #10
    DontCareQQ's Avatar Member
    Reputation
    7
    Join Date
    Jul 2008
    Posts
    134
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by waymirec View Post
    You could do something like the following (based on the NCDB format):

    Code:
    UPDATE `creature_template` AS ct,creature_root AS cr SET `minhealth`=`minhealth` * .25, `maxhealth`=`maxhealth` * .25 WHERE ct.creature_entry=cr.creature_entry AND cr.rank > 0
    mm that didnt work, i use ncdb 47 and navicat

  11. #11
    latruwski's Avatar Banned
    Reputation
    647
    Join Date
    Dec 2006
    Posts
    2,456
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    here ya go:

    75% less Health
    Code:
    Update creature_proto SET minhealth=(minhealth * 0.25) where entry in (select entry from creature_names where rank ='1');
    Update creature_proto SET maxhealth=(maxhealth * 0.25) where entry in (select entry from creature_names where rank ='1');
    that is for elite only...

    for rare elite:
    Code:
    Update creature_proto SET minhealth=(minhealth * 0.25) where entry in (select entry from creature_names where rank ='2');
    Update creature_proto SET maxhealth=(maxhealth * 0.25) where entry in (select entry from creature_names where rank ='2');
    for world bosses:
    Code:
    Update creature_proto SET minhealth=(minhealth * 0.25) where entry in (select entry from creature_names where rank ='3');
    Update creature_proto SET maxhealth=(maxhealth * 0.25) where entry in (select entry from creature_names where rank ='3');
    for rare mobs:
    Code:
    Update creature_proto SET minhealth=(minhealth * 0.25) where entry in (select entry from creature_names where rank ='4');
    Update creature_proto SET maxhealth=(maxhealth * 0.25) where entry in (select entry from creature_names where rank ='4');
    75% less Damage (melee)
    For elites only:
    Code:
    Update creature_proto SET mindamage=(mindamage * 0.25) where entry in (select entry from creature_names where rank ='1');
    Update creature_proto SET maxdamage=(maxdamage * 0.25) where entry in (select entry from creature_names where rank ='1');
    For rare elites:
    Code:
    Update creature_proto SET mindamage=(mindamage * 0.25) where entry in (select entry from creature_names where rank ='2');
    Update creature_proto SET maxdamage=(maxdamage * 0.25) where entry in (select entry from creature_names where rank ='2');
    For World bosses:
    Code:
    Update creature_proto SET mindamage=(mindamage * 0.25) where entry in (select entry from creature_names where rank ='3');
    Update creature_proto SET maxdamage=(maxdamage * 0.25) where entry in (select entry from creature_names where rank ='3');
    For rare mobs:
    Code:
    Update creature_proto SET mindamage=(mindamage * 0.25) where entry in (select entry from creature_names where rank ='4');
    Update creature_proto SET maxdamage=(maxdamage * 0.25) where entry in (select entry from creature_names where rank ='4');
    spells
    Spells cant be done in DB... you can only delete spells from the boss in the creature_proto table...

    grtz
    Last edited by latruwski; 01-30-2009 at 07:29 AM.

  12. #12
    waymirec's Avatar Member
    Reputation
    49
    Join Date
    Jan 2008
    Posts
    155
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by DontCareQQ View Post
    mm that didnt work, i use ncdb 47 and navicat

    The code I posted above is using the generic NCDB format based off their wiki. You would need to alter it to reflect any changes in your table or field names but other than that it is the easiest way to do what you want in a single query.

  13. #13
    DontCareQQ's Avatar Member
    Reputation
    7
    Join Date
    Jul 2008
    Posts
    134
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    woooo thanks alot for that latru!!!!

  14. #14
    latruwski's Avatar Banned
    Reputation
    647
    Join Date
    Dec 2006
    Posts
    2,456
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by DontCareQQ View Post
    woooo thanks alot for that latru!!!!
    no problem, that is what i'm here for ^^

Similar Threads

  1. Take 0 dmg from elite mob special abilities any class timeless isle
    By DarkMassacre in forum World of Warcraft Exploits
    Replies: 8
    Last Post: 10-06-2013, 12:08 AM
  2. EPIC! Farm Elite Mobs Unlimited Times [EASY FARM METHOD]
    By seocreative in forum Diablo 3 Exploits
    Replies: 14
    Last Post: 05-31-2012, 04:42 AM
  3. Glacion - Nearly instant elite mob spawn, 360,000xp / hr (unrested)
    By bagsnatcher in forum World of Warcraft Exploits
    Replies: 12
    Last Post: 10-22-2010, 05:16 AM
  4. [Levels 37-42] Elite XP from Nonelite mobs
    By tashin in forum World of Warcraft Guides
    Replies: 2
    Last Post: 02-29-2008, 03:48 PM
  5. [Glider] File + Elite guide to reduce your chances of being detected by 80% !!!
    By Flying Piggy in forum World of Warcraft Bots and Programs
    Replies: 281
    Last Post: 11-20-2007, 09:00 PM
All times are GMT -5. The time now is 02:51 AM. 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