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 01-10-2006, 05:10 PM
kouhei
Hill Giant
 
Join Date: Mar 2005
Location: japan
Posts: 171
Question update

when I place the item into the container i get.
Error in database saveworldcontainer #1136 coloum does not match value count at row 1.
I tried to use to two you pasted in the thread and it said that both would make a nodrop not usuable by you and it will not let you push the insert button. Now when I replace the helm with the warrior test BP and the same aug. It will allow you to push the insert button then it gives this error Unkown Opcode: 0x02e5 size:8 client:test
0: E8 03 00 00 FF FF FF FF

invalid size of closecontainer epected 24 got 60.
__________________
http://www.hdrjapan.com/



Take a look you know you want to click on this site.
Reply With Quote
  #2  
Old 01-11-2006, 05:21 PM
Doodman's Avatar
Doodman
Developer
 
Join Date: Aug 2003
Posts: 246
Default

Thanks for the info, I'll look into it.

The saveworldcontainer issue, looks like your object_contents table might be missing the augslot entries:
Code:
mysql> desc object_contents;
+----------+-----------------------+------+-----+---------------------+-------+
| Field    | Type                  | Null | Key | Default             | Extra |
+----------+-----------------------+------+-----+---------------------+-------+
| zoneid   | int(11) unsigned      |      |     | 0                   |       |
| parentid | int(11) unsigned      |      | PRI | 0                   |       |
| bagidx   | int(11) unsigned      |      | PRI | 0                   |       |
| itemid   | int(11) unsigned      |      |     | 0                   |       |
| charges  | tinyint(3)            |      |     | 0                   |       |
| droptime | datetime              |      |     | 0000-00-00 00:00:00 |       |
| augslot1 | mediumint(7) unsigned |      |     | 0                   |       |
| augslot2 | mediumint(7) unsigned |      |     | 0                   |       |
| augslot3 | mediumint(7) unsigned |      |     | 0                   |       |
| augslot4 | mediumint(7) unsigned |      |     | 0                   |       |
| augslot5 | mediumint(7) unsigned |      |     | 0                   |       |
+----------+-----------------------+------+-----+---------------------+-------+
On the unknown opcode, looks like you don't have the right opcode for OP_AugmentItem, try setting it to 0x02e5 and try it again.

As far as the wrong size on close container, you'd have to look at the packet and see why it's off.

You might also consider moving to a more recent version, like 0.6.3 or 0.6.4.
Reply With Quote
  #3  
Old 01-11-2006, 06:52 PM
kouhei
Hill Giant
 
Join Date: Mar 2005
Location: japan
Posts: 171
Default look

I was plan on moving to a new version was waiting for it to be a little more stable. I believe that almost looks like my object_contents. I look at when I get home.
__________________
http://www.hdrjapan.com/



Take a look you know you want to click on this site.
Reply With Quote
  #4  
Old 01-12-2006, 11:11 AM
kouhei
Hill Giant
 
Join Date: Mar 2005
Location: japan
Posts: 171
Default

Doodman, I tried setting OP_AugmentItem, to 0x02e5 but no change in error. I even tried another OP_code forgot name but was something I thought was close to the problem. But it seems to give that opcode as soon as you click the yes button after you click insert button. Any other suggestions? Also my objects_contents is the same as below.




Quote:
Originally Posted by Doodman
Thanks for the info, I'll look into it.

The saveworldcontainer issue, looks like your object_contents table might be missing the augslot entries:
Code:
mysql> desc object_contents;
+----------+-----------------------+------+-----+---------------------+-------+
| Field    | Type                  | Null | Key | Default             | Extra |
+----------+-----------------------+------+-----+---------------------+-------+
| zoneid   | int(11) unsigned      |      |     | 0                   |       |
| parentid | int(11) unsigned      |      | PRI | 0                   |       |
| bagidx   | int(11) unsigned      |      | PRI | 0                   |       |
| itemid   | int(11) unsigned      |      |     | 0                   |       |
| charges  | tinyint(3)            |      |     | 0                   |       |
| droptime | datetime              |      |     | 0000-00-00 00:00:00 |       |
| augslot1 | mediumint(7) unsigned |      |     | 0                   |       |
| augslot2 | mediumint(7) unsigned |      |     | 0                   |       |
| augslot3 | mediumint(7) unsigned |      |     | 0                   |       |
| augslot4 | mediumint(7) unsigned |      |     | 0                   |       |
| augslot5 | mediumint(7) unsigned |      |     | 0                   |       |
+----------+-----------------------+------+-----+---------------------+-------+
On the unknown opcode, looks like you don't have the right opcode for OP_AugmentItem, try setting it to 0x02e5 and try it again.

As far as the wrong size on close container, you'd have to look at the packet and see why it's off.

You might also consider moving to a more recent version, like 0.6.3 or 0.6.4.
__________________
http://www.hdrjapan.com/



Take a look you know you want to click on this site.
Reply With Quote
  #5  
Old 01-12-2006, 08:41 PM
kouhei
Hill Giant
 
Join Date: Mar 2005
Location: japan
Posts: 171
Question very intresting doodman

here is a sql I did up. I was at least able to remove that error sayingat row #1 in the db.

# MySQL-Front 3.2 (Build 6.6)

# Host: localhost Database: dark
# ------------------------------------------------------
# Server version 4.0.24-nt

#
# Table structure for table object_contents
#

DROP TABLE IF EXISTS `object_contents`;
CREATE TABLE `object_contents` (
`zoneid` int(11) unsigned NOT NULL default '0',
`parentid` int(11) unsigned NOT NULL default '0',
`bagidx` int(11) unsigned NOT NULL default '0',
`itemid` int(11) unsigned NOT NULL default '0',
`charges` tinyint(3) NOT NULL default '0',
`droptime` datetime NOT NULL default '0000-00-00 00:00:00',
PRIMARY KEY (`zoneid`,`parentid`)
) TYPE=MyISAM;

#
# Dumping data for table object_contents
#

INSERT INTO `object_contents` (`zoneid`,`parentid`,`bagidx`,`itemid`,`charges`,` droptime`) VALUES (152,5001,1,38010,1,'2006-01-13 17:36:31');


I wonder if augslot1 is not the coloum.
will keep testing new ideas. If you know anything let me know I hope this helps you out too.
__________________
http://www.hdrjapan.com/



Take a look you know you want to click on this site.
Reply With Quote
  #6  
Old 07-08-2006, 07:00 PM
soulshot
Hill Giant
 
Join Date: Jun 2006
Posts: 142
Default

Sorry to bump an old thread but wanted to share an entry for a fountain container in the nexus.

INSERT INTO object (id, zoneid, xpos, ypos, zpos, heading, itemid, charges, objectname, type, icon) VALUES (5002, 152, '30.4', '-30', '-29.93', '140', 17909, 0, 'IT10714', 53, 1115);

Ok here is where I am stumped I have read alot of the older augment threads and still at the same situation. For example I can place a wrist item with slot 7 open and a slot 7 augment into the fountain. The insert button pops up and is ready to go. So I click insert and... the items remain the same - no combine. HELP! =) I see some servers saying thier augments are working so I suppose there is a fix out there if someone is willing to share? Edit - I have also tried other slots but none of them work as of yet.

Last edited by soulshot; 07-09-2006 at 03:13 AM..
Reply With Quote
Reply

Thread Tools
Display Modes

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 10:25 PM.


 

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 - 2025, Jelsoft Enterprises Ltd.
Template by Bluepearl Design and vBulletin Templates - Ver3.3