Thread: Custom Items
View Single Post
  #14  
Old 09-11-2009, 01:50 AM
AndMetal
Developer
 
Join Date: Mar 2007
Location: Ohio
Posts: 648
Default

Quote:
Originally Posted by Pandaman View Post
MySQL crashes whenever I try to see how many items there actually are in the PEQ database, which causes the problem of me creating custom items to be quite a task.

Could someone please respond with the # of items in the PEQ database so I can go off of that?
Try these queries instead:
Code:
mysql> SELECT SQL_NO_CACHE COUNT(id) FROM items;
+-----------+
| COUNT(id) |
+-----------+
|     76214 |
+-----------+
1 row in set (0.00 sec)
Code:
mysql> SELECT SQL_NO_CACHE MAX(id) FROM items;
+---------+
| MAX(id) |
+---------+
|  119462 |
+---------+
1 row in set (0.03 sec)
__________________
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