View Single Post
  #2  
Old 03-15-2019, 09:54 AM
Sturm
Hill Giant
 
Join Date: Dec 2015
Posts: 116
Default

1. You'll need to edit your "zone" table and either set the min_level to higher than your players can obtain, or the min_status to 80 or anything really that's higher than the base status given to players. 80 is Guide level access.

2. This is all handled in the "zone_points" table.

3. There's alot of different ways to go about this depending on your situation but here are a couple examples:

Code:
quest::gmmove(x, y, z);
quest::movegrp(zone_id, x, y, z);
quest::movepc(zone_id, x, y, z, heading);
quest::MovePCInstance(zone_id, instance_id, x, y, z);
quest::moveto(x, y, z, heading, saveguardspot);
quest::Zone(zone);
$client->MovePC(zoneID, x, y, z, heading);
$client->MovePCInstance(zoneID, instanceID, x, y, z, heading);
Bookmark this page: https://github.com/EQEmu/Server/wiki/Perl-API
You're going to reference the stuff on there alot. haha
Happy Dev'ing!
__________________
Developer of the Imperium Server.
https://imperium-eq.com/

Last edited by Sturm; 03-15-2019 at 09:58 AM.. Reason: Added link to Github resource.
Reply With Quote