View Single Post
  #69  
Old 07-31-2010, 01:56 AM
Nagus69
Sarnak
 
Join Date: Jul 2003
Posts: 68
Default

It appears the Item Editor Portion of the PEQ Editor runs into an issue as it starts out with Item IDs around 119k. Anything beyond 120k will not be loaded from the EQEmu Server.

Can we tune in Items.php

Code:
function get_max_id () {
  global $mysql;

  $query = "SELECT max(id) AS iid FROM items"; 
  $result = $mysql->query_assoc($query);
  $newid = $result['iid'] + 1;
to take the next FREE Item ID, like Georges? Alternatively, is there a reason the Server won't load Item IDs > 120k?
__________________
Tyler - Design Slave ::: The Hidden Forest Server ::: Video ::: Discussion
Reply With Quote