PSO2SERVER/Server/Packets/Handlers/03-ServerHandler/03-16-CampshipTeleportDown.cs

29 lines
918 B
C#
Raw Normal View History

2024-09-16 15:55:13 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using PSO2SERVER.Models;
using PSO2SERVER.Zone;
namespace PSO2SERVER.Packets.Handlers
{
[PacketHandlerAttr(0x03, 0x16)]
class CampshipTeleportDown : PacketHandler
{
public override void HandlePacket(Client context, byte flags, byte[] data, uint position, uint size)
{
if (context.currentParty.currentQuest == null)
return;
// TODO: WTF terribad hax?
if (context.CurrentLocation.PosZ >= 20)
{
var instanceName = String.Format("{0}-{1}", context.currentParty.currentQuest.name, context.User.Nickname);
Map forest = ZoneManager.Instance.MapFromInstance("area1", instanceName);
forest.SpawnClient(context, new PSOLocation(0, 1, 0, -0, -37, 0.314f, 145.5f));
}
}
}
}