Go Back   EQEmulator Home > EQEmulator Forums > Support > Support::General Support

Support::General Support Post all topics here having to do with errors while trying to connect to an EQEMu server but not about the setup/running of the Server itself.

Reply
 
Thread Tools Display Modes
  #1  
Old 10-24-2008, 04:05 PM
spoon
Sarnak
 
Join Date: Aug 2007
Posts: 34
Default

And if you want required:

Code:
mysql> DELETE FROM `items` WHERE `reqlevel` > 60;
Reply With Quote
  #2  
Old 10-24-2008, 04:16 PM
spoon
Sarnak
 
Join Date: Aug 2007
Posts: 34
Default

If you only want to remove them from the loot tables use:

to see what there are:
Code:
SELECT
	`items`.`id`
FROM
	`lootdrop_entries`
	LEFT JOIN
		`items`
	ON `lootdrop_entries`.`item_id` = `items`.`id`
WHERE
	`items`.`reclevel` > 60;
Code:
SELECT
	`items`.`id`
FROM
	`lootdrop_entries`
	LEFT JOIN
		`items`
	ON `lootdrop_entries`.`item_id` = `items`.`id`
WHERE
	`items`.`reqlevel` > 60;
to delete:

Code:
DELETE
	`lootdrop_entries`
FROM
		`lootdrop_entries`
	LEFT JOIN
		`items`
	ON `lootdrop_entries`.`item_id` = `items`.`id`
WHERE
	`items`.`reclevel` > 60;
and

Code:
DELETE
	`lootdrop_entries`
FROM
		`lootdrop_entries`
	LEFT JOIN
		`items`
	ON `lootdrop_entries`.`item_id` = `items`.`id`
WHERE
	`items`.`reqlevel` > 60;
Reply With Quote
  #3  
Old 10-25-2008, 12:22 AM
AndMetal
Developer
 
Join Date: Mar 2007
Location: Ohio
Posts: 648
Default

If you wanted to do both at the same time, you should be able to add an OR to the WHERE clause. Same with the SELECT query.
__________________
GM-Impossible of 'A work in progress'
A non-legit PEQ DB server
How to create your own non-legit server

My Contributions to the Wiki
Reply With Quote
  #4  
Old 10-25-2008, 01:15 AM
ChaosSlayer
Demi-God
 
Join Date: May 2007
Posts: 1,032
Default

recommended level over 60
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

   

All times are GMT -4. The time now is 12:42 AM.


 

Everquest is a registered trademark of Daybreak Game Company LLC.
EQEmulator is not associated or affiliated in any way with Daybreak Game Company LLC.
Except where otherwise noted, this site is licensed under a Creative Commons License.
       
Powered by vBulletin®, Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Template by Bluepearl Design and vBulletin Templates - Ver3.3