Log in

View Full Version : Aloow access to zones without key


Soadin
01-18-2020, 12:42 PM
Hi,

I want that all chars don't need access to e.g. Veeshan's Peak.
I have a PEQ database.

How can I do that?
Any SQL or tip would help :)

Regards
Soadin

woton
01-18-2020, 07:56 PM
http://www.eqemulator.org/forums/showthread.php?t=42640

This is help I received on gaining access to Anguish. Hope this helps you.

Soadin
01-18-2020, 08:31 PM
http://www.eqemulator.org/forums/showthread.php?t=42640

This is help I received on gaining access to Anguish. Hope this helps you.

Thx Woton.
I fixed it now by putting a keyring entry and a Zone_flags entry for all my characters for Veeshan's Peak.

But it seems I need to check the scripts to Change it for each new character.

Thx again

Huppy
01-18-2020, 10:09 PM
Running these sql queries can be helpful for all zones:

UPDATE zone SET min_status=0;
UPDATE zone SET min_level=0;
UPDATE zone SET flag_needed='';

Soadin
01-19-2020, 11:37 AM
Running these sql queries can be helpful for all zones:

UPDATE zone SET min_status=0;
UPDATE zone SET min_level=0;
UPDATE zone SET flag_needed='';

ah good Point

Thx Huppy