Go Back   EQEmulator Home > EQEmulator Forums > Development > Development::Bug Reports

Development::Bug Reports Post detailed bug reports and what you would like to see next in the emu here.

Reply
 
Thread Tools Display Modes
  #1  
Old 06-03-2010, 04:10 AM
Derision
Developer
 
Join Date: Feb 2004
Location: UK
Posts: 1,540
Default

I don't know what the problem is with your objects, but with regards to the rules messages, the defaults for RULES__ERROR and RULES__CHANGE was changed
to disabled in Rev1498. The rules will still be loading, but you won't see the messages.

If you want the messages back, add:
Code:
RULES__ERROR=on
RULES__CHANGE=on
to log.ini in your base server folder.
Reply With Quote
  #2  
Old 06-03-2010, 04:42 AM
trevius's Avatar
trevius
Developer
 
Join Date: Aug 2006
Location: USA
Posts: 5,946
Default

I believe it is because KLS set rules to load on a per-zone-basis now. So, if you use ruleset 1 as your default ruleset, you need to update your zones table to set them all to use ruleset 1, as I believe the SQL sets them all to ruleset 0 by default from the SQL.
__________________
Trevazar/Trevius Owner of: Storm Haven
Everquest Emulator FAQ (Frequently Asked Questions) - Read It!
Reply With Quote
  #3  
Old 06-03-2010, 02:14 PM
Akkadius's Avatar
Akkadius
Administrator
 
Join Date: Feb 2009
Location: MN
Posts: 2,072
Default

Alright yeah, I changed my rules_set to 1 in all of my zones, but I am still a sitting duck with no objects.

I'm just going to be using 1497 until I can figure out what the problem is.
Reply With Quote
  #4  
Old 06-03-2010, 07:26 PM
KLS
Administrator
 
Join Date: Sep 2006
Posts: 1,348
Default

Code:
mysql> desc doors;
+---------------------+----------------------+------+-----+------------+----------------+
| Field               | Type                 | Null | Key | Default    | Extra          |
+---------------------+----------------------+------+-----+------------+----------------+
| id                  | int(11)              | NO   | PRI | NULL       | auto_increment |
| doorid              | smallint(4)          | NO   |     | 0          |                |
| zone                | varchar(16)          | NO   | MUL |            |                |
| version             | smallint(5) unsigned | NO   |     | 0          |                |
| name                | varchar(32)          | NO   |     |            |                |
| pos_y               | float                | NO   |     | 0          |                |
| pos_x               | float                | NO   |     | 0          |                |
| pos_z               | float                | NO   |     | 0          |                |
| heading             | float                | NO   |     | 0          |                |
| opentype            | smallint(4)          | NO   |     | 0          |                |
| guild               | smallint(4)          | NO   |     | 0          |                |
| lockpick            | smallint(4)          | NO   |     | 0          |                |
| keyitem             | int(11)              | NO   |     | 0          |                |
| nokeyring           | tinyint(3) unsigned  | NO   |     | 0          |                |
| triggerdoor         | smallint(4)          | NO   |     | 0          |                |
| triggertype         | smallint(4)          | NO   |     | 0          |                |
| doorisopen          | smallint(4)          | NO   |     | 0          |                |
| door_param          | int(4)               | NO   |     | 0          |                |
| dest_zone           | varchar(16)          | YES  |     | NONE       |                |
| dest_instance       | int(10) unsigned     | NO   |     | 0          |                |
| dest_x              | float                | YES  |     | 0          |                |
| dest_y              | float                | YES  |     | 0          |                |
| dest_z              | float                | YES  |     | 0          |                |
| dest_heading        | float                | YES  |     | 0          |                |
| invert_state        | int(11)              | YES  |     | 0          |                |
| incline             | int(11)              | YES  |     | 0          |                |
| size                | smallint(5) unsigned | NO   |     | 100        |                |
| buffer              | float                | YES  |     | 0          |                |
| client_version_mask | int(10) unsigned     | NO   |     | 4294967295 |                |
| is_ldon_door        | smallint(6)          | NO   |     | 0          |                |
+---------------------+----------------------+------+-----+------------+----------------+
30 rows in set (0.01 sec)
Should look like that, also client_version_mask if set incorrectly will keep them from appearing correctly.
Reply With Quote
  #5  
