Log in

View Full Version : Static Zones


Kayot
04-10-2007, 03:54 AM
How do I make a zone static?

The Wiki is less than vague and earlier post were never answered or were about batch files.

Dymerius
04-10-2007, 05:53 AM
From your command prompt (Run -> 'cmd'), navigate to your EQEmu directory where your zone.exe is located.

Type 'start zone.exe zoneshortname' (ie, start zone.exe qeytoqrg to boot Qeynos Hills)

And, of course, you can create a batch file to automate the boot up of certain static zones if you like.

To create a batch file, create a new text document inside the Emu directory and edit it to read something like this:

start world.exe
start zone.exe qeynos
start zone.exe freeporte
start zone.exe cshome
start zone.exe
start zone.exe

Then change the text files extension from .txt to .bat.

This boots up the world, 3 static and 2 dynamic zones.

Of course, you will boot up whichever zones you choose from here. As stated, that particular batch file will boot up an instance of World, as well. This can be useful if you want to boot up the server and all of the zones with one click.

Kayot
04-10-2007, 06:56 AM
Is there a way to put the new zone windows in silent mode? It keeps updating with zone coords.

StorkFG
04-10-2007, 08:12 AM
You could edit the database.

If you examine the table "launcher_zones" you will find 3 fields, launcher, zone, and port. I'm not sure what else could be added for the launcher filed, but "zones" works well. The example below would add a static zone for Freeport East on port 7001.

INSERT into launcher_zones VALUES ('zones','freporte',7001)