Go Back   EQEmulator Home > EQEmulator Forums > Support > Support::Windows Servers

Support::Windows Servers Support forum for Windows EQEMu users.

 
 
Thread Tools Display Modes
Prev Previous Post   Next Post Next
  #8  
Old 08-20-2022, 02:26 AM
Huppy's Avatar
Huppy
Demi-God
 
Join Date: Oct 2010
Posts: 1,332
Default

Quote:
Originally Posted by ckempke View Post

Look up the old target_zone_id and the new one, then:

update 'peq.zone_points' set 'client_version_mask'=<all bits set> where target_zone_id=<new>
update 'peq.zone_points' set 'client_version_mask'=0 where target_zone_id=<old>

get rid of any offending script files? That pretty much the plan?
Forgot to mention something. client_version_mask can be set to 4294967295 for all zone_points and doors. That is the bitmask that allows all client versions.

Code:
UPDATE zone_points SET client_version_mask = 4294967295;
UPDATE doors SET client_version_mask = 4294967295;
Also, some of the scripts in the newer versions of zones (in server quests folder), in the zone/player.pl (or player.lua) there is an enter_zone event that will kick you out to the older version.
Example: in quests/commonlands/player.lua as soon as one zones in the script sends you to ecommons. You can edit/delete/disable that crap if you don't want it.

Code:
function event_enter_zone(e)
  local client = eq.get_entity_list():GetClientByID(e.self:GetID());
  client:MovePC(22, -144, -1543, 2, 244); -- Zone: ecommons
end
Many things were put in place to somewhat cater to both older clients, like Titanium and newer clients, like Rof2. This is why you will see 2 different entries with the same zone name (like nektulos). One is for the older clients and one for the newer.

In another scenario, the Guild Lobby and Guild Hall. If a Titanium client and RoF2 client were to zone in at the same time, they would both be in a different version of the zone and wouldn't see each other. The newer version of the Lobby is instanced. Some things, the Emu/PEQ teams can't do anything about, because things are hard coded into the client. So if everyone was using the same client, it would make things a lot easier.

There are many zones in further/newer expansions (like HoT), that are in the database, and if your client has the zone files, you can #zone into them. But content is not completed, because the project hasn't got that far to work on it. (They are working on DoN right now.)
Reply With Quote
 


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 01:10 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