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;
|
|
|
|
|
|
2024-11-27 18:05:53 +08:00
|
|
|
|
namespace PSO2SERVER.Protocol.Handlers
|
2024-09-16 15:55:13 +08:00
|
|
|
|
{
|
2024-12-02 11:27:14 +08:00
|
|
|
|
[PacketHandlerAttr(0x04, 0x13)]
|
2024-12-03 13:18:58 +08:00
|
|
|
|
public class _04_13_UNK : PacketHandler
|
2024-12-02 11:27:14 +08:00
|
|
|
|
{
|
|
|
|
|
public override void HandlePacket(Client context, byte flags, byte[] data, uint position, uint size)
|
|
|
|
|
{
|
|
|
|
|
if (context.currentParty.currentQuest == null)
|
|
|
|
|
return;
|
2024-09-16 15:55:13 +08:00
|
|
|
|
|
2024-12-02 11:27:14 +08:00
|
|
|
|
// TODO: WTF terribad hax?
|
|
|
|
|
if (context.CurrentLocation.PosZ >= 20)
|
|
|
|
|
{
|
|
|
|
|
var instanceName = String.Format("{0}-{1}", context.currentParty.currentQuest.name, context._account.Nickname);
|
2024-09-16 15:55:13 +08:00
|
|
|
|
|
2024-12-02 11:27:14 +08:00
|
|
|
|
Map forest = ZoneManager.Instance.MapFromInstance("area1", instanceName);
|
|
|
|
|
forest.SpawnClient(context, new PSOLocation(0, 1, 0, -0, -37, 0.314f, 145.5f));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2024-09-16 15:55:13 +08:00
|
|
|
|
}
|