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