[ArcEmu] Donor/Normal account differences menu

User Tag List

Page 1 of 2 12 LastLast
Results 1 to 15 of 20
  1. #1
    reaku's Avatar Member
    Reputation
    1
    Join Date
    Jun 2009
    Posts
    35
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    [ArcEmu] Donor/Normal account differences

    Hello there. I have a funserver. In this funserver i maid some donation gear, but there is so much difference between normal players and donor ones. I was wondering if there is any way that i can raise all stats on server ( blizz items and mobbs) because the donors are like gods. Please help if you know a mod or a query or a .lua that can do that please post i'll +Rep anyone!!

    [ArcEmu] Donor/Normal account differences
  2. #2
    Ground Zero's Avatar ★ Elder ★
    Reputation
    1132
    Join Date
    Aug 2008
    Posts
    3,504
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Wouldn't it be easier to just reduce the Donor gear? It would take alot longer to increase everything else.

  3. #3
    reaku's Avatar Member
    Reputation
    1
    Join Date
    Jun 2009
    Posts
    35
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    ies it whould but i want a funserver not a just a little over blizz server. i need somethings edited anyway so... just tell me what to edit

  4. #4
    Aellya's Avatar Sergeant
    Reputation
    21
    Join Date
    Mar 2010
    Posts
    56
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    You could boost the stats for all items which weren't donated items.

    e.g.
    Assumes your donation items are at 100000 and higher and is based on Ascent/Arcemu sql structure.

    UPDATE items SET stat_value1 = stat_value1 * 1.5 WHERE stat_type1 > 0 AND entry < 100000;
    UPDATE items SET stat_value2 = stat_value2 * 1.5 WHERE stat_type2 > 0 AND entry < 100000;
    UPDATE items SET stat_value3 = stat_value3 * 1.5 WHERE stat_type3 > 0 AND entry < 100000;
    UPDATE items SET stat_value4 = stat_value4 * 1.5 WHERE stat_type4 > 0 AND entry < 100000;
    UPDATE items SET stat_value5 = stat_value5 * 1.5 WHERE stat_type5 > 0 AND entry < 100000;
    UPDATE items SET stat_value6 = stat_value6 * 1.5 WHERE stat_type6 > 0 AND entry < 100000;
    UPDATE items SET stat_value7 = stat_value7 * 1.5 WHERE stat_type7 > 0 AND entry < 100000;
    UPDATE items SET stat_value8 = stat_value8 * 1.5 WHERE stat_type8 > 0 AND entry < 100000;
    UPDATE items SET stat_value9 = stat_value9 * 1.5 WHERE stat_type9 > 0 AND entry < 100000;
    UPDATE items SET stat_value10 = stat_value10 * 1.5 WHERE stat_type10 > 0 AND entry < 100000;

    Same with other item values like damage, armour, resistances, etc...
    Hope this helped

  5. #5
    Aellya's Avatar Sergeant
    Reputation
    21
    Join Date
    Mar 2010
    Posts
    56
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Just thinking that another option would be to just reduce the level of all items by 10, this will allow players to use properly balanced items relative to each other.

    UPDATE items SET requiredlevel = requiredlevel - 10 WHERE entry < 100000;
    UPDATE items SET requiredlevel = 0 WHERE requiredlevel < 0; // Fix the items whos requiredlevel went negative.

  6. #6
    Kiev's Avatar Contributor
    Reputation
    288
    Join Date
    Nov 2007
    Posts
    1,819
    Thanks G/R
    0/4
    Trade Feedback
    3 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thats some very nice SQL your using there Aellya, im going to see that you might be a good help here.




  7. #7
    reaku's Avatar Member
    Reputation
    1
    Join Date
    Jun 2009
    Posts
    35
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    thank you very much for all. i will try these to see if they work. +rep from me!

    EDIT: i tried but the items remained the same or the difference was too small. i need to make all blizz items ( top ones ) to be 20-35 % weaker then ones with 1000+ stats. and yes i deleted my cache before reentry.
    Last edited by reaku; 03-06-2010 at 04:42 PM.

  8. #8
    Kiev's Avatar Contributor
    Reputation
    288
    Join Date
    Nov 2007
    Posts
    1,819
    Thanks G/R
    0/4
    Trade Feedback
    3 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Did you reload the item table or restart the server?




  9. #9
    reaku's Avatar Member
    Reputation
    1
    Join Date
    Jun 2009
    Posts
    35
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    it works! all i had to do is make it bigger. thanks +rep for you. can you make something like that for wepps, shields and mobbs to? please i'll +rep again

  10. #10
    Kiev's Avatar Contributor
    Reputation
    288
    Join Date
    Nov 2007
    Posts
    1,819
    Thanks G/R
    0/4
    Trade Feedback
    3 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    It should do the stats on weapons, to do the damage just change the colums to "min_damage" and "max_damage" and just have two queries.




  11. #11
    reaku's Avatar Member
    Reputation
    1
    Join Date
    Jun 2009
    Posts
    35
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    i don't need for wepps anymore, i solved that. what about mobs. can i use this on mobs to?

  12. #12
    Ground Zero's Avatar ★ Elder ★
    Reputation
    1132
    Join Date
    Aug 2008
    Posts
    3,504
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    UPDATE items SET stat_value1 = stat_value1 * 1.5 WHERE stat_type1 > 0 AND entry < 100000;

    to

    UPDATE creature_proto SET maxhealth = maxhealth * 1.5 WHERE maxhealth > 0 AND entry < 100000;

    Or whatever maxhealth is.

  13. #13
    reaku's Avatar Member
    Reputation
    1
    Join Date
    Jun 2009
    Posts
    35
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    thanks man + rep for you!

  14. #14
    reaku's Avatar Member
    Reputation
    1
    Join Date
    Jun 2009
    Posts
    35
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    guys i have a problem: when i execute the query it gives this error: squote]sql error: you have an error in your sql syntax; check the manual that coresponds to your mysql server version for the right syntax to use near "UPDATE creature_proto set maxhealth = maxhealth * 7.5 WH"[/quote]

    i executed:


    UPDATE creature_proto SET minhealth = minhealth * 7.5 WHERE minhealth > 0 AND entry < 30000
    UPDATE creature_proto SET maxhealth = maxhealth * 7.5 WHERE maxhealth > 0 AND entry < 30000
    UPDATE creature_proto SET mindamage = mindamage * 7.5 WHERE mindamage > 0 AND entry < 30000
    UPDATE creature_proto SET maxdamage = maxdamage * 7.5 WHERE maxdamage > 0 AND entry < 30000
    Last edited by reaku; 03-14-2010 at 05:19 AM.

  15. #15
    Kiev's Avatar Contributor
    Reputation
    288
    Join Date
    Nov 2007
    Posts
    1,819
    Thanks G/R
    0/4
    Trade Feedback
    3 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    This may be a silly question xD, but did you put the ; after the lines?




Page 1 of 2 12 LastLast

Similar Threads

  1. [Epic] Xfer gold/items between Trial account and Normal account - This one works
    By Iaccidentallytwink in forum World of Warcraft Exploits
    Replies: 20
    Last Post: 09-12-2009, 08:28 AM
  2. CE Pets with normal account?
    By Binary in forum World of Warcraft General
    Replies: 11
    Last Post: 11-16-2008, 09:36 PM
  3. how do you make normal accounts have commands???
    By lolzz in forum World of Warcraft Emulator Servers
    Replies: 8
    Last Post: 06-13-2008, 02:27 AM
  4. FOR SALE: Full Donor Wowscape Account
    By KRAZY2K7 in forum Members Only Accounts And CD Keys Buy Sell
    Replies: 25
    Last Post: 02-17-2008, 04:19 PM
  5. 2 accounts, different addy/names but same CC
    By taboocrime in forum World of Warcraft General
    Replies: 3
    Last Post: 06-10-2007, 07:05 PM
All times are GMT -5. The time now is 12:31 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