Make your server Pre-TBC menu

Shout-Out

User Tag List

Results 1 to 9 of 9
  1. #1
    2dgreengiant's Avatar ★ Elder ★


    Reputation
    1192
    Join Date
    Feb 2007
    Posts
    7,129
    Thanks G/R
    1/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Make your server Pre-TBC

    Quite a few people want their server to be pre-Tbc, this should free up your database and the time ascent takes to load etc

    Here is a few SQL queries and ways to make it Pre-Tbc


    SQL Queries

    For Items: (Execute these all
    separately into your database not in one go)

    Code:
    DELETE FROM items WHERE requiredlevel = 61
    DELETE FROM items WHERE requiredlevel = 62
    DELETE FROM items WHERE requiredlevel = 63
    DELETE FROM items WHERE requiredlevel = 64
    DELETE FROM items WHERE requiredlevel = 65
    DELETE FROM items WHERE requiredlevel = 66
    DELETE FROM items WHERE requiredlevel = 67
    DELETE FROM items WHERE requiredlevel = 68
    DELETE FROM items WHERE requiredlevel = 69
    DELETE FROM items WHERE requiredlevel = 70
    For Creatures: (this will only delete the proto of them)

    Code:
    DELETE FROM creature_proto WHERE minlevel = 61
    DELETE FROM creature_proto WHERE minlevel = 62
    DELETE FROM creature_proto WHERE minlevel = 63
    DELETE FROM creature_proto WHERE minlevel = 64
    DELETE FROM creature_proto WHERE minlevel = 65
    DELETE FROM creature_proto WHERE minlevel = 66
    DELETE FROM creature_proto WHERE minlevel = 67
    DELETE FROM creature_proto WHERE minlevel = 68
    DELETE FROM creature_proto WHERE minlevel = 69
    DELETE FROM creature_proto WHERE minlevel = 70
    For the accounts to ake them Pre-Tbc:

    Code:
    UPDATE accounts SET flags = 0 WHERE flags = 8
    Playercreateinfo:

    Code:
     DELETE FROM playercreateinfo WHERE race = 10
    DELETE FROM playercreateinfo WHERE race = 11
    DELETE FROM playercreateinfo_bars WHERE race = 11
    DELETE FROM playercreateinfo_bars WHERE race = 10
    Quests:

    Code:
    DELETE FROM quests WHERE MinLevel = 61
    DELETE FROM quests WHERE MinLevel = 62
    DELETE FROM quests WHERE MinLevel = 63
    DELETE FROM quests WHERE MinLevel = 64
    DELETE FROM quests WHERE MinLevel = 65
    DELETE FROM quests WHERE MinLevel = 66
    DELETE FROM quests WHERE MinLevel = 67
    DELETE FROM quests WHERE MinLevel = 68
    DELETE FROM quests WHERE MinLevel = 69
    DELETE FROM quests WHERE MinLevel = 70
    Overall this should reduce the loading time as a load of creatures etc are missing and it removed the tbc related creatures, quests, create and makes all accounts pre-tbc

    Remember execute these separately in Navicat/Sqlyog or else it will error

    As usual any problems comment below~2d~

    By ultra Spidey:

    Code:
    DELETE FROM items WHERE requiredlevel > 60
    DELETE FROM creature_proto WHERE minlevel > 60
    DELETE FROM quests WHERE MinLevel > 60
    UPDATE accounts SET flags = 0 WHERE flags = 8
    DELETE FROM playercreateinfo WHERE race >= 10
    DELETE FROM playercreateinfo_bars WHERE race >= 10

    Last edited by 2dgreengiant; 03-19-2008 at 04:40 PM.
    If you need me you have my skype, if you don't have my skype then you don't need me.

    Make your server Pre-TBC
  2. #2
    *Alexz*'s Avatar Member
    Reputation
    105
    Join Date
    May 2007
    Posts
    521
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    nice one +rep alot of people have been asking how to do this
    EDIT- STILL need to spread lol

  3. #3
    Succy's Avatar Banned
    Reputation
    40
    Join Date
    Jun 2007
    Posts
    804
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Nice Guide, Even if I think TBC is okay Would give you rep if I could
    Last edited by Succy; 03-19-2008 at 04:36 PM.

  4. #4
    2dgreengiant's Avatar ★ Elder ★


    Reputation
    1192
    Join Date
    Feb 2007
    Posts
    7,129
    Thanks G/R
    1/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    i like and prefer tbc myself but there some old school pplz
    If you need me you have my skype, if you don't have my skype then you don't need me.

  5. #5
    TheSpidey's Avatar Elite User
    Reputation
    365
    Join Date
    Jan 2008
    Posts
    2,200
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Nice, can be reduced to these 6 statements:

    Code:
    DELETE FROM items WHERE requiredlevel > 60
    DELETE FROM creature_proto WHERE minlevel > 60
    DELETE FROM quests WHERE MinLevel > 60
    UPDATE accounts SET flags = 0 WHERE flags = 8
    DELETE FROM playercreateinfo WHERE race >= 10
    DELETE FROM playercreateinfo_bars WHERE race >= 10

  6. #6
    2dgreengiant's Avatar ★ Elder ★


    Reputation
    1192
    Join Date
    Feb 2007
    Posts
    7,129
    Thanks G/R
    1/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    thanks, i cba with the more than and less than sign, ill add it
    If you need me you have my skype, if you don't have my skype then you don't need me.

  7. #7
    ~ViVo~'s Avatar Banned
    Reputation
    52
    Join Date
    Feb 2008
    Posts
    560
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    GG thx. +rep if I can

  8. #8
    Lakelog's Avatar Member
    Reputation
    27
    Join Date
    Jun 2007
    Posts
    118
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    If you run the SQL to delete the creatures above level 60, wouldn't that delete pre-TBC elites that range from level 61-63, aswell as some bosses?

    <SA> Lakylog - Cobylog WoW

  9. #9
    2dgreengiant's Avatar ★ Elder ★


    Reputation
    1192
    Join Date
    Feb 2007
    Posts
    7,129
    Thanks G/R
    1/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    If you run the SQL to delete the creatures above level 60, wouldn't that delete pre-TBC elites that range from level 61-63, aswell as some bosses?
    ill look into this, if your that worried just execute the say 65+ range
    If you need me you have my skype, if you don't have my skype then you don't need me.

Similar Threads

  1. How To make your Server Public [Hamachi AND Non-Hamachi]
    By JulianX in forum WoW EMU Guides & Tutorials
    Replies: 509
    Last Post: 12-02-2010, 03:41 PM
  2. Replies: 216
    Last Post: 08-08-2008, 11:09 PM
  3. How To Make Your Server Public With Out Hamachi Problem Solved
    By bomber1392 in forum WoW EMU Guides & Tutorials
    Replies: 7
    Last Post: 12-12-2007, 03:35 AM
  4. Make your server public without hamachi! (antrix!)
    By jargs in forum WoW EMU Guides & Tutorials
    Replies: 74
    Last Post: 12-02-2007, 10:12 PM
  5. [Guide]How to make your Server 2.2.0 !
    By Guysus in forum WoW EMU Guides & Tutorials
    Replies: 17
    Last Post: 10-02-2007, 05:10 PM
All times are GMT -5. The time now is 08:14 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