Old 06-03-2010, 07:37 PM
Akkadius's Avatar
Akkadius
Administrator
 
Join Date: Feb 2009
Location: MN
Posts: 2,072
Default

Quote:
Originally Posted by KLS View Post
Code:
mysql> desc doors;
+---------------------+----------------------+------+-----+------------+----------------+
| Field               | Type                 | Null | Key | Default    | Extra          |
+---------------------+----------------------+------+-----+------------+----------------+
| id                  | int(11)              | NO   | PRI | NULL       | auto_increment |
| doorid              | smallint(4)          | NO   |     | 0          |                |
| zone                | varchar(16)          | NO   | MUL |            |                |
| version             | smallint(5) unsigned | NO   |     | 0          |                |
| name                | varchar(32)          | NO   |     |            |                |
| pos_y               | float                | NO   |     | 0          |                |
| pos_x               | float                | NO   |     | 0          |                |
| pos_z               | float                | NO   |     | 0          |                |
| heading             | float                | NO   |     | 0          |                |
| opentype            | smallint(4)          | NO   |     | 0          |                |
| guild               | smallint(4)          | NO   |     | 0          |                |
| lockpick            | smallint(4)          | NO   |     | 0          |                |
| keyitem             | int(11)              | NO   |     | 0          |                |
| nokeyring           | tinyint(3) unsigned  | NO   |     | 0          |                |
| triggerdoor         | smallint(4)          | NO   |     | 0          |                |
| triggertype         | smallint(4)          | NO   |     | 0          |                |
| doorisopen          | smallint(4)          | NO   |     | 0          |                |
| door_param          | int(4)               | NO   |     | 0          |                |
| dest_zone           | varchar(16)          | YES  |     | NONE       |                |
| dest_instance       | int(10) unsigned     | NO   |     | 0          |                |
| dest_x              | float                | YES  |     | 0          |                |
| dest_y              | float                | YES  |     | 0          |                |
| dest_z              | float                | YES  |     | 0          |                |
| dest_heading        | float                | YES  |     | 0          |                |
| invert_state        | int(11)              | YES  |     | 0          |                |
| incline             | int(11)              | YES  |     | 0          |                |
| size                | smallint(5) unsigned | NO   |     | 100        |                |
| buffer              | float                | YES  |     | 0          |                |
| client_version_mask | int(10) unsigned     | NO   |     | 4294967295 |                |
| is_ldon_door        | smallint(6)          | NO   |     | 0          |                |
+---------------------+----------------------+------+-----+------------+----------------+
30 rows in set (0.01 sec)
Should look like that, also client_version_mask if set incorrectly will keep them from appearing correctly.
They aren't doors, it's the objects having the issues. That igloo is an object if that matters.
Reply With Quote
  #6  
Old 06-03-2010, 10:38 PM
KLS
Administrator
 
Join Date: Sep 2006
Posts: 1,348
Default

Usually objects are made via doors, I haven't changed anything about objects lately. Though derision did, you could try taking out his change in that revision set and see if it makes any difference.
Reply With Quote
  #7  
Old 06-04-2010, 06:41 AM
KLS
Administrator
 
Join Date: Sep 2006
Posts: 1,348
Default

Also you weren't on irc when I went to reply but:

If you could go ahead and dump a few objects that are having issues as well as say which client you're having trouble on.
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 12:32 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 - 2025, Jelsoft Enterprises Ltd.
Template by Bluepearl Design and vBulletin Templates - Ver3.3