添加项目文件。
This commit is contained in:
parent
4fbe24ca84
commit
75fd28d9b7
50
PSO2SERVER.sln
Normal file
50
PSO2SERVER.sln
Normal file
@ -0,0 +1,50 @@
|
||||
|
||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||
# Visual Studio Version 17
|
||||
VisualStudioVersion = 17.9.34728.123
|
||||
MinimumVisualStudioVersion = 10.0.40219.1
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PSO2SERVER", "PSO2SERVER\PSO2SERVER.csproj", "{E54FC88C-B212-4F47-B2F1-927D39EE3DBA}"
|
||||
EndProject
|
||||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{18D5BEEA-6AF2-411C-BBCE-508B066FB339}"
|
||||
ProjectSection(SolutionItems) = preProject
|
||||
.gitignore = .gitignore
|
||||
README.md = README.md
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ServerTest", "ServerTest\ServerTest.csproj", "{024D84F3-734A-421E-BDA9-1C069F9FFD90}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Any CPU = Debug|Any CPU
|
||||
Debug|x86 = Debug|x86
|
||||
Release|Any CPU = Release|Any CPU
|
||||
Release|x86 = Release|x86
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{E54FC88C-B212-4F47-B2F1-927D39EE3DBA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{E54FC88C-B212-4F47-B2F1-927D39EE3DBA}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{E54FC88C-B212-4F47-B2F1-927D39EE3DBA}.Debug|x86.ActiveCfg = Debug|x86
|
||||
{E54FC88C-B212-4F47-B2F1-927D39EE3DBA}.Debug|x86.Build.0 = Debug|x86
|
||||
{E54FC88C-B212-4F47-B2F1-927D39EE3DBA}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{E54FC88C-B212-4F47-B2F1-927D39EE3DBA}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{E54FC88C-B212-4F47-B2F1-927D39EE3DBA}.Release|x86.ActiveCfg = Release|x86
|
||||
{E54FC88C-B212-4F47-B2F1-927D39EE3DBA}.Release|x86.Build.0 = Release|x86
|
||||
{024D84F3-734A-421E-BDA9-1C069F9FFD90}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{024D84F3-734A-421E-BDA9-1C069F9FFD90}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{024D84F3-734A-421E-BDA9-1C069F9FFD90}.Debug|x86.ActiveCfg = Debug|Any CPU
|
||||
{024D84F3-734A-421E-BDA9-1C069F9FFD90}.Debug|x86.Build.0 = Debug|Any CPU
|
||||
{024D84F3-734A-421E-BDA9-1C069F9FFD90}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{024D84F3-734A-421E-BDA9-1C069F9FFD90}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{024D84F3-734A-421E-BDA9-1C069F9FFD90}.Release|x86.ActiveCfg = Release|Any CPU
|
||||
{024D84F3-734A-421E-BDA9-1C069F9FFD90}.Release|x86.Build.0 = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
EndGlobalSection
|
||||
GlobalSection(ExtensibilityGlobals) = postSolution
|
||||
SolutionGuid = {CAC7CBA3-A6C8-4BF1-8316-174820A3CE26}
|
||||
EndGlobalSection
|
||||
GlobalSection(MonoDevelopProperties) = preSolution
|
||||
version = 0.1.0-pre
|
||||
EndGlobalSection
|
||||
EndGlobal
|
254
PSO2SERVER/Client.cs
Normal file
254
PSO2SERVER/Client.cs
Normal file
@ -0,0 +1,254 @@
|
||||
using System;
|
||||
using System.IO;
|
||||
using System.Security.Cryptography;
|
||||
using PolarisServer.Database;
|
||||
using PolarisServer.Models;
|
||||
using PolarisServer.Network;
|
||||
using PolarisServer.Packets;
|
||||
using PolarisServer.Packets.Handlers;
|
||||
using PolarisServer.Zone;
|
||||
|
||||
namespace PolarisServer
|
||||
{
|
||||
public class Client
|
||||
{
|
||||
internal static RSACryptoServiceProvider RsaCsp = null;
|
||||
private readonly byte[] _readBuffer;
|
||||
private readonly Server _server;
|
||||
internal ICryptoTransform InputArc4, OutputArc4;
|
||||
private int _packetId;
|
||||
private uint _readBufferSize;
|
||||
|
||||
public Client(Server server, SocketClient socket)
|
||||
{
|
||||
IsClosed = false;
|
||||
_server = server;
|
||||
Socket = socket;
|
||||
|
||||
socket.DataReceived += HandleDataReceived;
|
||||
socket.ConnectionLost += HandleConnectionLost;
|
||||
|
||||
_readBuffer = new byte[1024 * 64];
|
||||
_readBufferSize = 0;
|
||||
|
||||
InputArc4 = null;
|
||||
OutputArc4 = null;
|
||||
|
||||
var welcome = new PacketWriter();
|
||||
welcome.Write((ushort)3);
|
||||
welcome.Write((ushort)201);
|
||||
welcome.Write((ushort)0);
|
||||
welcome.Write((ushort)0);
|
||||
SendPacket(0x03, 0x08, 0, welcome.ToArray());
|
||||
}
|
||||
|
||||
public bool IsClosed { get; private set; }
|
||||
public SocketClient Socket { get; private set; }
|
||||
// Game properties, TODO Consider moving these somewhere else
|
||||
public Player User { get; set; }
|
||||
public Character Character { get; set; }
|
||||
//public Zone.Zone CurrentZone { get; set; }
|
||||
public Map CurrentZone;
|
||||
public uint MovementTimestamp { get; internal set; }
|
||||
public Party.Party currentParty;
|
||||
|
||||
public PSOLocation CurrentLocation;
|
||||
public PSOLocation LastLocation;
|
||||
|
||||
private void HandleDataReceived(byte[] data, int size)
|
||||
{
|
||||
Logger.Write("[<--] 接收到 {0} 字节", size);
|
||||
if ((_readBufferSize + size) > _readBuffer.Length)
|
||||
{
|
||||
// Buffer overrun
|
||||
// TODO: Drop the connection when this occurs?
|
||||
return;
|
||||
}
|
||||
|
||||
Array.Copy(data, 0, _readBuffer, _readBufferSize, size);
|
||||
|
||||
InputArc4?.TransformBlock(_readBuffer, (int)_readBufferSize, size, _readBuffer, (int)_readBufferSize);
|
||||
|
||||
_readBufferSize += (uint)size;
|
||||
|
||||
// Process ALL the packets
|
||||
uint position = 0;
|
||||
|
||||
while ((position + 8) <= _readBufferSize)
|
||||
{
|
||||
var packetSize =
|
||||
_readBuffer[position] |
|
||||
((uint)_readBuffer[position + 1] << 8) |
|
||||
((uint)_readBuffer[position + 2] << 16) |
|
||||
((uint)_readBuffer[position + 3] << 24);
|
||||
|
||||
// Minimum size, just to avoid possible infinite loops etc
|
||||
if (packetSize < 8)
|
||||
packetSize = 8;
|
||||
|
||||
// If we don't have enough data for this one...
|
||||
if (packetSize > 0x1000000 || (packetSize + position) > _readBufferSize)
|
||||
break;
|
||||
|
||||
// Now handle this one
|
||||
HandlePacket(
|
||||
_readBuffer[position + 4], _readBuffer[position + 5],
|
||||
_readBuffer[position + 6], _readBuffer[position + 7],
|
||||
_readBuffer, position + 8, packetSize - 8);
|
||||
|
||||
// If the connection was closed, we have no more business here
|
||||
if (IsClosed)
|
||||
break;
|
||||
|
||||
position += packetSize;
|
||||
}
|
||||
|
||||
// Wherever 'position' is up to, is what was successfully processed
|
||||
if (position > 0)
|
||||
{
|
||||
if (position >= _readBufferSize)
|
||||
_readBufferSize = 0;
|
||||
else
|
||||
{
|
||||
Array.Copy(_readBuffer, position, _readBuffer, 0, _readBufferSize - position);
|
||||
_readBufferSize -= position;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private void HandleConnectionLost()
|
||||
{
|
||||
// :(
|
||||
Logger.Write("[BYE] 连接丢失. :(");
|
||||
CurrentZone?.RemoveClient(this);
|
||||
IsClosed = true;
|
||||
}
|
||||
|
||||
public void SendPacket(byte[] blob, string name = null)
|
||||
{
|
||||
var typeA = blob[4];
|
||||
var typeB = blob[5];
|
||||
var flags1 = blob[6];
|
||||
var flags2 = blob[7];
|
||||
string sendName;
|
||||
|
||||
if (name != null)
|
||||
{
|
||||
sendName = $"{name} ({typeA:X}-{typeB:X})";
|
||||
}
|
||||
else
|
||||
{
|
||||
sendName = $"{typeA:X}-{typeB:X}";
|
||||
}
|
||||
|
||||
Logger.Write($"[<--] 数据 {sendName} (Flags {(PacketFlags)flags1}) ({blob.Length} 字节)");
|
||||
LogPacket(false, typeA, typeB, flags1, flags2, blob);
|
||||
|
||||
if (Logger.VerbosePackets)
|
||||
{
|
||||
var info = string.Format("[<--] {0:X}-{1:X} 数据包:", typeA, typeB);
|
||||
Logger.WriteHex(info, blob);
|
||||
}
|
||||
|
||||
OutputArc4?.TransformBlock(blob, 0, blob.Length, blob, 0);
|
||||
|
||||
try
|
||||
{
|
||||
Socket.Write(blob);
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
Logger.WriteException("发送数据包错误", ex);
|
||||
}
|
||||
}
|
||||
|
||||
public void SendPacket(byte typeA, byte typeB, byte flags, byte[] data, string name = null)
|
||||
{
|
||||
var packet = new byte[8 + data.Length];
|
||||
|
||||
// TODO: Use BinaryWriter here maybe?
|
||||
var dataLen = (uint)data.Length + 8;
|
||||
packet[0] = (byte)(dataLen & 0xFF);
|
||||
packet[1] = (byte)((dataLen >> 8) & 0xFF);
|
||||
packet[2] = (byte)((dataLen >> 16) & 0xFF);
|
||||
packet[3] = (byte)((dataLen >> 24) & 0xFF);
|
||||
packet[4] = typeA;
|
||||
packet[5] = typeB;
|
||||
packet[6] = flags;
|
||||
packet[7] = 0;
|
||||
|
||||
Array.Copy(data, 0, packet, 8, data.Length);
|
||||
|
||||
SendPacket(packet, name);
|
||||
}
|
||||
|
||||
public void SendPacket(Packet packet)
|
||||
{
|
||||
var h = packet.GetHeader();
|
||||
SendPacket(h.Type, h.Subtype, h.Flags1, packet.Build(), packet.GetType().Name);
|
||||
}
|
||||
|
||||
private void HandlePacket(byte typeA, byte typeB, byte flags1, byte flags2, byte[] data, uint position,
|
||||
uint size)
|
||||
{
|
||||
var handler = PacketHandlers.GetHandlerFor(typeA, typeB);
|
||||
string packetName;
|
||||
if (handler != null)
|
||||
{
|
||||
packetName = $"{handler.GetType().Name} ({typeA:X}-{typeB:X})";
|
||||
}
|
||||
else
|
||||
{
|
||||
packetName = $"{typeA:X}-{typeB:X}";
|
||||
}
|
||||
Logger.Write($"[-->] 数据包 {packetName} (Flags {(PacketFlags)flags1}) ({size + 8} 字节)");
|
||||
if (Logger.VerbosePackets && size > 0) // TODO: This is trimming too far?
|
||||
{
|
||||
var dataTrimmed = new byte[size];
|
||||
for (var i = 0; i < size; i++)
|
||||
dataTrimmed[i] = data[i];
|
||||
|
||||
var info = string.Format("[-->] {0:X}-{1:X} 数据:", typeA, typeB);
|
||||
Logger.WriteHex(info, dataTrimmed);
|
||||
}
|
||||
|
||||
var packet = new byte[size];
|
||||
Array.Copy(data, position, packet, 0, size);
|
||||
LogPacket(true, typeA, typeB, flags1, flags2, packet);
|
||||
|
||||
if (handler != null)
|
||||
handler.HandlePacket(this, flags1, packet, 0, size);
|
||||
else
|
||||
{
|
||||
Logger.WriteWarning("[!!!] 未解析数据包 {0:X}-{1:X} - (Flags {2}) ({3} 字节)", typeA,
|
||||
typeB, (PacketFlags)flags1, size);
|
||||
}
|
||||
|
||||
// throw new NotImplementedException();
|
||||
}
|
||||
|
||||
private void LogPacket(bool fromClient, byte typeA, byte typeB, byte flags1, byte flags2, byte[] packet)
|
||||
{
|
||||
// Check for and create packets directory if it doesn't exist
|
||||
var packetPath = "packets/" + _server.StartTime.ToShortDateString().Replace('/', '-') + "-" +
|
||||
_server.StartTime.ToShortTimeString().Replace('/', '-').Replace(':', '-');
|
||||
if (!Directory.Exists(packetPath))
|
||||
Directory.CreateDirectory(packetPath);
|
||||
|
||||
var filename = string.Format("{0}/{1}.{2:X}.{3:X}.{4}.bin", packetPath, _packetId++, typeA, typeB,
|
||||
fromClient ? "C" : "S");
|
||||
|
||||
using (var stream = File.OpenWrite(filename))
|
||||
{
|
||||
if (fromClient)
|
||||
{
|
||||
stream.WriteByte(typeA);
|
||||
stream.WriteByte(typeB);
|
||||
stream.WriteByte(flags1);
|
||||
stream.WriteByte(flags2);
|
||||
}
|
||||
stream.Write(packet, 0, packet.Length);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
230
PSO2SERVER/Config.cs
Normal file
230
PSO2SERVER/Config.cs
Normal file
@ -0,0 +1,230 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using System.Net;
|
||||
using System.Reflection;
|
||||
|
||||
namespace PolarisServer
|
||||
{
|
||||
public class ConfigComment : Attribute
|
||||
{
|
||||
public string Comment;
|
||||
|
||||
public ConfigComment(string comment)
|
||||
{
|
||||
Comment = comment;
|
||||
}
|
||||
}
|
||||
|
||||
public class Config
|
||||
{
|
||||
private readonly string _configFile = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location) +
|
||||
Path.DirectorySeparatorChar + "PolarisServer.cfg";
|
||||
|
||||
// Settings
|
||||
[ConfigComment("The address to bind to")]
|
||||
public IPAddress BindAddress = IPAddress.Loopback;
|
||||
|
||||
[ConfigComment("The prefix to check for to send a command from the client to the server")]
|
||||
public string CommandPrefix = "|";
|
||||
|
||||
[ConfigComment("Address of the database server")]
|
||||
public string DatabaseAddress = "127.0.0.1";
|
||||
|
||||
[ConfigComment("Port of the database server")]
|
||||
public string DatabasePort = "3306";
|
||||
|
||||
[ConfigComment("Name of the database which contains the Polaris data")]
|
||||
public string DatabaseName = "pso2server";
|
||||
|
||||
[ConfigComment("Username for logging into the database server")]
|
||||
public string DatabaseUsername = "root";
|
||||
|
||||
[ConfigComment("Password for logging into the database server")]
|
||||
public string DatabasePassword = "root";
|
||||
|
||||
[ConfigComment("Message of the day to display to users upon login.")]
|
||||
public string motd = "Wellcom PSO2SERVER";
|
||||
|
||||
[ConfigComment("Time in seconds to perform a ping of all connected clients to the server")]
|
||||
public double PingTime = 60;
|
||||
|
||||
[ConfigComment("Enable foreground colors for console text (Unstable on linux)")]
|
||||
public bool UseConsoleColors = true;
|
||||
|
||||
[ConfigComment("Log the data sent and recieved from packets")]
|
||||
public bool VerbosePackets = false;
|
||||
|
||||
public void Load()
|
||||
{
|
||||
try
|
||||
{
|
||||
// No config exists, save a default one
|
||||
if (!File.Exists(_configFile))
|
||||
{
|
||||
Save(true);
|
||||
return;
|
||||
}
|
||||
|
||||
var fields = GetType().GetFields();
|
||||
var lines = File.ReadAllLines(_configFile);
|
||||
|
||||
foreach (var option in lines)
|
||||
{
|
||||
// Blank Line
|
||||
if (option.Length == 0)
|
||||
continue;
|
||||
|
||||
// Comment
|
||||
if (option.StartsWith("//"))
|
||||
continue;
|
||||
|
||||
var split = option.Split('=');
|
||||
|
||||
// Trim trailing/leading space
|
||||
for (var i = 0; i < split.Length; i++)
|
||||
split[i] = split[i].Trim();
|
||||
|
||||
// Check length
|
||||
if (split.Length != 2)
|
||||
{
|
||||
Logger.WriteWarning("[CFG] 发现分割大小不正确的配置行");
|
||||
continue;
|
||||
}
|
||||
|
||||
var field = fields.FirstOrDefault(o => o.Name == split[0]);
|
||||
if (field != null)
|
||||
ParseField(field, split[1]);
|
||||
}
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
Logger.WriteException("[CFG] 设置文件载入错误", ex);
|
||||
}
|
||||
|
||||
// Display all settings
|
||||
DisplaySettings();
|
||||
|
||||
// Some settings require manual refreshing
|
||||
SettingsChanged();
|
||||
|
||||
Logger.WriteInternal("[CFG] 设置文件载入完成");
|
||||
}
|
||||
|
||||
private void DisplaySettings()
|
||||
{
|
||||
var fields = GetType().GetFields();
|
||||
foreach (var field in fields)
|
||||
{
|
||||
var value = field.GetValue(this);
|
||||
Logger.WriteInternal($"[CFG] 设置项 {field.Name} = {value}");
|
||||
}
|
||||
}
|
||||
|
||||
public void Save(bool silent = false)
|
||||
{
|
||||
try
|
||||
{
|
||||
var data = new List<string>();
|
||||
var fields = GetType().GetFields();
|
||||
|
||||
foreach (var field in fields)
|
||||
SaveField(field, data);
|
||||
|
||||
File.WriteAllLines(_configFile, data);
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
Logger.WriteException("保存设置错误", ex);
|
||||
}
|
||||
|
||||
if (!silent)
|
||||
Logger.WriteInternal("[CFG] 设置已保存");
|
||||
}
|
||||
|
||||
public void SettingsChanged()
|
||||
{
|
||||
PolarisApp.BindAddress = BindAddress;
|
||||
Logger.VerbosePackets = VerbosePackets;
|
||||
PolarisApp.Instance.Server.PingTimer.Interval = 1000 * PingTime;
|
||||
}
|
||||
|
||||
public bool SetField(string name, string value)
|
||||
{
|
||||
var fields = GetType().GetFields();
|
||||
var field = fields.FirstOrDefault(o => o.Name == name);
|
||||
|
||||
if (field != null)
|
||||
{
|
||||
ParseField(field, value);
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
private void ParseField(FieldInfo field, string value)
|
||||
{
|
||||
// Bool
|
||||
if (field.GetValue(this) is bool)
|
||||
field.SetValue(this, bool.Parse(value));
|
||||
|
||||
// Int32
|
||||
if (field.GetValue(this) is int)
|
||||
field.SetValue(this, int.Parse(value));
|
||||
|
||||
// Float
|
||||
if (field.GetValue(this) is float)
|
||||
field.SetValue(this, float.Parse(value));
|
||||
|
||||
// Double
|
||||
if (field.GetValue(this) is double)
|
||||
field.SetValue(this, double.Parse(value));
|
||||
|
||||
// String
|
||||
if (field.GetValue(this) is string)
|
||||
{
|
||||
value = value.Replace("\\n", "\n");
|
||||
field.SetValue(this, value);
|
||||
}
|
||||
|
||||
// IP Address
|
||||
if (field.GetValue(this).GetType() == typeof(IPAddress))
|
||||
field.SetValue(this, IPAddress.Parse(value));
|
||||
|
||||
// Add more handling for special/custom types as needed
|
||||
}
|
||||
|
||||
private void SaveField(FieldInfo field, List<string> data)
|
||||
{
|
||||
// Comment
|
||||
var attributes = (Attribute[])field.GetCustomAttributes(typeof(ConfigComment), false);
|
||||
if (attributes.Length > 0)
|
||||
{
|
||||
var commentAttr = (ConfigComment)attributes[0];
|
||||
data.Add("// " + commentAttr.Comment);
|
||||
}
|
||||
|
||||
// IP Address
|
||||
if (field.GetValue(this).GetType() == typeof(IPAddress))
|
||||
{
|
||||
var address = (IPAddress)field.GetValue(this);
|
||||
data.Add(field.Name + " = " + address);
|
||||
}
|
||||
else if (field.GetValue(this).GetType() == typeof(string))
|
||||
{
|
||||
var str = (string)field.GetValue(this);
|
||||
data.Add(field.Name + " = " + str.Replace("\n", "\\n"));
|
||||
}
|
||||
else // Basic field
|
||||
{
|
||||
data.Add(field.Name + " = " + field.GetValue(this));
|
||||
}
|
||||
|
||||
// Leave a blank line between options
|
||||
data.Add(string.Empty);
|
||||
|
||||
// Add more handling for special/custom types as needed
|
||||
}
|
||||
}
|
||||
}
|
1221
PSO2SERVER/ConsoleSystem.cs
Normal file
1221
PSO2SERVER/ConsoleSystem.cs
Normal file
File diff suppressed because it is too large
Load Diff
212
PSO2SERVER/Crypto/ARC4Managed.cs
Normal file
212
PSO2SERVER/Crypto/ARC4Managed.cs
Normal file
@ -0,0 +1,212 @@
|
||||
//
|
||||
// ARC4Managed.cs: Alleged RC4(tm) compatible symmetric stream cipher
|
||||
// RC4 is a trademark of RSA Security
|
||||
//
|
||||
|
||||
//
|
||||
// Permission is hereby granted, free of charge, to any person obtaining
|
||||
// a copy of this software and associated documentation files (the
|
||||
// "Software"), to deal in the Software without restriction, including
|
||||
// without limitation the rights to use, copy, modify, merge, publish,
|
||||
// distribute, sublicense, and/or sell copies of the Software, and to
|
||||
// permit persons to whom the Software is furnished to do so, subject to
|
||||
// the following conditions:
|
||||
//
|
||||
// The above copyright notice and this permission notice shall be
|
||||
// included in all copies or substantial portions of the Software.
|
||||
//
|
||||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
||||
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
||||
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
||||
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
||||
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
//
|
||||
|
||||
using System;
|
||||
using System.Security.Cryptography;
|
||||
|
||||
namespace PolarisServer.Crypto
|
||||
{
|
||||
// References:
|
||||
// a. Usenet 1994 - RC4 Algorithm revealed
|
||||
// http://www.qrst.de/html/dsds/rc4.htm
|
||||
|
||||
#if !INSIDE_CORLIB
|
||||
public
|
||||
#endif
|
||||
class Arc4Managed : Rc4, ICryptoTransform
|
||||
{
|
||||
private byte[] _key;
|
||||
private bool _mDisposed;
|
||||
private byte[] _state;
|
||||
private byte _x;
|
||||
private byte _y;
|
||||
|
||||
public Arc4Managed()
|
||||
{
|
||||
_state = new byte[256];
|
||||
_mDisposed = false;
|
||||
}
|
||||
|
||||
public override byte[] Key
|
||||
{
|
||||
get
|
||||
{
|
||||
if (KeyValue == null)
|
||||
GenerateKey();
|
||||
return (byte[])KeyValue.Clone();
|
||||
}
|
||||
set
|
||||
{
|
||||
if (value == null)
|
||||
throw new ArgumentNullException("Key");
|
||||
KeyValue = _key = (byte[]) value.Clone();
|
||||
KeySetup(_key);
|
||||
}
|
||||
}
|
||||
|
||||
public bool CanReuseTransform
|
||||
{
|
||||
get { return false; }
|
||||
}
|
||||
|
||||
public bool CanTransformMultipleBlocks
|
||||
{
|
||||
get { return true; }
|
||||
}
|
||||
|
||||
public int InputBlockSize
|
||||
{
|
||||
get { return 1; }
|
||||
}
|
||||
|
||||
public int OutputBlockSize
|
||||
{
|
||||
get { return 1; }
|
||||
}
|
||||
|
||||
public int TransformBlock(byte[] inputBuffer, int inputOffset, int inputCount, byte[] outputBuffer,
|
||||
int outputOffset)
|
||||
{
|
||||
CheckInput(inputBuffer, inputOffset, inputCount);
|
||||
// check output parameters
|
||||
if (outputBuffer == null)
|
||||
throw new ArgumentNullException("outputBuffer");
|
||||
if (outputOffset < 0)
|
||||
throw new ArgumentOutOfRangeException("outputOffset", "< 0");
|
||||
// ordered to avoid possible integer overflow
|
||||
if (outputOffset > outputBuffer.Length - inputCount)
|
||||
throw new ArgumentException("outputBuffer overflow");
|
||||
|
||||
return InternalTransformBlock(inputBuffer, inputOffset, inputCount, outputBuffer, outputOffset);
|
||||
}
|
||||
|
||||
public byte[] TransformFinalBlock(byte[] inputBuffer, int inputOffset, int inputCount)
|
||||
{
|
||||
CheckInput(inputBuffer, inputOffset, inputCount);
|
||||
|
||||
var output = new byte[inputCount];
|
||||
InternalTransformBlock(inputBuffer, inputOffset, inputCount, output, 0);
|
||||
return output;
|
||||
}
|
||||
|
||||
~Arc4Managed()
|
||||
{
|
||||
Dispose(true);
|
||||
}
|
||||
|
||||
protected override void Dispose(bool disposing)
|
||||
{
|
||||
if (!_mDisposed)
|
||||
{
|
||||
_x = 0;
|
||||
_y = 0;
|
||||
if (_key != null)
|
||||
{
|
||||
Array.Clear(_key, 0, _key.Length);
|
||||
_key = null;
|
||||
}
|
||||
Array.Clear(_state, 0, _state.Length);
|
||||
_state = null;
|
||||
GC.SuppressFinalize(this);
|
||||
_mDisposed = true;
|
||||
}
|
||||
}
|
||||
|
||||
public override ICryptoTransform CreateEncryptor(byte[] rgbKey, byte[] rgvIv)
|
||||
{
|
||||
Key = rgbKey;
|
||||
return this;
|
||||
}
|
||||
|
||||
public override ICryptoTransform CreateDecryptor(byte[] rgbKey, byte[] rgvIv)
|
||||
{
|
||||
Key = rgbKey;
|
||||
return CreateEncryptor();
|
||||
}
|
||||
|
||||
public override void GenerateIV()
|
||||
{
|
||||
// not used for a stream cipher
|
||||
IV = new byte[0];
|
||||
}
|
||||
|
||||
public override void GenerateKey()
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
private void KeySetup(byte[] key)
|
||||
{
|
||||
byte index1 = 0;
|
||||
byte index2 = 0;
|
||||
|
||||
for (var counter = 0; counter < 256; counter++)
|
||||
_state[counter] = (byte) counter;
|
||||
_x = 0;
|
||||
_y = 0;
|
||||
for (var counter = 0; counter < 256; counter++)
|
||||
{
|
||||
index2 = (byte) (key[index1] + _state[counter] + index2);
|
||||
// swap byte
|
||||
var tmp = _state[counter];
|
||||
_state[counter] = _state[index2];
|
||||
_state[index2] = tmp;
|
||||
index1 = (byte) ((index1 + 1)%key.Length);
|
||||
}
|
||||
}
|
||||
|
||||
private void CheckInput(byte[] inputBuffer, int inputOffset, int inputCount)
|
||||
{
|
||||
if (inputBuffer == null)
|
||||
throw new ArgumentNullException("inputBuffer");
|
||||
if (inputOffset < 0)
|
||||
throw new ArgumentOutOfRangeException("inputOffset", "< 0");
|
||||
if (inputCount < 0)
|
||||
throw new ArgumentOutOfRangeException("inputCount", "< 0");
|
||||
// ordered to avoid possible integer overflow
|
||||
if (inputOffset > inputBuffer.Length - inputCount)
|
||||
throw new ArgumentException("inputBuffer overflow");
|
||||
}
|
||||
|
||||
private int InternalTransformBlock(byte[] inputBuffer, int inputOffset, int inputCount, byte[] outputBuffer,
|
||||
int outputOffset)
|
||||
{
|
||||
for (var counter = 0; counter < inputCount; counter++)
|
||||
{
|
||||
_x = (byte) (_x + 1);
|
||||
_y = (byte) (_state[_x] + _y);
|
||||
// swap byte
|
||||
var tmp = _state[_x];
|
||||
_state[_x] = _state[_y];
|
||||
_state[_y] = tmp;
|
||||
|
||||
var xorIndex = (byte) (_state[_x] + _state[_y]);
|
||||
outputBuffer[outputOffset + counter] = (byte) (inputBuffer[inputOffset + counter] ^ _state[xorIndex]);
|
||||
}
|
||||
return inputCount;
|
||||
}
|
||||
}
|
||||
}
|
89
PSO2SERVER/Crypto/RC4.cs
Normal file
89
PSO2SERVER/Crypto/RC4.cs
Normal file
@ -0,0 +1,89 @@
|
||||
//
|
||||
// RC4.cs: RC4(tm) symmetric stream cipher
|
||||
// RC4 is a trademark of RSA Security
|
||||
//
|
||||
// Author:
|
||||
// Sebastien Pouliot (sebastien@xamarin.com)
|
||||
//
|
||||
// (C) 2003 Motus Technologies Inc. (http://www.motus.com)
|
||||
// Copyright 2013 Xamarin Inc. (http://www.xamarin.com)
|
||||
//
|
||||
|
||||
//
|
||||
// Permission is hereby granted, free of charge, to any person obtaining
|
||||
// a copy of this software and associated documentation files (the
|
||||
// "Software"), to deal in the Software without restriction, including
|
||||
// without limitation the rights to use, copy, modify, merge, publish,
|
||||
// distribute, sublicense, and/or sell copies of the Software, and to
|
||||
// permit persons to whom the Software is furnished to do so, subject to
|
||||
// the following conditions:
|
||||
//
|
||||
// The above copyright notice and this permission notice shall be
|
||||
// included in all copies or substantial portions of the Software.
|
||||
//
|
||||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
||||
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
||||
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
||||
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
||||
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
//
|
||||
|
||||
using System;
|
||||
using System.Security.Cryptography;
|
||||
|
||||
namespace PolarisServer.Crypto
|
||||
{
|
||||
#if !INSIDE_CORLIB
|
||||
public
|
||||
#endif
|
||||
abstract class Rc4 : SymmetricAlgorithm
|
||||
{
|
||||
private static readonly KeySizes[] SLegalBlockSizes =
|
||||
{
|
||||
new KeySizes(64, 64, 0)
|
||||
};
|
||||
|
||||
private static readonly KeySizes[] SLegalKeySizes =
|
||||
{
|
||||
new KeySizes(40, 2048, 8)
|
||||
};
|
||||
|
||||
protected Rc4()
|
||||
{
|
||||
KeySizeValue = 128;
|
||||
BlockSizeValue = 64;
|
||||
FeedbackSizeValue = BlockSizeValue;
|
||||
LegalBlockSizesValue = SLegalBlockSizes;
|
||||
LegalKeySizesValue = SLegalKeySizes;
|
||||
}
|
||||
|
||||
// required for compatibility with .NET 2.0
|
||||
public override byte[] IV
|
||||
{
|
||||
get { return new byte[0]; }
|
||||
set
|
||||
{
|
||||
if (value == null) throw new ArgumentNullException("value");
|
||||
}
|
||||
}
|
||||
|
||||
public new static Rc4 Create()
|
||||
{
|
||||
#if FULL_AOT_RUNTIME
|
||||
return new ARC4Managed ();
|
||||
#else
|
||||
return Create("RC4");
|
||||
#endif
|
||||
}
|
||||
|
||||
public new static Rc4 Create(string algName)
|
||||
{
|
||||
var o = CryptoConfig.CreateFromName(algName) ?? new Arc4Managed();
|
||||
// in case machine.config isn't configured to use
|
||||
// any RC4 implementation
|
||||
return (Rc4) o;
|
||||
}
|
||||
}
|
||||
}
|
160
PSO2SERVER/Database/PolarisEF.cs
Normal file
160
PSO2SERVER/Database/PolarisEF.cs
Normal file
@ -0,0 +1,160 @@
|
||||
using System;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
using System.Data.Entity;
|
||||
using System.IO;
|
||||
using MySql.Data.EntityFramework;
|
||||
using PolarisServer.Models;
|
||||
|
||||
namespace PolarisServer.Database
|
||||
{
|
||||
public class ServerInfo
|
||||
{
|
||||
[Key, MaxLength(255)]
|
||||
public string Info { get; set; }
|
||||
|
||||
public string Setting { get; set; }
|
||||
}
|
||||
|
||||
public class Teleport
|
||||
{
|
||||
[Key, Column(Order = 1)]
|
||||
public string ZoneName { get; set; }
|
||||
|
||||
[Key, Column(Order = 2)]
|
||||
public int ObjectID { get; set; }
|
||||
|
||||
public float RotX { get; set; }
|
||||
public float RotY { get; set; }
|
||||
public float RotZ { get; set; }
|
||||
public float RotW { get; set; }
|
||||
|
||||
public float PosX { get; set; }
|
||||
public float PosY { get; set; }
|
||||
public float PosZ { get; set; }
|
||||
}
|
||||
|
||||
public class Player
|
||||
{
|
||||
[Key]
|
||||
public int PlayerId { get; set; }
|
||||
|
||||
public string Username { get; set; }
|
||||
public string Password { get; set; }
|
||||
public string Nickname { get; set; }
|
||||
public string SettingsIni { get; set; }
|
||||
}
|
||||
|
||||
public class NPC
|
||||
{
|
||||
[Key, Column(Order = 1)]
|
||||
public int EntityID { get; set; }
|
||||
[Key, Column(Order = 2)]
|
||||
public string ZoneName { get; set; }
|
||||
|
||||
public string NPCName { get; set; }
|
||||
|
||||
public float RotX { get; set; }
|
||||
public float RotY { get; set; }
|
||||
public float RotZ { get; set; }
|
||||
public float RotW { get; set; }
|
||||
|
||||
public float PosX { get; set; }
|
||||
public float PosY { get; set; }
|
||||
public float PosZ { get; set; }
|
||||
}
|
||||
|
||||
public class GameObject
|
||||
{
|
||||
[Key, Column(Order = 1)]
|
||||
public int ObjectID { get; set; }
|
||||
[Key, Column(Order = 2)]
|
||||
public string ZoneName { get; set; }
|
||||
|
||||
public string ObjectName { get; set; }
|
||||
|
||||
public byte[] ObjectFlags { get; set; }
|
||||
|
||||
public float RotX { get; set; }
|
||||
public float RotY { get; set; }
|
||||
public float RotZ { get; set; }
|
||||
public float RotW { get; set; }
|
||||
|
||||
public float PosX { get; set; }
|
||||
public float PosY { get; set; }
|
||||
public float PosZ { get; set; }
|
||||
}
|
||||
|
||||
[DbConfigurationType(typeof(MySqlEFConfiguration))]
|
||||
public class PolarisEf : DbContext
|
||||
{
|
||||
public DbSet<ServerInfo> ServerInfos { get; set; }
|
||||
public DbSet<Player> Players { get; set; }
|
||||
public DbSet<Character> Characters { get; set; }
|
||||
public DbSet<Teleport> Teleports { get; set; }
|
||||
public DbSet<NPC> NPCs { get; set; }
|
||||
public DbSet<GameObject> GameObjects { get; set; }
|
||||
|
||||
public PolarisEf()
|
||||
: base(
|
||||
string.Format("server={0};port={1};database={2};username={3};password={4}",
|
||||
PolarisApp.Config.DatabaseAddress,
|
||||
PolarisApp.Config.DatabasePort,
|
||||
PolarisApp.Config.DatabaseName,
|
||||
PolarisApp.Config.DatabaseUsername,
|
||||
PolarisApp.Config.DatabasePassword)
|
||||
)
|
||||
{
|
||||
}
|
||||
|
||||
public void SetupDB()
|
||||
{
|
||||
try
|
||||
{
|
||||
foreach (
|
||||
var f in
|
||||
Directory.EnumerateFiles(Directory.GetCurrentDirectory() + "/Resources/sql/scripts/", "*.sql"))
|
||||
{
|
||||
Logger.WriteInternal("[DB ] 执行数据库脚本 {0}", f);
|
||||
Database.ExecuteSqlCommand(File.ReadAllText(f));
|
||||
}
|
||||
var revision = ServerInfos.Find("Revision");
|
||||
if (revision == null)
|
||||
{
|
||||
revision = new ServerInfo { Info = "Revision", Setting = "0" };
|
||||
ServerInfos.Add(revision);
|
||||
|
||||
//TODO Possibly move this somewhere else?
|
||||
Database.ExecuteSqlCommand("ALTER TABLE Players AUTO_INCREMENT=10000000");
|
||||
}
|
||||
SaveChanges();
|
||||
|
||||
Logger.WriteInternal("[DB ] 加载数据集修订的数据库 {0}", revision.Setting);
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
Logger.WriteException("数据库异常", ex);
|
||||
}
|
||||
}
|
||||
|
||||
public bool TestDatabaseConnection()
|
||||
{
|
||||
try
|
||||
{
|
||||
using (var context = new PolarisEf())
|
||||
{
|
||||
// 执行一个简单的查询来测试数据库连接
|
||||
context.Database.ExecuteSqlCommand("SELECT 1");
|
||||
|
||||
Logger.WriteInternal("[DB Test] 数据库连接成功。");
|
||||
return true;
|
||||
}
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
Logger.WriteException("[DB Test] 数据库连接异常", ex);
|
||||
return false;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
123
PSO2SERVER/Helper.cs
Normal file
123
PSO2SERVER/Helper.cs
Normal file
@ -0,0 +1,123 @@
|
||||
using System;
|
||||
using System.ComponentModel;
|
||||
using System.Linq;
|
||||
using System.Runtime.InteropServices;
|
||||
using System.Text;
|
||||
|
||||
namespace PolarisServer
|
||||
{
|
||||
public static class Helper
|
||||
{
|
||||
public static string ByteArrayToString(byte[] ba)
|
||||
{
|
||||
var hex = new StringBuilder(ba.Length * 2);
|
||||
foreach (var b in ba)
|
||||
hex.AppendFormat("{0:x2}", b);
|
||||
return hex.ToString();
|
||||
}
|
||||
|
||||
public static byte[] StringToByteArray(String hex)
|
||||
{
|
||||
var numberChars = hex.Length;
|
||||
var bytes = new byte[numberChars / 2];
|
||||
for (var i = 0; i < numberChars; i += 2)
|
||||
bytes[i / 2] = Convert.ToByte(hex.Substring(i, 2), 16);
|
||||
return bytes;
|
||||
}
|
||||
|
||||
public static T ByteArrayToStructure<T>(byte[] bytes) where T : struct
|
||||
{
|
||||
var handle = GCHandle.Alloc(bytes, GCHandleType.Pinned);
|
||||
var stuff = (T)Marshal.PtrToStructure(handle.AddrOfPinnedObject(),
|
||||
typeof(T));
|
||||
handle.Free();
|
||||
return stuff;
|
||||
}
|
||||
|
||||
public static string ObjectToString(object obj)
|
||||
{
|
||||
var data = string.Empty;
|
||||
|
||||
data += "{ ";
|
||||
data = TypeDescriptor.GetProperties(obj).Cast<PropertyDescriptor>().Aggregate(data, (current, descriptor) => current + string.Format("{0} = {1}, ", descriptor.Name, descriptor.GetValue(obj)));
|
||||
data = data.Remove(data.Length - 3);
|
||||
data += " }";
|
||||
|
||||
return data;
|
||||
}
|
||||
|
||||
public static int FindPlayerByUsername(string name)
|
||||
{
|
||||
for (var i = 0; i < PolarisApp.Instance.Server.Clients.Count; i++)
|
||||
if (name.ToLower() == PolarisApp.Instance.Server.Clients[i].User.Username.ToLower())
|
||||
return i;
|
||||
|
||||
return -1;
|
||||
}
|
||||
|
||||
public static ushort PacketTypeToUShort(uint type, uint subtype)
|
||||
{
|
||||
return (ushort)((type << 8) | subtype);
|
||||
}
|
||||
|
||||
#region Float Manipulation
|
||||
|
||||
public static unsafe float UIntToFloat(uint input)
|
||||
{
|
||||
var fp = (float*)(&input);
|
||||
return *fp;
|
||||
}
|
||||
|
||||
public static unsafe uint FloatToUInt(float input)
|
||||
{
|
||||
var ip = (uint*)(&input);
|
||||
return *ip;
|
||||
}
|
||||
|
||||
public static float FloatFromHalfPrecision(ushort value)
|
||||
{
|
||||
if ((value & 0x7FFF) != 0)
|
||||
{
|
||||
var sign = (uint)((value & 0x8000) << 16);
|
||||
var exponent = (uint)(((value & 0x7C00) >> 10) + 0x70) << 23;
|
||||
var mantissa = (uint)((value & 0x3FF) << 13);
|
||||
return UIntToFloat(sign | exponent | mantissa);
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
public static ushort FloatToHalfPrecision(float value)
|
||||
{
|
||||
var ivalue = FloatToUInt(value);
|
||||
if ((ivalue & 0x7FFFFFFF) != 0)
|
||||
{
|
||||
var sign = (ushort)((ivalue >> 16) & 0x8000);
|
||||
var exponent = (ushort)(((ivalue & 0x7F800000) >> 23) - 0x70);
|
||||
if ((exponent & 0xFFFFFFE0) != 0)
|
||||
{
|
||||
return (ushort)((exponent >> 17) ^ 0x7FFF | sign);
|
||||
}
|
||||
var a = (ushort)((ivalue & 0x7FFFFF) >> 13);
|
||||
var b = (ushort)(exponent << 10);
|
||||
return (ushort)(a | b | sign);
|
||||
}
|
||||
return (ushort)(ivalue >> 16);
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
#region Timestamps
|
||||
|
||||
public static long Timestamp(DateTime time)
|
||||
{
|
||||
return time.ToFileTimeUtc() / 10000;
|
||||
}
|
||||
|
||||
public static DateTime Timestamp(long stamp)
|
||||
{
|
||||
return DateTime.FromFileTimeUtc(stamp * 10000);
|
||||
}
|
||||
|
||||
#endregion
|
||||
}
|
||||
}
|
155
PSO2SERVER/Logger.cs
Normal file
155
PSO2SERVER/Logger.cs
Normal file
@ -0,0 +1,155 @@
|
||||
using System;
|
||||
using System.IO;
|
||||
|
||||
using PolarisServer.Packets.PSOPackets;
|
||||
|
||||
namespace PolarisServer
|
||||
{
|
||||
/// <summary>
|
||||
/// Wrapper for Console's Write and WriteLine functions to add coloring as well as integrate it into the Console System
|
||||
/// and add dumping to a log file.
|
||||
/// </summary>
|
||||
public static class Logger
|
||||
{
|
||||
private static readonly StreamWriter Writer = new StreamWriter("PolarisServer.log", true);
|
||||
|
||||
public static bool VerbosePackets = false;
|
||||
|
||||
private static void AddLine(ConsoleColor color, string text)
|
||||
{
|
||||
// Return if we don't have a ConsoleSystem created yet
|
||||
if (PolarisApp.ConsoleSystem == null) return;
|
||||
|
||||
PolarisApp.ConsoleSystem.AddLine(color, text);
|
||||
}
|
||||
|
||||
public static void Write(string text, params object[] args)
|
||||
{
|
||||
AddLine(ConsoleColor.White, string.Format(text, args));
|
||||
WriteFile(text, args);
|
||||
}
|
||||
|
||||
public static void WriteInternal(string text, params object[] args)
|
||||
{
|
||||
AddLine(ConsoleColor.Cyan, string.Format(text, args));
|
||||
WriteFile(text, args);
|
||||
}
|
||||
|
||||
public static void WriteCommand(Client client, string text, params object[] args)
|
||||
{
|
||||
if (client == null)
|
||||
{
|
||||
AddLine(ConsoleColor.Green, string.Format(text, args));
|
||||
WriteFile(text, args);
|
||||
}
|
||||
else
|
||||
WriteClient(client, text, args);
|
||||
}
|
||||
|
||||
public static void WriteClient(Client client, string text, params object[] args)
|
||||
{
|
||||
var message = string.Format(text, args).Replace('\\', '/');
|
||||
var packet = new SystemMessagePacket(message, SystemMessagePacket.MessageType.SystemMessage);
|
||||
client.SendPacket(packet);
|
||||
}
|
||||
|
||||
public static void WriteWarning(string text, params object[] args)
|
||||
{
|
||||
AddLine(ConsoleColor.Yellow, string.Format(text, args));
|
||||
WriteFile(text, args);
|
||||
}
|
||||
|
||||
public static void WriteError(string text, params object[] args)
|
||||
{
|
||||
AddLine(ConsoleColor.Red, string.Format(text, args));
|
||||
WriteFile(text, args);
|
||||
}
|
||||
|
||||
public static void WriteException(string message, Exception ex)
|
||||
{
|
||||
var text = string.Empty;
|
||||
|
||||
text += string.Format("[ERR] {0} - {1}: {2}", message, ex.GetType(), ex);
|
||||
if (ex.InnerException != null)
|
||||
text += string.Format("\n[ERR] Inner Exception: {0}", ex.InnerException);
|
||||
|
||||
WriteFile(text);
|
||||
|
||||
AddLine(ConsoleColor.Red, text);
|
||||
}
|
||||
|
||||
public static void WriteHex(string text, byte[] array)
|
||||
{
|
||||
AddLine(ConsoleColor.DarkCyan, text);
|
||||
|
||||
// Calculate lines
|
||||
var lines = 0;
|
||||
for (var i = 0; i < array.Length; i++)
|
||||
if ((i % 16) == 0)
|
||||
lines++;
|
||||
|
||||
for (var i = 0; i < lines; i++)
|
||||
{
|
||||
var hexString = string.Empty;
|
||||
|
||||
// Address
|
||||
hexString += string.Format("{0:X8} ", i * 16);
|
||||
|
||||
// Bytes
|
||||
for (var j = 0; j < 16; j++)
|
||||
{
|
||||
if (j + (i * 16) >= array.Length)
|
||||
break;
|
||||
|
||||
hexString += string.Format("{0:X2} ", array[j + (i * 16)]);
|
||||
}
|
||||
|
||||
// Spacing
|
||||
while (hexString.Length < 16 * 4)
|
||||
hexString += ' ';
|
||||
|
||||
// ASCII
|
||||
for (var j = 0; j < 16; j++)
|
||||
{
|
||||
if (j + (i * 16) >= array.Length)
|
||||
break;
|
||||
|
||||
var asciiChar = (char)array[j + (i * 16)];
|
||||
|
||||
if (asciiChar == (char)0x00)
|
||||
asciiChar = '.';
|
||||
|
||||
hexString += asciiChar;
|
||||
}
|
||||
|
||||
// Strip off unnecessary stuff
|
||||
hexString = hexString.Replace('\a', ' '); // Alert beeps
|
||||
hexString = hexString.Replace('\n', ' '); // Newlines
|
||||
hexString = hexString.Replace('\r', ' '); // Carriage returns
|
||||
hexString = hexString.Replace('\\', ' '); // Escape break
|
||||
|
||||
AddLine(ConsoleColor.White, hexString);
|
||||
WriteFile(hexString);
|
||||
}
|
||||
}
|
||||
|
||||
public static void WriteFile(string text, params object[] args)
|
||||
{
|
||||
if (args.Length > 0)
|
||||
Writer.WriteLine(DateTime.Now + " - " + text, args);
|
||||
else
|
||||
Writer.WriteLine(DateTime.Now + " - " + text);
|
||||
|
||||
// Later we should probably only flush once every PosX amount of lines or on some other condition
|
||||
Writer.Flush();
|
||||
}
|
||||
|
||||
public static void WriteHeader()
|
||||
{
|
||||
Writer.WriteLine();
|
||||
Writer.WriteLine("--------------------------------------------------");
|
||||
Writer.WriteLine("\t\t" + DateTime.Now);
|
||||
Writer.WriteLine("--------------------------------------------------");
|
||||
}
|
||||
}
|
||||
}
|
207
PSO2SERVER/Models/Character.cs
Normal file
207
PSO2SERVER/Models/Character.cs
Normal file
@ -0,0 +1,207 @@
|
||||
using System;
|
||||
using System.Runtime.InteropServices;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
using PolarisServer.Packets;
|
||||
using PolarisServer.Database;
|
||||
|
||||
namespace PolarisServer.Models
|
||||
{
|
||||
public class Character
|
||||
{
|
||||
public enum Race : ushort
|
||||
{
|
||||
Human = 0,
|
||||
Newman,
|
||||
Cast,
|
||||
Dewman
|
||||
}
|
||||
|
||||
public enum Gender : ushort
|
||||
{
|
||||
Male = 0,
|
||||
Female
|
||||
}
|
||||
|
||||
public enum ClassType : byte
|
||||
{
|
||||
Hunter = 0,
|
||||
Fighter,
|
||||
Ranger,
|
||||
Gunner,
|
||||
Force,
|
||||
Techer,
|
||||
Braver,
|
||||
Bouncer,
|
||||
}
|
||||
|
||||
[Flags]
|
||||
public enum ClassTypeField : byte
|
||||
{
|
||||
Hunter = 1,
|
||||
Fighter = 2,
|
||||
Ranger = 4,
|
||||
Gunner = 8,
|
||||
Force = 16,
|
||||
Techer = 32,
|
||||
Braver = 64,
|
||||
Bouncer = 128
|
||||
}
|
||||
|
||||
[StructLayout(LayoutKind.Sequential)]
|
||||
public struct HSVColor
|
||||
{
|
||||
public ushort hue, saturation, value;
|
||||
}
|
||||
|
||||
[StructLayout(LayoutKind.Sequential)]
|
||||
public struct Figure
|
||||
{
|
||||
public ushort x, y, z; // Great naming, SEGA
|
||||
}
|
||||
|
||||
[StructLayout(LayoutKind.Sequential)]
|
||||
public struct JobEntry
|
||||
{
|
||||
public ushort level;
|
||||
public ushort level2; // Usually the same as the above, what is this used for?
|
||||
public uint exp;
|
||||
}
|
||||
|
||||
[StructLayout(LayoutKind.Sequential)]
|
||||
public struct Entries
|
||||
{
|
||||
public JobEntry hunter, fighter, ranger, gunner, force, techer, braver, bouncer;
|
||||
}
|
||||
|
||||
[StructLayout(LayoutKind.Sequential)]
|
||||
public unsafe struct JobParam
|
||||
{
|
||||
public fixed byte unknown_0[4];
|
||||
public ClassType mainClass;
|
||||
public ClassType subClass;
|
||||
public fixed byte uknown_6[2];
|
||||
public ClassTypeField enabledClasses;
|
||||
public fixed byte uknown_8[2];
|
||||
public byte padding0;
|
||||
|
||||
public Entries entries; //TODO: Make this a fixed array
|
||||
|
||||
public ushort unknown_48, unknown_4A;
|
||||
public uint unknown_4C;
|
||||
public ushort unknown_50, unknown_52;
|
||||
public uint unknown_54;
|
||||
public ushort unknown_58, unknown_5A;
|
||||
public uint unknown_5C;
|
||||
public ushort unknown_60, unknown_62;
|
||||
public uint unknown_64;
|
||||
public uint unknown_68;
|
||||
public ushort unknown_6C, unknown_6E;
|
||||
public fixed int unknown_70[4];
|
||||
}
|
||||
|
||||
[StructLayout(LayoutKind.Sequential)]
|
||||
public unsafe struct LooksParam
|
||||
{
|
||||
public fixed byte padding[4];
|
||||
public ushort height;
|
||||
public fixed byte charData[80]; // Figure Data, needs more work
|
||||
public ushort accessoryData1;
|
||||
public ushort accessoryData2;
|
||||
public ushort accessoryData3;
|
||||
public ushort accessoryData4;
|
||||
public HSVColor costumeColor;
|
||||
public HSVColor mainColor;
|
||||
public HSVColor sub1Color;
|
||||
public HSVColor sub2Color;
|
||||
public HSVColor sub3Color;
|
||||
public HSVColor eyeColor;
|
||||
public HSVColor hairColor;
|
||||
public int modelID;
|
||||
public ushort mainParts;
|
||||
public ushort bodyPaint;
|
||||
public ushort emblem;
|
||||
public ushort eyePattern;
|
||||
public ushort eyelashes;
|
||||
public ushort eyebrows;
|
||||
public ushort face;
|
||||
public ushort facePaint1;
|
||||
public ushort hairstyle;
|
||||
public ushort accessory1;
|
||||
public ushort accessory2;
|
||||
public ushort accessory3;
|
||||
public ushort facePaint2;
|
||||
public ushort arms;
|
||||
public ushort legs;
|
||||
public ushort accessory4;
|
||||
public ushort costume;
|
||||
public Race race;
|
||||
public Gender gender;
|
||||
}
|
||||
|
||||
// Probably more info than this
|
||||
[Key]
|
||||
public int CharacterId { get; set; }
|
||||
|
||||
public virtual Player Player { get; set; }
|
||||
public string Name { get; set; }
|
||||
|
||||
public byte[] LooksBinary
|
||||
{
|
||||
get
|
||||
{
|
||||
PacketWriter w = new PacketWriter();
|
||||
w.WriteStruct(Looks);
|
||||
return w.ToArray();
|
||||
}
|
||||
|
||||
set
|
||||
{
|
||||
Looks = Helper.ByteArrayToStructure<LooksParam>(value);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
public byte[] JobsBinary
|
||||
{
|
||||
get
|
||||
{
|
||||
PacketWriter w = new PacketWriter();
|
||||
w.WriteStruct(Jobs);
|
||||
return w.ToArray();
|
||||
}
|
||||
|
||||
set
|
||||
{
|
||||
Jobs = Helper.ByteArrayToStructure<JobParam>(value);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
public LooksParam Looks { get; set; }
|
||||
public JobParam Jobs { get; set; }
|
||||
}
|
||||
|
||||
|
||||
public struct PSOLocation
|
||||
{
|
||||
public float RotX, RotY, RotZ, RotW, PosX, PosY, PosZ; // RotX, RotY, RotZ, and RotW make up a Quaternion
|
||||
|
||||
public PSOLocation(float RotX, float RotY, float RotZ, float RotW, float PosX, float PosY, float PosZ)
|
||||
{
|
||||
this.RotX = RotX;
|
||||
this.RotY = RotY;
|
||||
this.RotZ = RotZ;
|
||||
this.RotW = RotW;
|
||||
|
||||
this.PosX = PosX;
|
||||
this.PosY = PosY;
|
||||
this.PosZ = PosZ;
|
||||
}
|
||||
|
||||
public override string ToString()
|
||||
{
|
||||
return String.Format("Rot: ({0}, {1}, {2}, {3}) Loc: ({4}, {5}, {6})", RotX, RotY, RotZ, RotW, PosX, PosY, PosZ);
|
||||
}
|
||||
}
|
||||
}
|
46
PSO2SERVER/Models/FixedPackets.cs
Normal file
46
PSO2SERVER/Models/FixedPackets.cs
Normal file
@ -0,0 +1,46 @@
|
||||
using System;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
namespace PolarisServer.Models
|
||||
{
|
||||
public struct PacketHeader
|
||||
{
|
||||
public UInt32 Size;
|
||||
public byte Type;
|
||||
public byte Subtype;
|
||||
public byte Flags1;
|
||||
public byte Flags2;
|
||||
|
||||
public PacketHeader(int size, byte type, byte subtype, byte flags1, byte flags2)
|
||||
{
|
||||
this.Size = (uint)size;
|
||||
this.Type = type;
|
||||
this.Subtype = subtype;
|
||||
this.Flags1 = flags1;
|
||||
this.Flags2 = flags2;
|
||||
}
|
||||
|
||||
public PacketHeader(byte type, byte subtype) : this(type, subtype, (byte)0)
|
||||
{
|
||||
}
|
||||
|
||||
public PacketHeader(byte type, byte subtype, byte flags1) : this(0, type, subtype, flags1, 0)
|
||||
{
|
||||
}
|
||||
|
||||
public PacketHeader(byte type, byte subtype, PacketFlags packetFlags) : this(type, subtype, (byte)packetFlags)
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
[Flags]
|
||||
public enum PacketFlags : byte
|
||||
{
|
||||
None,
|
||||
PACKED = 0x4,
|
||||
FLAG_10 = 0x10,
|
||||
FULL_MOVEMENT = 0x20,
|
||||
OBJECT_RELATED = 0x40
|
||||
}
|
||||
}
|
||||
|
137
PSO2SERVER/Models/PSO2Item.cs
Normal file
137
PSO2SERVER/Models/PSO2Item.cs
Normal file
@ -0,0 +1,137 @@
|
||||
using System;
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
namespace PolarisServer.Models
|
||||
{
|
||||
/*
|
||||
[StructLayout(LayoutKind.Sequential, Pack = 1)]
|
||||
public unsafe struct PSO2ItemConsumable
|
||||
{
|
||||
long guid;
|
||||
int ID;
|
||||
int subID;
|
||||
short unused1;
|
||||
short quantity;
|
||||
fixed int unused2[9];
|
||||
}
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, Pack = 1)]
|
||||
public unsafe struct PSO2ItemWeapon
|
||||
{
|
||||
long guid;
|
||||
int ID;
|
||||
int subID;
|
||||
byte flags;
|
||||
byte element;
|
||||
byte force;
|
||||
byte grind;
|
||||
byte grindPercent;
|
||||
byte unknown1;
|
||||
short unknown2;
|
||||
fixed short affixes[8];
|
||||
int potential;
|
||||
byte extend;
|
||||
byte unknown3;
|
||||
short unknown4;
|
||||
int unknown5;
|
||||
int unknown6;
|
||||
}
|
||||
*/
|
||||
|
||||
public enum ItemType
|
||||
{
|
||||
Consumable,
|
||||
Weapon,
|
||||
Costume,
|
||||
Unit,
|
||||
Room
|
||||
}
|
||||
|
||||
[Flags]
|
||||
public enum ItemFlags
|
||||
{
|
||||
Locked = 0x01,
|
||||
BoundToOwner = 0x02
|
||||
}
|
||||
|
||||
public enum ItemElement
|
||||
{
|
||||
None,
|
||||
Fire,
|
||||
Ice,
|
||||
Lightning,
|
||||
Wind,
|
||||
Light,
|
||||
Dark
|
||||
}
|
||||
|
||||
public class PSO2Item
|
||||
{
|
||||
public const int Size = 0x38;
|
||||
|
||||
MemoryStream stream;
|
||||
ItemType type = ItemType.Consumable;
|
||||
byte[] data = new byte[Size];
|
||||
|
||||
public override string ToString()
|
||||
{
|
||||
return string.Format("Data: {0:X}", BitConverter.ToString(data)).Replace('-', ' ');
|
||||
}
|
||||
|
||||
public PSO2Item(byte[] data)
|
||||
{
|
||||
SetData(data);
|
||||
}
|
||||
|
||||
public byte[] GetData()
|
||||
{
|
||||
return data;
|
||||
}
|
||||
|
||||
public void SetData(byte[] data)
|
||||
{
|
||||
this.data = data;
|
||||
|
||||
stream = new MemoryStream(data, true);
|
||||
}
|
||||
|
||||
public long GetGUID()
|
||||
{
|
||||
byte[] guid = new byte[sizeof(long)];
|
||||
|
||||
stream.Seek(0, SeekOrigin.Begin);
|
||||
stream.Read(guid, 0, sizeof(long));
|
||||
|
||||
return BitConverter.ToInt64(guid, 0);
|
||||
}
|
||||
|
||||
public void SetGUID(long guid)
|
||||
{
|
||||
stream.Seek(0, SeekOrigin.Begin);
|
||||
stream.Write(BitConverter.GetBytes(guid), 0, 8);
|
||||
}
|
||||
|
||||
public int[] GetID()
|
||||
{
|
||||
byte[] ID = new byte[sizeof(int)];
|
||||
byte[] subID = new byte[sizeof(int)];
|
||||
|
||||
stream.Seek(0, SeekOrigin.Begin);
|
||||
stream.Read(ID, 0x08, sizeof(int));
|
||||
stream.Read(subID, 0x0C, sizeof(int));
|
||||
|
||||
return new int[] { BitConverter.ToInt32(ID, 0), BitConverter.ToInt32(subID, 0) };
|
||||
}
|
||||
|
||||
public void SetID(int ID, int subID)
|
||||
{
|
||||
stream.Seek(0, SeekOrigin.Begin);
|
||||
stream.Write(BitConverter.GetBytes(ID), 0x08, sizeof(int));
|
||||
stream.Write(BitConverter.GetBytes(subID), 0x0C, sizeof(int));
|
||||
}
|
||||
|
||||
// ...
|
||||
}
|
||||
}
|
29
PSO2SERVER/Models/PSOData.cs
Normal file
29
PSO2SERVER/Models/PSOData.cs
Normal file
@ -0,0 +1,29 @@
|
||||
using System;
|
||||
using System.Runtime.InteropServices;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace PolarisServer.Models
|
||||
{
|
||||
public enum EntityType : UInt16
|
||||
{
|
||||
Player = 0x4,
|
||||
Map = 0x5,
|
||||
Object = 0x6
|
||||
}
|
||||
|
||||
public struct ObjectHeader
|
||||
{
|
||||
public UInt32 ID;
|
||||
public UInt32 padding; // Always is padding
|
||||
public EntityType EntityType; // Maybe...
|
||||
public UInt16 Unknown_A;
|
||||
|
||||
public ObjectHeader(uint id, EntityType type) : this()
|
||||
{
|
||||
this.ID = id;
|
||||
this.EntityType = type;
|
||||
}
|
||||
}
|
||||
}
|
118
PSO2SERVER/Models/PSOObject.cs
Normal file
118
PSO2SERVER/Models/PSOObject.cs
Normal file
@ -0,0 +1,118 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using PolarisServer.Database;
|
||||
using PolarisServer.Packets;
|
||||
|
||||
namespace PolarisServer.Models
|
||||
{
|
||||
public class PSOObject
|
||||
{
|
||||
public struct PSOObjectThing
|
||||
{
|
||||
public UInt32 Data;
|
||||
|
||||
public PSOObjectThing(UInt32 data)
|
||||
{
|
||||
Data = data;
|
||||
}
|
||||
}
|
||||
|
||||
public ObjectHeader Header { get; set; }
|
||||
public PSOLocation Position { get; set; }
|
||||
public string Name { get; set; }
|
||||
public UInt32 ThingFlag { get; set; }
|
||||
public PSOObjectThing[] Things { get; set; }
|
||||
|
||||
public virtual byte[] GenerateSpawnBlob()
|
||||
{
|
||||
PacketWriter writer = new PacketWriter();
|
||||
writer.WriteStruct(Header);
|
||||
writer.Write(Position);
|
||||
writer.Seek(2, SeekOrigin.Current); // Padding I guess...
|
||||
writer.WriteFixedLengthASCII(Name, 0x34);
|
||||
writer.Write(ThingFlag);
|
||||
writer.Write(Things.Length);
|
||||
foreach (PSOObjectThing thing in Things)
|
||||
{
|
||||
writer.WriteStruct(thing);
|
||||
}
|
||||
|
||||
return writer.ToArray();
|
||||
|
||||
}
|
||||
|
||||
internal static PSOObject FromPacketBin(byte[] v)
|
||||
{
|
||||
PacketReader reader = new PacketReader(v);
|
||||
PSOObject obj = new PSOObject();
|
||||
reader.ReadStruct<PacketHeader>(); //Skip over header
|
||||
obj.Header = reader.ReadStruct<ObjectHeader>();
|
||||
obj.Position = reader.ReadEntityPosition();
|
||||
reader.ReadUInt16(); // Seek 2
|
||||
obj.Name = reader.ReadFixedLengthAscii(0x34);
|
||||
obj.ThingFlag = reader.ReadUInt32();
|
||||
uint thingCount = reader.ReadUInt32();
|
||||
obj.Things = new PSOObjectThing[thingCount];
|
||||
for (int i = 0; i < thingCount; i++)
|
||||
{
|
||||
obj.Things[i] = reader.ReadStruct<PSOObjectThing>();
|
||||
}
|
||||
|
||||
return obj;
|
||||
}
|
||||
|
||||
internal static PSOObject FromDBObject(GameObject dbObject)
|
||||
{
|
||||
PSOObject psoObj = new PSOObject();
|
||||
psoObj.Header = new ObjectHeader((uint)dbObject.ObjectID, EntityType.Object);
|
||||
psoObj.Name = dbObject.ObjectName;
|
||||
psoObj.Position = new PSOLocation(dbObject.RotX, dbObject.RotY, dbObject.RotZ, dbObject.RotW, dbObject.PosX, dbObject.PosY, dbObject.PosZ);
|
||||
|
||||
int thingCount = dbObject.ObjectFlags.Length / 4; // I hope this will work
|
||||
psoObj.Things = new PSOObjectThing[thingCount];
|
||||
for(int i = 0; i < psoObj.Things.Length; i++)
|
||||
{
|
||||
psoObj.Things[i] = new PSOObjectThing(BitConverter.ToUInt32(dbObject.ObjectFlags, 4 * i)); // This should work?
|
||||
}
|
||||
|
||||
return psoObj;
|
||||
}
|
||||
}
|
||||
|
||||
public class PSONPC : PSOObject
|
||||
{
|
||||
public override byte[] GenerateSpawnBlob()
|
||||
{
|
||||
PacketWriter writer = new PacketWriter();
|
||||
writer.WriteStruct(Header);
|
||||
writer.WritePosition(Position);
|
||||
writer.Write((UInt16)0);
|
||||
writer.WriteFixedLengthASCII(Name, 0x20);
|
||||
|
||||
writer.Write(0); // Padding?
|
||||
writer.Write(new byte[0xC]); // Unknown, usually zero
|
||||
|
||||
writer.Write((UInt16)0);
|
||||
writer.Write((UInt16)0);
|
||||
|
||||
writer.Write((UInt32)0);
|
||||
writer.Write((UInt32)0);
|
||||
|
||||
writer.Write((UInt32)1101004800); // Always this
|
||||
|
||||
writer.Write((UInt32)0);
|
||||
writer.Write((UInt32)0);
|
||||
writer.Write((UInt32)0);
|
||||
|
||||
writer.Write((UInt32)1);
|
||||
|
||||
writer.WriteMagic(1, 0x9FCD, 0xE7);
|
||||
writer.Write((UInt32)0);
|
||||
|
||||
return writer.ToArray();
|
||||
}
|
||||
}
|
||||
}
|
133
PSO2SERVER/Models/Quest.cs
Normal file
133
PSO2SERVER/Models/Quest.cs
Normal file
@ -0,0 +1,133 @@
|
||||
using System;
|
||||
using System.Runtime.InteropServices;
|
||||
using PolarisServer.Packets.PSOPackets;
|
||||
|
||||
namespace PolarisServer.Models
|
||||
{
|
||||
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi, Pack = 1)]
|
||||
public unsafe struct QuestDefiniton
|
||||
{
|
||||
[MarshalAs(UnmanagedType.ByValTStr, SizeConst = 32 - 8)]
|
||||
public string dateOrSomething;
|
||||
public int field_18;
|
||||
public int field_1C;
|
||||
public int needsToBeNonzero;
|
||||
public int alsoGetsSetToDword;
|
||||
public UInt16 getsSetToWord;
|
||||
public UInt16 moreWordSetting;
|
||||
public int questNameString;
|
||||
public int field_30;
|
||||
public int field_34;
|
||||
public int field_38;
|
||||
public int field_3C;
|
||||
public int field_40;
|
||||
public int field_44;
|
||||
public int field_48;
|
||||
public int field_4C;
|
||||
public int field_50;
|
||||
public int field_54;
|
||||
public int field_58;
|
||||
public int field_5C;
|
||||
public int field_60;
|
||||
public int field_64;
|
||||
public int field_68;
|
||||
public int field_6C;
|
||||
public int field_70;
|
||||
public int field_74;
|
||||
public int field_78;
|
||||
public int field_7C;
|
||||
public int field_80;
|
||||
public int field_84;
|
||||
public int field_88;
|
||||
public int field_8C;
|
||||
public int field_90;
|
||||
public int field_94;
|
||||
public int field_98;
|
||||
public UInt16 field_9C;
|
||||
public byte field_9E;
|
||||
public byte field_9F;
|
||||
public int field_A0;
|
||||
public int field_A4;
|
||||
public int field_A8;
|
||||
public int field_AC;
|
||||
public int field_B0;
|
||||
public int field_B4;
|
||||
public int field_B8;
|
||||
public int field_BC;
|
||||
public int field_C0;
|
||||
public int field_C4;
|
||||
public int field_C8;
|
||||
public int field_CC;
|
||||
public int field_D0;
|
||||
public int field_D4;
|
||||
public int field_D8;
|
||||
public int field_DC;
|
||||
public int field_E0;
|
||||
public int field_E4;
|
||||
public int field_E8; // Maybe a flags
|
||||
public int field_EC;
|
||||
public UInt16 field_F0;
|
||||
public UInt16 field_F2;
|
||||
public UInt16 questBitfield1;
|
||||
public byte playTime;
|
||||
public byte partyType;
|
||||
public byte difficulties;
|
||||
public byte difficultiesCompleted;
|
||||
public byte field_FA;
|
||||
public byte field_FB;
|
||||
public byte requiredLevel;
|
||||
public byte field_FD;
|
||||
public byte field_FE;
|
||||
public byte field_FF;
|
||||
public byte field_100;
|
||||
public byte field_101;
|
||||
public byte field_102;
|
||||
public byte field_103;
|
||||
public byte field_104;
|
||||
public byte field_105;
|
||||
public UInt16 field_106;
|
||||
public int field_108;
|
||||
public int field_10C;
|
||||
public short field_110;
|
||||
public byte field_112;
|
||||
public byte field_113;
|
||||
public QuestDefThing field_114_1;
|
||||
public QuestDefThing field_114_2;
|
||||
public QuestDefThing field_114_3;
|
||||
public QuestDefThing field_114_4;
|
||||
public QuestDefThing field_114_5;
|
||||
public QuestDefThing field_114_6;
|
||||
public QuestDefThing field_114_7;
|
||||
public QuestDefThing field_114_8;
|
||||
public QuestDefThing field_114_9;
|
||||
public QuestDefThing field_114_10;
|
||||
public QuestDefThing field_114_11;
|
||||
public QuestDefThing field_114_12;
|
||||
public QuestDefThing field_114_13;
|
||||
public QuestDefThing field_114_14;
|
||||
public QuestDefThing field_114_15;
|
||||
public QuestDefThing field_114_16;
|
||||
}
|
||||
|
||||
public class Quest
|
||||
{
|
||||
public int seed;
|
||||
public string name;
|
||||
public QuestDefiniton questDef;
|
||||
|
||||
|
||||
public Quest(string name)
|
||||
{
|
||||
this.name = name;
|
||||
}
|
||||
}
|
||||
|
||||
public struct QuestDefThing
|
||||
{
|
||||
public int field_0;
|
||||
public int field_4;
|
||||
public byte field_8;
|
||||
public byte field_9;
|
||||
public UInt16 field_A;
|
||||
}
|
||||
}
|
31
PSO2SERVER/Models/ShipData.cs
Normal file
31
PSO2SERVER/Models/ShipData.cs
Normal file
@ -0,0 +1,31 @@
|
||||
using System;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
namespace PolarisServer.Models
|
||||
{
|
||||
public enum ShipStatus : ushort
|
||||
{
|
||||
Unknown = 0,
|
||||
Online,
|
||||
Busy,
|
||||
Full,
|
||||
Offline
|
||||
}
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Unicode)]
|
||||
public unsafe struct ShipEntry
|
||||
{
|
||||
public UInt32 number;
|
||||
|
||||
[MarshalAs(UnmanagedType.ByValTStr, SizeConst = 16)]
|
||||
public string name;
|
||||
|
||||
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 4)]
|
||||
public byte[] ip;
|
||||
|
||||
public UInt32 zero;
|
||||
public ShipStatus status;
|
||||
public UInt16 order;
|
||||
public UInt32 unknown;
|
||||
}
|
||||
}
|
100
PSO2SERVER/Network/SocketClient.cs
Normal file
100
PSO2SERVER/Network/SocketClient.cs
Normal file
@ -0,0 +1,100 @@
|
||||
using System.Net.Sockets;
|
||||
|
||||
namespace PolarisServer.Network
|
||||
{
|
||||
public class SocketClient
|
||||
{
|
||||
public delegate void ConnectionLostDelegate();
|
||||
|
||||
public delegate void DataReceivedDelegate(byte[] data, int size);
|
||||
|
||||
private readonly byte[] _readBuffer, _writeBuffer;
|
||||
private readonly SocketServer _server;
|
||||
private int _writePosition = 0;
|
||||
|
||||
public SocketClient(SocketServer server, TcpClient socket)
|
||||
{
|
||||
_server = server;
|
||||
Socket = socket;
|
||||
|
||||
_readBuffer = new byte[1024 * 16];
|
||||
_writeBuffer = new byte[1024 * 1024]; // too high? too low? not sure
|
||||
}
|
||||
|
||||
public TcpClient Socket { get; private set; }
|
||||
public event DataReceivedDelegate DataReceived;
|
||||
public event ConnectionLostDelegate ConnectionLost;
|
||||
|
||||
public bool NeedsToWrite { get { return (_writePosition > 0); } }
|
||||
|
||||
public bool OnReadable()
|
||||
{
|
||||
try
|
||||
{
|
||||
var read = Socket.Client.Receive(_readBuffer);
|
||||
if (read == 0)
|
||||
{
|
||||
// Connection failed, presumably
|
||||
ConnectionLost();
|
||||
_server.NotifyConnectionClosed(this);
|
||||
return false;
|
||||
}
|
||||
|
||||
DataReceived(_readBuffer, read);
|
||||
|
||||
return true;
|
||||
}
|
||||
catch (SocketException)
|
||||
{
|
||||
ConnectionLost();
|
||||
_server.NotifyConnectionClosed(this);
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
public bool OnWritable()
|
||||
{
|
||||
try
|
||||
{
|
||||
var write = Socket.Client.Send(_writeBuffer, 0, _writePosition, SocketFlags.None);
|
||||
if (write == 0)
|
||||
{
|
||||
// Connection failed, presumably
|
||||
ConnectionLost();
|
||||
_server.NotifyConnectionClosed(this);
|
||||
return false;
|
||||
}
|
||||
|
||||
System.Array.Copy(_writeBuffer, write, _writeBuffer, 0, _writePosition - write);
|
||||
_writePosition -= write;
|
||||
|
||||
return true;
|
||||
}
|
||||
catch (SocketException)
|
||||
{
|
||||
ConnectionLost();
|
||||
_server.NotifyConnectionClosed(this);
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
public void Write(byte[] blob)
|
||||
{
|
||||
if ((_writePosition + blob.Length) > _writeBuffer.Length)
|
||||
{
|
||||
// Buffer exceeded!
|
||||
throw new System.Exception("too much data in write queue");
|
||||
}
|
||||
|
||||
System.Array.Copy(blob, 0, _writeBuffer, _writePosition, blob.Length);
|
||||
_writePosition += blob.Length;
|
||||
}
|
||||
|
||||
public void Close()
|
||||
{
|
||||
ConnectionLost();
|
||||
_server.NotifyConnectionClosed(this);
|
||||
Socket.Close();
|
||||
}
|
||||
}
|
||||
}
|
92
PSO2SERVER/Network/SocketServer.cs
Normal file
92
PSO2SERVER/Network/SocketServer.cs
Normal file
@ -0,0 +1,92 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Net;
|
||||
using System.Net.Sockets;
|
||||
|
||||
namespace PolarisServer.Network
|
||||
{
|
||||
public class SocketServer
|
||||
{
|
||||
public delegate void NewClientDelegate(SocketClient client);
|
||||
|
||||
private readonly List<SocketClient> _clients = new List<SocketClient>();
|
||||
private readonly TcpListener _listener;
|
||||
private readonly List<Socket> _readableSockets = new List<Socket>();
|
||||
private readonly List<Socket> _writableSockets = new List<Socket>();
|
||||
private readonly Dictionary<Socket, SocketClient> _socketMap = new Dictionary<Socket, SocketClient>();
|
||||
private int _port;
|
||||
|
||||
public SocketServer(int port)
|
||||
{
|
||||
_port = port;
|
||||
|
||||
_listener = new TcpListener(IPAddress.Any, port);
|
||||
_listener.Start();
|
||||
}
|
||||
|
||||
public IList<SocketClient> Clients
|
||||
{
|
||||
get { return _clients.AsReadOnly(); }
|
||||
}
|
||||
|
||||
public event NewClientDelegate NewClient;
|
||||
|
||||
public void Run()
|
||||
{
|
||||
try
|
||||
{
|
||||
// Compile a list of possibly-readable sockets
|
||||
_readableSockets.Clear();
|
||||
_readableSockets.Add(_listener.Server);
|
||||
_writableSockets.Clear();
|
||||
|
||||
foreach (var client in _clients)
|
||||
{
|
||||
_readableSockets.Add(client.Socket.Client);
|
||||
if (client.NeedsToWrite)
|
||||
_writableSockets.Add(client.Socket.Client);
|
||||
}
|
||||
|
||||
Socket.Select(_readableSockets, _writableSockets, null, 1000000);
|
||||
|
||||
foreach (var socket in _readableSockets)
|
||||
{
|
||||
if (socket == _listener.Server)
|
||||
{
|
||||
// New connection
|
||||
Logger.WriteInternal("[HI!] 新的客户端接入!");
|
||||
|
||||
var c = new SocketClient(this, _listener.AcceptTcpClient());
|
||||
|
||||
_clients.Add(c);
|
||||
_socketMap.Add(c.Socket.Client, c);
|
||||
|
||||
NewClient(c);
|
||||
}
|
||||
else
|
||||
{
|
||||
// Readable data
|
||||
if (socket.Connected)
|
||||
_socketMap[socket].OnReadable();
|
||||
}
|
||||
}
|
||||
|
||||
foreach (var socket in _writableSockets)
|
||||
if (socket.Connected)
|
||||
_socketMap[socket].OnWritable();
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
Logger.WriteException("A socket error occurred", ex);
|
||||
}
|
||||
}
|
||||
|
||||
internal void NotifyConnectionClosed(SocketClient client)
|
||||
{
|
||||
Console.WriteLine("连接关闭");
|
||||
|
||||
_socketMap.Remove(client.Socket.Client);
|
||||
_clients.Remove(client);
|
||||
}
|
||||
}
|
||||
}
|
144
PSO2SERVER/Object/ObjectManager.cs
Normal file
144
PSO2SERVER/Object/ObjectManager.cs
Normal file
@ -0,0 +1,144 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
|
||||
using Newtonsoft.Json;
|
||||
|
||||
using PolarisServer.Database;
|
||||
using PolarisServer.Models;
|
||||
|
||||
namespace PolarisServer.Object
|
||||
{
|
||||
class ObjectManager
|
||||
{
|
||||
private static readonly ObjectManager instance = new ObjectManager();
|
||||
|
||||
private Dictionary<String, Dictionary<ulong, PSOObject>> zoneObjects = new Dictionary<string, Dictionary<ulong, PSOObject>>();
|
||||
|
||||
private Dictionary<ulong, PSOObject> allTheObjects = new Dictionary<ulong, PSOObject>();
|
||||
|
||||
private ObjectManager() { }
|
||||
|
||||
public static ObjectManager Instance
|
||||
{
|
||||
get
|
||||
{
|
||||
return instance;
|
||||
}
|
||||
}
|
||||
|
||||
public PSOObject[] GetObjectsForZone(string zone)
|
||||
{
|
||||
if (zone == "tpmap") // Return empty object array for an tp'd map for now (We spawn in a teleporter manually)
|
||||
{
|
||||
return new PSOObject[0];
|
||||
}
|
||||
if (!zoneObjects.ContainsKey(zone))
|
||||
{
|
||||
Dictionary<ulong, PSOObject> objects = new Dictionary<ulong, PSOObject>();
|
||||
|
||||
// Collect from db
|
||||
using (var db = new PolarisEf())
|
||||
{
|
||||
var dbObjects = from dbo in db.GameObjects
|
||||
where dbo.ZoneName == zone
|
||||
select dbo;
|
||||
|
||||
foreach(var dbObject in dbObjects)
|
||||
{
|
||||
var newObject = PSOObject.FromDBObject(dbObject);
|
||||
objects.Add(newObject.Header.ID, newObject);
|
||||
allTheObjects.Add(newObject.Header.ID, newObject);
|
||||
Logger.WriteInternal("[OBJ] Loaded object {0} for zone {1} from the DB.", newObject.Name, zone);
|
||||
}
|
||||
}
|
||||
|
||||
// Fallback
|
||||
if (objects.Count < 1 && Directory.Exists("Resources/objects/" + zone))
|
||||
{
|
||||
Logger.WriteWarning("[OBJ] No objects defined for zone {0} in the database, falling back to filesystem!", zone);
|
||||
var objectPaths = Directory.GetFiles("Resources/objects/" + zone);
|
||||
Array.Sort(objectPaths);
|
||||
foreach (var path in objectPaths)
|
||||
{
|
||||
if (Path.GetExtension(path) == ".bin")
|
||||
{
|
||||
var newObject = PSOObject.FromPacketBin(File.ReadAllBytes(path));
|
||||
objects.Add(newObject.Header.ID, newObject);
|
||||
allTheObjects.Add(newObject.Header.ID, newObject);
|
||||
Logger.WriteInternal("[OBJ] Loaded object ID {0} with name {1} pos: ({2}, {3}, {4})", newObject.Header.ID, newObject.Name, newObject.Position.PosX,
|
||||
newObject.Position.PosY, newObject.Position.PosZ);
|
||||
}
|
||||
else if (Path.GetExtension(path) == ".json")
|
||||
{
|
||||
var newObject = JsonConvert.DeserializeObject<PSOObject>(File.ReadAllText(path));
|
||||
objects.Add(newObject.Header.ID, newObject);
|
||||
allTheObjects.Add(newObject.Header.ID, newObject);
|
||||
Logger.WriteInternal("[OBJ] Loaded object ID {0} with name {1} pos: ({2}, {3}, {4})", newObject.Header.ID, newObject.Name, newObject.Position.PosX,
|
||||
newObject.Position.PosY, newObject.Position.PosZ);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
zoneObjects.Add(zone, objects);
|
||||
|
||||
}
|
||||
|
||||
return zoneObjects[zone].Values.ToArray();
|
||||
|
||||
}
|
||||
|
||||
internal PSONPC[] getNPCSForZone(string zone)
|
||||
{
|
||||
List<PSONPC> npcs = new List<PSONPC>();
|
||||
using (var db = new PolarisEf())
|
||||
{
|
||||
var dbNpcs = from n in db.NPCs
|
||||
where n.ZoneName == zone
|
||||
select n;
|
||||
|
||||
foreach (NPC npc in dbNpcs)
|
||||
{
|
||||
PSONPC dNpc = new PSONPC();
|
||||
dNpc.Header = new ObjectHeader((uint)npc.EntityID, EntityType.Object);
|
||||
dNpc.Position = new PSOLocation(npc.RotX, npc.RotY, npc.RotZ, npc.RotW, npc.PosX, npc.PosY, npc.PosZ);
|
||||
dNpc.Name = npc.NPCName;
|
||||
|
||||
npcs.Add(dNpc);
|
||||
if (!zoneObjects[zone].ContainsKey(dNpc.Header.ID))
|
||||
{
|
||||
zoneObjects[zone].Add(dNpc.Header.ID, dNpc);
|
||||
}
|
||||
if (!allTheObjects.ContainsKey(dNpc.Header.ID))
|
||||
allTheObjects.Add(dNpc.Header.ID, dNpc);
|
||||
}
|
||||
}
|
||||
|
||||
return npcs.ToArray();
|
||||
}
|
||||
|
||||
internal PSOObject getObjectByID(string zone, uint ID)
|
||||
{
|
||||
//FIXME: This has been commented out because we were getting object errors with possible shared objects? That or it was just object 1 which is an edge case.
|
||||
//if(!zoneObjects.ContainsKey(zone) || !zoneObjects[zone].ContainsKey(ID))
|
||||
//{
|
||||
// throw new Exception(String.Format("Object ID {0} does not exist in {1}!", ID, zone));
|
||||
//}
|
||||
|
||||
//return zoneObjects[zone][ID];
|
||||
return getObjectByID(ID);
|
||||
}
|
||||
|
||||
internal PSOObject getObjectByID(uint ID)
|
||||
{
|
||||
if (!allTheObjects.ContainsKey(ID))
|
||||
{
|
||||
Logger.WriteWarning("[OBJ] Client requested object {0} which we don't know about. Investigate.", ID);
|
||||
return new PSOObject() { Header = new ObjectHeader(ID, EntityType.Object), Name = "Unknown" };
|
||||
}
|
||||
|
||||
return allTheObjects[ID];
|
||||
}
|
||||
}
|
||||
}
|
243
PSO2SERVER/PSO2SERVER.csproj
Normal file
243
PSO2SERVER/PSO2SERVER.csproj
Normal file
@ -0,0 +1,243 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="Build" ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<Import Project="..\packages\EntityFramework.6.4.4\build\EntityFramework.props" Condition="Exists('..\packages\EntityFramework.6.4.4\build\EntityFramework.props')" />
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
|
||||
<ProjectGuid>{E54FC88C-B212-4F47-B2F1-927D39EE3DBA}</ProjectGuid>
|
||||
<OutputType>Exe</OutputType>
|
||||
<RootNamespace>PSO2SERVER</RootNamespace>
|
||||
<AssemblyName>PSO2SERVER</AssemblyName>
|
||||
<ReleaseVersion>0.1.0-pre</ReleaseVersion>
|
||||
<StartupObject>PolarisServer.PolarisApp</StartupObject>
|
||||
<NuGetPackageImportStamp>
|
||||
</NuGetPackageImportStamp>
|
||||
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
|
||||
<TargetFrameworkProfile />
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>full</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>bin\Debug</OutputPath>
|
||||
<DefineConstants>DEBUG;</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<Externalconsole>true</Externalconsole>
|
||||
<PlatformTarget>x86</PlatformTarget>
|
||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||||
<LangVersion>7.0</LangVersion>
|
||||
<Prefer32Bit>false</Prefer32Bit>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
|
||||
<DebugType>full</DebugType>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>bin\Release</OutputPath>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<Externalconsole>true</Externalconsole>
|
||||
<PlatformTarget>x86</PlatformTarget>
|
||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||||
<LangVersion>7.0</LangVersion>
|
||||
<Prefer32Bit>false</Prefer32Bit>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<OutputPath>bin\Debug\</OutputPath>
|
||||
<DefineConstants>DEBUG;</DefineConstants>
|
||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||||
<DebugType>full</DebugType>
|
||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||
<LangVersion>7.0</LangVersion>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<Prefer32Bit>false</Prefer32Bit>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'">
|
||||
<OutputPath>bin\Release\</OutputPath>
|
||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||||
<Optimize>true</Optimize>
|
||||
<DebugType>full</DebugType>
|
||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||
<LangVersion>7.0</LangVersion>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<Prefer32Bit>false</Prefer32Bit>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="BouncyCastle.Cryptography, Version=2.0.0.0, Culture=neutral, PublicKeyToken=072edcf4a5328938, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\BouncyCastle.Cryptography.2.4.0\lib\net461\BouncyCastle.Cryptography.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\EntityFramework.6.4.4\lib\net45\EntityFramework.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="EntityFramework.SqlServer, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\EntityFramework.6.4.4\lib\net45\EntityFramework.SqlServer.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Google.Protobuf, Version=3.28.0.0, Culture=neutral, PublicKeyToken=a7d26565bac4d604, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\Google.Protobuf.3.28.0\lib\net45\Google.Protobuf.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="K4os.Compression.LZ4, Version=1.3.8.0, Culture=neutral, PublicKeyToken=2186fa9121ef231d, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\K4os.Compression.LZ4.1.3.8\lib\net462\K4os.Compression.LZ4.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="K4os.Compression.LZ4.Streams, Version=1.3.8.0, Culture=neutral, PublicKeyToken=2186fa9121ef231d, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\K4os.Compression.LZ4.Streams.1.3.8\lib\net462\K4os.Compression.LZ4.Streams.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="K4os.Hash.xxHash, Version=1.0.8.0, Culture=neutral, PublicKeyToken=32cd54395057cec3, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\K4os.Hash.xxHash.1.0.8\lib\net462\K4os.Hash.xxHash.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Microsoft.Bcl.AsyncInterfaces, Version=8.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\Microsoft.Bcl.AsyncInterfaces.8.0.0\lib\net462\Microsoft.Bcl.AsyncInterfaces.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Microsoft.CSharp" />
|
||||
<Reference Include="MySql.Data, Version=9.0.0.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\MySql.Data.9.0.0\lib\net48\MySql.Data.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="MySql.Data.EntityFramework, Version=9.0.0.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\MySql.Data.EntityFramework.9.0.0\lib\net48\MySql.Data.EntityFramework.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\Newtonsoft.Json.13.0.3\lib\net40\Newtonsoft.Json.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.Buffers, Version=4.0.3.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\System.Buffers.4.5.1\lib\net461\System.Buffers.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="System.Configuration" />
|
||||
<Reference Include="System.Configuration.ConfigurationManager, Version=8.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\System.Configuration.ConfigurationManager.8.0.0\lib\net462\System.Configuration.ConfigurationManager.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="System.Data.DataSetExtensions" />
|
||||
<Reference Include="System.Data.Linq" />
|
||||
<Reference Include="System.ComponentModel.DataAnnotations" />
|
||||
<Reference Include="System.Data" />
|
||||
<Reference Include="BCrypt.Net">
|
||||
<HintPath>..\packages\BCrypt-Official.0.1.109\lib\BCrypt.Net.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="System.Diagnostics.DiagnosticSource, Version=8.0.0.1, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\System.Diagnostics.DiagnosticSource.8.0.1\lib\net462\System.Diagnostics.DiagnosticSource.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="System.IO.Pipelines, Version=8.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\System.IO.Pipelines.8.0.0\lib\net462\System.IO.Pipelines.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="System.Management" />
|
||||
<Reference Include="System.Memory, Version=4.0.1.2, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\System.Memory.4.5.5\lib\net461\System.Memory.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="System.Numerics" />
|
||||
<Reference Include="System.Numerics.Vectors, Version=4.1.4.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\System.Numerics.Vectors.4.5.0\lib\net46\System.Numerics.Vectors.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="System.Runtime.CompilerServices.Unsafe, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\System.Runtime.CompilerServices.Unsafe.6.0.0\lib\net461\System.Runtime.CompilerServices.Unsafe.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="System.Security" />
|
||||
<Reference Include="System.Threading.Tasks.Extensions, Version=4.2.0.1, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\System.Threading.Tasks.Extensions.4.5.4\lib\net461\System.Threading.Tasks.Extensions.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="System.Transactions" />
|
||||
<Reference Include="System.Xml" />
|
||||
<Reference Include="ZstdSharp, Version=0.8.1.0, Culture=neutral, PublicKeyToken=8d151af33a4ad5cf, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\ZstdSharp.Port.0.8.1\lib\net462\ZstdSharp.dll</HintPath>
|
||||
</Reference>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="Config.cs" />
|
||||
<Compile Include="ConsoleSystem.cs" />
|
||||
<Compile Include="Logger.cs" />
|
||||
<Compile Include="Models\PSO2Item.cs" />
|
||||
<Compile Include="Models\PSOData.cs" />
|
||||
<Compile Include="Models\PSOObject.cs" />
|
||||
<Compile Include="Models\Quest.cs" />
|
||||
<Compile Include="Object\ObjectManager.cs" />
|
||||
<Compile Include="Packets\Handlers\CampshipTeleport.cs" />
|
||||
<Compile Include="Packets\Handlers\CasinoTeleportHandler.cs" />
|
||||
<Compile Include="Packets\Handlers\CharacterSpawn.cs" />
|
||||
<Compile Include="Packets\Handlers\ObjectInteract.cs" />
|
||||
<Compile Include="Packets\Handlers\QuestCounterHandler.cs" />
|
||||
<Compile Include="Packets\Handlers\ReturnToLobbyHandler.cs" />
|
||||
<Compile Include="Packets\Handlers\SymbolArtHandler.cs" />
|
||||
<Compile Include="Packets\PSOPackets\GuildInfoPacket.cs" />
|
||||
<Compile Include="Packets\PSOPackets\LoginDataPacket.cs" />
|
||||
<Compile Include="Packets\PSOPackets\MovementPacket.cs" />
|
||||
<Compile Include="Packets\PSOPackets\ObjectActionPacket.cs" />
|
||||
<Compile Include="Packets\PSOPackets\PalettePacket.cs" />
|
||||
<Compile Include="Packets\PSOPackets\PartyInitPacket.cs" />
|
||||
<Compile Include="Packets\PSOPackets\QuestStartPacket.cs" />
|
||||
<Compile Include="Packets\PSOPackets\QuestDifficultyPacket.cs" />
|
||||
<Compile Include="Packets\PSOPackets\QuestAvailablePacket.cs" />
|
||||
<Compile Include="Packets\PSOPackets\QuestListPacket.cs" />
|
||||
<Compile Include="Packets\PSOPackets\SetCurrencyPacket.cs" />
|
||||
<Compile Include="Packets\PSOPackets\SetMesetaPacket.cs" />
|
||||
<Compile Include="Packets\PSOPackets\SetQuestPacket.cs" />
|
||||
<Compile Include="Packets\PSOPackets\SetScenePacket.cs" />
|
||||
<Compile Include="Packets\PSOPackets\SymbolArtList.cs" />
|
||||
<Compile Include="Packets\PSOPackets\TeleportTransferPacket.cs" />
|
||||
<Compile Include="Party\Party.cs" />
|
||||
<Compile Include="Party\PartyManager.cs" />
|
||||
<Compile Include="Program.cs" />
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
<Compile Include="Client.cs" />
|
||||
<Compile Include="Network\SocketClient.cs" />
|
||||
<Compile Include="Network\SocketServer.cs" />
|
||||
<Compile Include="Server.cs" />
|
||||
<Compile Include="Packets\Handlers\PacketHandler.cs" />
|
||||
<Compile Include="Packets\Handlers\KeyExchange.cs" />
|
||||
<Compile Include="Packets\Handlers\Login.cs" />
|
||||
<Compile Include="Models\Character.cs" />
|
||||
<Compile Include="Packets\Handlers\SimplePackets.cs" />
|
||||
<Compile Include="Packets\PacketWriter.cs" />
|
||||
<Compile Include="Models\FixedPackets.cs" />
|
||||
<Compile Include="QueryServer.cs" />
|
||||
<Compile Include="Models\ShipData.cs" />
|
||||
<Compile Include="Database\PolarisEF.cs" />
|
||||
<Compile Include="Crypto\RC4.cs" />
|
||||
<Compile Include="Crypto\ARC4Managed.cs" />
|
||||
<Compile Include="Helper.cs" />
|
||||
<Compile Include="Packets\PacketReader.cs" />
|
||||
<Compile Include="Packets\Handlers\CharacterCreate.cs" />
|
||||
<Compile Include="Packets\Handlers\CharacterList.cs" />
|
||||
<Compile Include="Packets\Packet.cs" />
|
||||
<Compile Include="Packets\PSOPackets\SystemMessagePacket.cs" />
|
||||
<Compile Include="Packets\Handlers\StartGame.cs" />
|
||||
<Compile Include="Packets\PSOPackets\NoPayloadPacket.cs" />
|
||||
<Compile Include="Packets\PSOPackets\CharacterSpawnPacket.cs" />
|
||||
<Compile Include="Packets\Handlers\MovementHandlers.cs" />
|
||||
<Compile Include="Packets\Handlers\ChatHandler.cs" />
|
||||
<Compile Include="Zone\Map.cs" />
|
||||
<Compile Include="Zone\ZoneManager.cs" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
|
||||
<Import Project="..\packages\System.Data.SQLite.Core.1.0.94.0\build\net40\System.Data.SQLite.Core.targets" Condition="Exists('..\packages\System.Data.SQLite.Core.1.0.94.0\build\net40\System.Data.SQLite.Core.targets')" />
|
||||
<ItemGroup />
|
||||
<ProjectExtensions>
|
||||
<MonoDevelop>
|
||||
<Properties>
|
||||
<Policies>
|
||||
<TextStylePolicy inheritsSet="VisualStudio" inheritsScope="text/plain" scope="text/x-csharp" />
|
||||
<CSharpFormattingPolicy IndentSwitchBody="True" IndentBlocksInsideExpressions="True" AnonymousMethodBraceStyle="NextLine" PropertyBraceStyle="NextLine" PropertyGetBraceStyle="NextLine" PropertySetBraceStyle="NextLine" EventBraceStyle="NextLine" EventAddBraceStyle="NextLine" EventRemoveBraceStyle="NextLine" StatementBraceStyle="NextLine" ElseNewLinePlacement="NewLine" CatchNewLinePlacement="NewLine" FinallyNewLinePlacement="NewLine" WhileNewLinePlacement="DoNotCare" ArrayInitializerWrapping="DoNotChange" ArrayInitializerBraceStyle="NextLine" BeforeMethodDeclarationParentheses="False" BeforeMethodCallParentheses="False" BeforeConstructorDeclarationParentheses="False" NewLineBeforeConstructorInitializerColon="NewLine" NewLineAfterConstructorInitializerColon="SameLine" BeforeDelegateDeclarationParentheses="False" NewParentheses="False" SpacesBeforeBrackets="False" inheritsSet="Mono" inheritsScope="text/x-csharp" scope="text/x-csharp" />
|
||||
<TextStylePolicy inheritsSet="VisualStudio" inheritsScope="text/plain" scope="text/plain" />
|
||||
</Policies>
|
||||
</Properties>
|
||||
</MonoDevelop>
|
||||
</ProjectExtensions>
|
||||
<ItemGroup>
|
||||
<None Include="packages.config" />
|
||||
<None Include="app.config" />
|
||||
<CopyItems Include="Resources\**\*" Exclude="Resources\.git" />
|
||||
</ItemGroup>
|
||||
<Target Name="CopyFiles">
|
||||
<Copy SourceFiles="@(CopyItems)" DestinationFolder="$(OutputPath)\\Resources\\%(CopyItems.RecursiveDir)" />
|
||||
</Target>
|
||||
<ItemGroup />
|
||||
<PropertyGroup>
|
||||
<PostBuildEvent>
|
||||
</PostBuildEvent>
|
||||
</PropertyGroup>
|
||||
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
|
||||
<PropertyGroup>
|
||||
<ErrorText>这台计算机上缺少此项目引用的 NuGet 程序包。使用“NuGet 程序包还原”可下载这些程序包。有关更多信息,请参见 http://go.microsoft.com/fwlink/?LinkID=322105。缺少的文件是 {0}。</ErrorText>
|
||||
</PropertyGroup>
|
||||
<Error Condition="!Exists('..\packages\EntityFramework.6.4.4\build\EntityFramework.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\EntityFramework.6.4.4\build\EntityFramework.props'))" />
|
||||
<Error Condition="!Exists('..\packages\EntityFramework.6.4.4\build\EntityFramework.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\EntityFramework.6.4.4\build\EntityFramework.targets'))" />
|
||||
</Target>
|
||||
<Import Project="..\packages\EntityFramework.6.4.4\build\EntityFramework.targets" Condition="Exists('..\packages\EntityFramework.6.4.4\build\EntityFramework.targets')" />
|
||||
</Project>
|
46
PSO2SERVER/Packets/Handlers/CampshipTeleport.cs
Normal file
46
PSO2SERVER/Packets/Handlers/CampshipTeleport.cs
Normal file
@ -0,0 +1,46 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using PolarisServer.Models;
|
||||
using PolarisServer.Zone;
|
||||
|
||||
namespace PolarisServer.Packets.Handlers
|
||||
{
|
||||
[PacketHandlerAttr(0x3, 0x12)]
|
||||
class CampshipTeleport : PacketHandler
|
||||
{
|
||||
public override void HandlePacket(Client context, byte flags, byte[] data, uint position, uint size)
|
||||
{
|
||||
if (context.currentParty.currentQuest == null)
|
||||
return;
|
||||
|
||||
var instanceName = String.Format("{0}-{1}", context.currentParty.currentQuest.name, context.User.Nickname);
|
||||
ZoneManager.Instance.NewInstance(instanceName, new Map("campship", 150, 0, Map.MapType.Campship, 0));
|
||||
// todo: add next map
|
||||
ZoneManager.Instance.AddMapToInstance(instanceName, new Map("area1", 311, -1, Map.MapType.Other, (Map.MapFlags)0x6) { GenerationArgs = new Map.GenParam((uint)new Random().Next(), 2, 3)});
|
||||
Map campship = ZoneManager.Instance.MapFromInstance("campship", instanceName);
|
||||
|
||||
campship.SpawnClient(context, new PSOLocation(0, 1, 0, 0, 0, 0, 0), context.currentParty.currentQuest.name);
|
||||
}
|
||||
}
|
||||
|
||||
[PacketHandlerAttr(0x4, 0x13)]
|
||||
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));
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
29
PSO2SERVER/Packets/Handlers/CasinoTeleportHandler.cs
Normal file
29
PSO2SERVER/Packets/Handlers/CasinoTeleportHandler.cs
Normal file
@ -0,0 +1,29 @@
|
||||
using PolarisServer.Models;
|
||||
using PolarisServer.Object;
|
||||
using PolarisServer.Packets.PSOPackets;
|
||||
using PolarisServer.Zone;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace PolarisServer.Packets.Handlers
|
||||
{
|
||||
[PacketHandlerAttr(0x3, 0x35)]
|
||||
class CasinoTeleportHandler : PacketHandler
|
||||
{
|
||||
public override void HandlePacket(Client context, byte flags, byte[] data, uint position, uint size)
|
||||
{
|
||||
if (context.User == null)
|
||||
return;
|
||||
|
||||
// Dunno what these are yet.
|
||||
context.SendPacket(0x11, 0xA, 0x0, BitConverter.GetBytes(context.User.PlayerId));
|
||||
context.SendPacket(0x1E, 0xC, 0x0, BitConverter.GetBytes(101));
|
||||
|
||||
Map casinoMap = ZoneManager.Instance.MapFromInstance("casino", "lobby");
|
||||
casinoMap.SpawnClient(context, casinoMap.GetDefaultLocation());
|
||||
|
||||
}
|
||||
}
|
||||
}
|
63
PSO2SERVER/Packets/Handlers/CharacterCreate.cs
Normal file
63
PSO2SERVER/Packets/Handlers/CharacterCreate.cs
Normal file
@ -0,0 +1,63 @@
|
||||
using System.IO;
|
||||
using System.Data.Entity;
|
||||
using PolarisServer.Models;
|
||||
using PolarisServer.Packets.PSOPackets;
|
||||
using PolarisServer.Database;
|
||||
|
||||
namespace PolarisServer.Packets.Handlers
|
||||
{
|
||||
[PacketHandlerAttr(0x11, 0x05)]
|
||||
public class CharacterCreate : PacketHandler
|
||||
{
|
||||
#region implemented abstract members of PacketHandler
|
||||
|
||||
public override void HandlePacket(Client context, byte flags, byte[] data, uint position, uint size)
|
||||
{
|
||||
if (context.User == null)
|
||||
return;
|
||||
|
||||
var reader = new PacketReader(data, position, size);
|
||||
|
||||
reader.ReadBytes(12); // 12 unknown bytes
|
||||
reader.ReadByte(); // VoiceType
|
||||
reader.ReadBytes(5); // 5 unknown bytes
|
||||
reader.ReadUInt16(); // VoiceData
|
||||
var name = reader.ReadFixedLengthUtf16(16);
|
||||
|
||||
reader.BaseStream.Seek(0x4, SeekOrigin.Current); // Padding
|
||||
var looks = reader.ReadStruct<Character.LooksParam>();
|
||||
var jobs = reader.ReadStruct<Character.JobParam>();
|
||||
|
||||
Logger.WriteInternal("[CHR] {0} 创建了名为 {1} 的新角色.", context.User.Username, name);
|
||||
var newCharacter = new Character
|
||||
{
|
||||
Name = name,
|
||||
Jobs = jobs,
|
||||
Looks = looks,
|
||||
Player = context.User
|
||||
};
|
||||
|
||||
// Add to database
|
||||
using (var db = new PolarisEf())
|
||||
{
|
||||
db.Characters.Add(newCharacter);
|
||||
db.Entry(newCharacter.Player).State = EntityState.Modified;
|
||||
db.SaveChanges();
|
||||
}
|
||||
|
||||
// Assign character to player
|
||||
context.Character = newCharacter;
|
||||
|
||||
// Set Player ID
|
||||
var writer = new PacketWriter();
|
||||
writer.Write(0);
|
||||
writer.Write((uint) context.User.PlayerId);
|
||||
context.SendPacket(0x11, 0x07, 0, writer.ToArray());
|
||||
|
||||
// Spawn
|
||||
context.SendPacket(new NoPayloadPacket(0x11, 0x3E));
|
||||
}
|
||||
|
||||
#endregion
|
||||
}
|
||||
}
|
61
PSO2SERVER/Packets/Handlers/CharacterList.cs
Normal file
61
PSO2SERVER/Packets/Handlers/CharacterList.cs
Normal file
@ -0,0 +1,61 @@
|
||||
using PolarisServer.Database;
|
||||
using System.Linq;
|
||||
|
||||
namespace PolarisServer.Packets.Handlers
|
||||
{
|
||||
[PacketHandlerAttr(0x11, 0x02)]
|
||||
public class CharacterList : PacketHandler
|
||||
{
|
||||
#region implemented abstract members of PacketHandler
|
||||
|
||||
public override void HandlePacket(Client context, byte flags, byte[] data, uint position, uint size)
|
||||
{
|
||||
if (context.User == null)
|
||||
return;
|
||||
|
||||
var writer = new PacketWriter();
|
||||
|
||||
using (var db = new PolarisEf())
|
||||
{
|
||||
var chars = db.Characters
|
||||
.Where(w => w.Player.PlayerId == context.User.PlayerId)
|
||||
.OrderBy(o => o.CharacterId) // TODO: Order by last played
|
||||
.Select(s => s);
|
||||
|
||||
writer.Write((uint)chars.Count()); // Number of characters
|
||||
|
||||
for (var i = 0; i < 0x4; i++) // Whatever this is
|
||||
writer.Write((byte)0);
|
||||
|
||||
foreach (var ch in chars)
|
||||
{
|
||||
writer.Write((uint)ch.CharacterId);
|
||||
writer.Write((uint)context.User.PlayerId);
|
||||
|
||||
for (var i = 0; i < 0x10; i++)
|
||||
writer.Write((byte)0);
|
||||
|
||||
writer.WriteFixedLengthUtf16(ch.Name, 16);
|
||||
writer.Write((uint)0);
|
||||
|
||||
writer.WriteStruct(ch.Looks); // Note: Pre-Episode 4 created looks doesn't seem to work anymore
|
||||
writer.WriteStruct(ch.Jobs);
|
||||
|
||||
for (var i = 0; i < 0xFC; i++)
|
||||
writer.Write((byte)0);
|
||||
}
|
||||
}
|
||||
|
||||
// Ninji note: This packet may be followed by extra data,
|
||||
// after a fixed-length array of character data structures.
|
||||
// Needs more investigation at some point.
|
||||
// ---
|
||||
// CK note: Extra data is likely current equipment, playtime, etc.
|
||||
// All of that data is currently unaccounted for at the moment.
|
||||
|
||||
context.SendPacket(0x11, 0x03, 0, writer.ToArray());
|
||||
}
|
||||
|
||||
#endregion
|
||||
}
|
||||
}
|
55
PSO2SERVER/Packets/Handlers/CharacterSpawn.cs
Normal file
55
PSO2SERVER/Packets/Handlers/CharacterSpawn.cs
Normal file
@ -0,0 +1,55 @@
|
||||
using System;
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using Newtonsoft.Json;
|
||||
using PolarisServer.Models;
|
||||
using PolarisServer.Packets.PSOPackets;
|
||||
using PolarisServer.Object;
|
||||
using PolarisServer.Database;
|
||||
using PolarisServer.Zone;
|
||||
|
||||
namespace PolarisServer.Packets.Handlers
|
||||
{
|
||||
[PacketHandlerAttr(0x11, 0x3E)]
|
||||
public class CharacterSpawn : PacketHandler
|
||||
{
|
||||
#region implemented abstract members of PacketHandler
|
||||
|
||||
public override void HandlePacket(Client context, byte flags, byte[] data, uint position, uint size)
|
||||
{
|
||||
if (context.User == null || context.Character == null)
|
||||
return;
|
||||
|
||||
// Looks/Jobs
|
||||
if (size > 0)
|
||||
{
|
||||
var reader = new PacketReader(data);
|
||||
|
||||
reader.BaseStream.Seek(0x38, SeekOrigin.Begin);
|
||||
context.Character.Looks = reader.ReadStruct<Character.LooksParam>();
|
||||
context.Character.Jobs = reader.ReadStruct<Character.JobParam>();
|
||||
|
||||
using(var db = new PolarisEf())
|
||||
db.ChangeTracker.DetectChanges();
|
||||
}
|
||||
|
||||
Map lobbyMap = ZoneManager.Instance.MapFromInstance("lobby", "lobby");
|
||||
lobbyMap.SpawnClient(context, lobbyMap.GetDefaultLocation(), "lobby");
|
||||
|
||||
// Unlock Controls
|
||||
context.SendPacket(new NoPayloadPacket(0x03, 0x2B));
|
||||
|
||||
//context.SendPacket(File.ReadAllBytes("testbed/237.23-7.210.189.208.30.bin"));
|
||||
|
||||
// Give a blank palette
|
||||
context.SendPacket(new PalettePacket());
|
||||
|
||||
// memset packet - Enables menus
|
||||
// Also holds event items and likely other stuff too
|
||||
var memSetPacket = File.ReadAllBytes("Resources/setMemoryPacket.bin");
|
||||
context.SendPacket(memSetPacket);
|
||||
}
|
||||
|
||||
#endregion
|
||||
}
|
||||
}
|
68
PSO2SERVER/Packets/Handlers/ChatHandler.cs
Normal file
68
PSO2SERVER/Packets/Handlers/ChatHandler.cs
Normal file
@ -0,0 +1,68 @@
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
|
||||
namespace PolarisServer.Packets.Handlers
|
||||
{
|
||||
[PacketHandlerAttr(0x07, 0x00)]
|
||||
public class ChatHandler : PacketHandler
|
||||
{
|
||||
#region implemented abstract members of PacketHandler
|
||||
|
||||
public override void HandlePacket(Client context, byte flags, byte[] data, uint position, uint size)
|
||||
{
|
||||
if (context.Character == null)
|
||||
return;
|
||||
|
||||
var reader = new PacketReader(data, position, size);
|
||||
reader.BaseStream.Seek(0xC, SeekOrigin.Begin);
|
||||
var channel = reader.ReadUInt32();
|
||||
var message = reader.ReadUtf16(0x9D3F, 0x44);
|
||||
|
||||
if (message.StartsWith(PolarisApp.Config.CommandPrefix))
|
||||
{
|
||||
var valid = false;
|
||||
|
||||
// Iterate commands
|
||||
foreach (var command in PolarisApp.ConsoleSystem.Commands)
|
||||
{
|
||||
var full = message.Substring(1); // Strip the command chars
|
||||
var args = full.Split(' ');
|
||||
|
||||
if (command.Names.Any(name => args[0].ToLower() == name.ToLower()))
|
||||
{
|
||||
command.Run(args, args.Length, full, context);
|
||||
valid = true;
|
||||
Logger.WriteCommand(null, "[CMD] {0} 发送指令 {1}", context.User.Username, full);
|
||||
}
|
||||
|
||||
if (valid)
|
||||
break;
|
||||
}
|
||||
|
||||
if (!valid)
|
||||
Logger.WriteClient(context, "[CMD] {0} - 指令不存在", message.Split(' ')[0].Trim('\r'));
|
||||
}
|
||||
else
|
||||
{
|
||||
Logger.Write("[CHT] <{0}> <{1}>", context.Character.Name, message);
|
||||
|
||||
var writer = new PacketWriter();
|
||||
writer.WritePlayerHeader((uint) context.User.PlayerId);
|
||||
writer.Write(channel);
|
||||
writer.WriteUtf16(message, 0x9D3F, 0x44);
|
||||
|
||||
data = writer.ToArray();
|
||||
|
||||
foreach (var c in Server.Instance.Clients)
|
||||
{
|
||||
if (c.Character == null || c.CurrentZone != context.CurrentZone)
|
||||
continue;
|
||||
|
||||
c.SendPacket(0x07, 0x00, 0x44, data);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#endregion
|
||||
}
|
||||
}
|
75
PSO2SERVER/Packets/Handlers/KeyExchange.cs
Normal file
75
PSO2SERVER/Packets/Handlers/KeyExchange.cs
Normal file
@ -0,0 +1,75 @@
|
||||
using System;
|
||||
using System.IO;
|
||||
using System.Security.Cryptography;
|
||||
using PolarisServer.Crypto;
|
||||
|
||||
namespace PolarisServer.Packets.Handlers
|
||||
{
|
||||
[PacketHandlerAttr(0x11, 0xB)]
|
||||
public class KeyExchange : PacketHandler
|
||||
{
|
||||
#region implemented abstract members of PacketHandler
|
||||
|
||||
public override void HandlePacket(Client context, byte flags, byte[] data, uint position, uint size)
|
||||
{
|
||||
if (context.InputArc4 != null)
|
||||
return;
|
||||
|
||||
if (size < 0x80)
|
||||
return;
|
||||
|
||||
// Extract the first 0x80 bytes into a separate array
|
||||
var cryptedBlob = new byte[0x80];
|
||||
Array.Copy(data, position, cryptedBlob, 0, 0x80);
|
||||
Array.Reverse(cryptedBlob);
|
||||
|
||||
// FIXME
|
||||
if (Client.RsaCsp == null)
|
||||
{
|
||||
Client.RsaCsp = new RSACryptoServiceProvider();
|
||||
var rsaBlob = File.ReadAllBytes("privateKey.blob");
|
||||
Client.RsaCsp.ImportCspBlob(rsaBlob);
|
||||
}
|
||||
|
||||
var pkcs = new RSAPKCS1KeyExchangeDeformatter(Client.RsaCsp);
|
||||
byte[] decryptedBlob;
|
||||
|
||||
try
|
||||
{
|
||||
decryptedBlob = pkcs.DecryptKeyExchange(cryptedBlob);
|
||||
}
|
||||
catch (CryptographicException ex)
|
||||
{
|
||||
Logger.WriteException("解密RSA密钥交换时发生错误", ex);
|
||||
context.Socket.Close();
|
||||
return;
|
||||
}
|
||||
|
||||
// Also a failure.
|
||||
if (decryptedBlob.Length < 0x20)
|
||||
return;
|
||||
|
||||
// Extract the RC4 key
|
||||
var arc4Key = new byte[16];
|
||||
Array.Copy(decryptedBlob, 0x10, arc4Key, 0, 0x10);
|
||||
|
||||
// Create three RC4 mungers
|
||||
var arc4 = new Arc4Managed {Key = arc4Key};
|
||||
context.InputArc4 = arc4.CreateDecryptor();
|
||||
|
||||
arc4 = new Arc4Managed {Key = arc4Key};
|
||||
context.OutputArc4 = arc4.CreateEncryptor();
|
||||
|
||||
arc4 = new Arc4Managed {Key = arc4Key};
|
||||
var tempDecryptor = arc4.CreateDecryptor();
|
||||
|
||||
// Also, grab the init token for the client
|
||||
var decryptedToken = new byte[16];
|
||||
tempDecryptor.TransformBlock(decryptedBlob, 0, 0x10, decryptedToken, 0);
|
||||
|
||||
context.SendPacket(0x11, 0xC, 0, decryptedToken);
|
||||
}
|
||||
|
||||
#endregion
|
||||
}
|
||||
}
|
112
PSO2SERVER/Packets/Handlers/Login.cs
Normal file
112
PSO2SERVER/Packets/Handlers/Login.cs
Normal file
@ -0,0 +1,112 @@
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using System.Text.RegularExpressions;
|
||||
using PolarisServer.Database;
|
||||
using PolarisServer.Packets.PSOPackets;
|
||||
using PolarisServer.Models;
|
||||
|
||||
namespace PolarisServer.Packets.Handlers
|
||||
{
|
||||
[PacketHandlerAttr(0x11, 0x0)]
|
||||
public class Login : PacketHandler
|
||||
{
|
||||
#region implemented abstract members of PacketHandler
|
||||
|
||||
public override void HandlePacket(Client context, byte flags, byte[] data, uint position, uint size)
|
||||
{
|
||||
var reader = new PacketReader(data, position, size);
|
||||
|
||||
reader.BaseStream.Seek(0x2C, SeekOrigin.Current);
|
||||
|
||||
var macCount = reader.ReadMagic(0x5E6, 107);
|
||||
reader.BaseStream.Seek(0x1C * macCount, SeekOrigin.Current);
|
||||
|
||||
reader.BaseStream.Seek(0x154, SeekOrigin.Current);
|
||||
|
||||
var username = reader.ReadFixedLengthAscii(64);
|
||||
var password = reader.ReadFixedLengthAscii(64);
|
||||
|
||||
|
||||
// What am I doing here even
|
||||
using (var db = new PolarisEf())
|
||||
{
|
||||
var users = from u in db.Players
|
||||
where u.Username.ToLower().Equals(username.ToLower())
|
||||
select u;
|
||||
|
||||
|
||||
var error = "";
|
||||
Player user;
|
||||
|
||||
if (!users.Any())
|
||||
{
|
||||
// Check if there is an empty field
|
||||
if (string.IsNullOrWhiteSpace(username) || string.IsNullOrWhiteSpace(password))
|
||||
{
|
||||
error = "Username and password fields must not be empty.";
|
||||
user = null;
|
||||
}
|
||||
// Check for special characters
|
||||
else if (!Regex.IsMatch(username, "^[a-zA-Z0-9 ]*$", RegexOptions.IgnoreCase))
|
||||
{
|
||||
error = "Username must not contain special characters.\nPlease use letters and numbers only.";
|
||||
user = null;
|
||||
}
|
||||
else // We're all good!
|
||||
{
|
||||
// Insert new player into database
|
||||
user = new Player
|
||||
{
|
||||
Username = username.ToLower(),
|
||||
Password = BCrypt.Net.BCrypt.HashPassword(password),
|
||||
Nickname = username.ToLower(),
|
||||
// Since we can't display the nickname prompt yet, just default it to the username
|
||||
SettingsIni = File.ReadAllText("Resources/settings.txt")
|
||||
};
|
||||
db.Players.Add(user);
|
||||
db.SaveChanges();
|
||||
|
||||
// context.SendPacket(0x11, 0x1e, 0x0, new byte[0x44]); // Request nickname
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
user = users.First();
|
||||
if (!BCrypt.Net.BCrypt.Verify(password, user.Password))
|
||||
{
|
||||
error = "Incorrect password.";
|
||||
user = null;
|
||||
}
|
||||
}
|
||||
|
||||
/* Mystery packet
|
||||
var mystery = new PacketWriter();
|
||||
mystery.Write((uint)100);
|
||||
SendPacket(0x11, 0x49, 0, mystery.ToArray()); */
|
||||
|
||||
// Login response packet
|
||||
|
||||
context.SendPacket(new LoginDataPacket("Polaris Block 1", error, (user == null) ? (uint)0 : (uint)user.PlayerId));
|
||||
|
||||
if (user == null)
|
||||
return;
|
||||
|
||||
// Settings packet
|
||||
var settings = new PacketWriter();
|
||||
settings.WriteAscii(user.SettingsIni, 0x54AF, 0x100);
|
||||
context.SendPacket(0x2B, 2, 4, settings.ToArray());
|
||||
|
||||
context.User = user;
|
||||
|
||||
}
|
||||
|
||||
if (PolarisApp.Config.motd != "")
|
||||
{
|
||||
context.SendPacket(new SystemMessagePacket(PolarisApp.Config.motd, SystemMessagePacket.MessageType.AdminMessageInstant));
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
#endregion
|
||||
}
|
||||
}
|
329
PSO2SERVER/Packets/Handlers/MovementHandlers.cs
Normal file
329
PSO2SERVER/Packets/Handlers/MovementHandlers.cs
Normal file
@ -0,0 +1,329 @@
|
||||
using PolarisServer.Models;
|
||||
using PolarisServer.Packets.PSOPackets;
|
||||
using System;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
namespace PolarisServer.Packets.Handlers
|
||||
{
|
||||
[PacketHandlerAttr(0x04, 0x07)]
|
||||
public class MovementHandler : PacketHandler
|
||||
{
|
||||
#region implemented abstract members of PacketHandler
|
||||
|
||||
public override void HandlePacket(Client context, byte flags, byte[] data, uint position, uint size)
|
||||
{
|
||||
PacketReader reader = new PacketReader(data);
|
||||
// This packet is "Compressed" basically.
|
||||
reader.ReadBytes(6); // Get past the junk
|
||||
// For simplicity's sake, read the 3 flag bytes into a big int
|
||||
byte[] flagBytes = reader.ReadBytes(3);
|
||||
uint dataFlags = flagBytes[0];
|
||||
dataFlags |= (uint)(flagBytes[1] << 8);
|
||||
dataFlags |= (uint)(flagBytes[2] << 16);
|
||||
|
||||
PackedData theFlags = (PackedData)dataFlags;
|
||||
|
||||
// Debug
|
||||
Logger.WriteInternal("[MOV] Movement packet from {0} contains {1} data.", context.Character.Name, theFlags);
|
||||
|
||||
// TODO: Maybe do this better someday
|
||||
FullMovementData dstData = new FullMovementData();
|
||||
|
||||
if (theFlags.HasFlag(PackedData.ENT1_ID))
|
||||
{
|
||||
dstData.entity1.ID = (uint)reader.ReadUInt64();
|
||||
}
|
||||
if (theFlags.HasFlag(PackedData.ENT1_TYPE))
|
||||
{
|
||||
dstData.entity1.EntityType = (EntityType)reader.ReadUInt16();
|
||||
}
|
||||
if (theFlags.HasFlag(PackedData.ENT1_A))
|
||||
{
|
||||
dstData.entity1.Unknown_A = reader.ReadUInt16();
|
||||
}
|
||||
if (theFlags.HasFlag(PackedData.ENT2_ID))
|
||||
{
|
||||
dstData.entity1.ID = (uint)reader.ReadUInt64();
|
||||
}
|
||||
if (theFlags.HasFlag(PackedData.ENT2_TYPE))
|
||||
{
|
||||
dstData.entity1.EntityType = (EntityType)reader.ReadUInt16();
|
||||
}
|
||||
if (theFlags.HasFlag(PackedData.ENT2_A))
|
||||
{
|
||||
dstData.entity1.Unknown_A = reader.ReadUInt16();
|
||||
}
|
||||
if (theFlags.HasFlag(PackedData.TIMESTAMP))
|
||||
{
|
||||
dstData.timestamp = reader.ReadUInt32();
|
||||
context.MovementTimestamp = dstData.timestamp;
|
||||
}
|
||||
if (theFlags.HasFlag(PackedData.ROT_X))
|
||||
{
|
||||
dstData.rotation.x = reader.ReadUInt16();
|
||||
context.CurrentLocation.RotX = Helper.FloatFromHalfPrecision(dstData.rotation.x);
|
||||
}
|
||||
if (theFlags.HasFlag(PackedData.ROT_Y))
|
||||
{
|
||||
dstData.rotation.y = reader.ReadUInt16();
|
||||
context.CurrentLocation.RotY = Helper.FloatFromHalfPrecision(dstData.rotation.y);
|
||||
}
|
||||
if (theFlags.HasFlag(PackedData.ROT_Z))
|
||||
{
|
||||
dstData.rotation.z = reader.ReadUInt16();
|
||||
context.CurrentLocation.RotZ = Helper.FloatFromHalfPrecision(dstData.rotation.z);
|
||||
}
|
||||
if (theFlags.HasFlag(PackedData.ROT_W))
|
||||
{
|
||||
dstData.rotation.w = reader.ReadUInt16();
|
||||
context.CurrentLocation.RotW = Helper.FloatFromHalfPrecision(dstData.rotation.w);
|
||||
}
|
||||
if (theFlags.HasFlag(PackedData.CUR_X))
|
||||
{
|
||||
dstData.currentPos.x = reader.ReadUInt16();
|
||||
context.CurrentLocation.PosX = Helper.FloatFromHalfPrecision(dstData.currentPos.x);
|
||||
}
|
||||
if (theFlags.HasFlag(PackedData.CUR_Y))
|
||||
{
|
||||
dstData.currentPos.y = reader.ReadUInt16();
|
||||
context.CurrentLocation.PosY = Helper.FloatFromHalfPrecision(dstData.currentPos.y);
|
||||
}
|
||||
if (theFlags.HasFlag(PackedData.CUR_Z))
|
||||
{
|
||||
dstData.currentPos.z = reader.ReadUInt16();
|
||||
context.CurrentLocation.PosZ = Helper.FloatFromHalfPrecision(dstData.currentPos.z);
|
||||
}
|
||||
if (theFlags.HasFlag(PackedData.UNKNOWN4))
|
||||
{
|
||||
dstData.Unknown2 = reader.ReadUInt16();
|
||||
}
|
||||
if (theFlags.HasFlag(PackedData.UNK_X))
|
||||
{
|
||||
dstData.unknownPos.x = reader.ReadUInt16();
|
||||
context.LastLocation.PosX = Helper.FloatFromHalfPrecision(dstData.unknownPos.x);
|
||||
}
|
||||
if (theFlags.HasFlag(PackedData.UNK_Y))
|
||||
{
|
||||
dstData.unknownPos.y = reader.ReadUInt16();
|
||||
context.LastLocation.PosY = Helper.FloatFromHalfPrecision(dstData.unknownPos.y);
|
||||
}
|
||||
if (theFlags.HasFlag(PackedData.UNK_Z))
|
||||
{
|
||||
dstData.unknownPos.z = reader.ReadUInt16();
|
||||
context.LastLocation.PosZ = Helper.FloatFromHalfPrecision(dstData.unknownPos.z);
|
||||
}
|
||||
if (theFlags.HasFlag(PackedData.UNKNOWN5))
|
||||
{
|
||||
dstData.Unknown3 = reader.ReadUInt16();
|
||||
}
|
||||
if (theFlags.HasFlag(PackedData.UNKNOWN6))
|
||||
{
|
||||
if (theFlags.HasFlag(PackedData.UNKNOWN7))
|
||||
{
|
||||
dstData.Unknown4 = reader.ReadByte();
|
||||
}
|
||||
else
|
||||
{
|
||||
dstData.Unknown4 = reader.ReadUInt32();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Logger.WriteInternal("[MOV] Player moving! {0} -> ({1}, {2}, {3})", context.Character.Name, context.CurrentLocation.PosX,
|
||||
context.CurrentLocation.PosY, context.CurrentLocation.PosZ);
|
||||
|
||||
foreach (var c in Server.Instance.Clients)
|
||||
{
|
||||
if (c.Character == null || c == context || c.CurrentZone != context.CurrentZone)
|
||||
continue;
|
||||
|
||||
c.SendPacket(0x4, 0x7, flags, data);
|
||||
}
|
||||
}
|
||||
|
||||
#endregion
|
||||
}
|
||||
|
||||
[PacketHandlerAttr(0x04, 0x71)]
|
||||
public class MovementEndHandler : PacketHandler
|
||||
{
|
||||
#region implemented abstract members of PacketHandler
|
||||
|
||||
public override void HandlePacket(Client context, byte flags, byte[] data, uint position, uint size)
|
||||
{
|
||||
PacketReader reader = new PacketReader(data);
|
||||
FullMovementData movData = reader.ReadStruct<FullMovementData>();
|
||||
|
||||
if (movData.entity1.ID == 0 && movData.entity2.ID != 0)
|
||||
movData.entity1 = movData.entity2;
|
||||
|
||||
|
||||
movData.timestamp = 0;
|
||||
// This could be simplified
|
||||
PacketWriter writer = new PacketWriter();
|
||||
writer.WriteStruct(movData);
|
||||
|
||||
Logger.WriteInternal("[MOV] {0} stopped moving at ({1}, {2}, {3})", context.Character.Name,
|
||||
Helper.FloatFromHalfPrecision(movData.currentPos.x), Helper.FloatFromHalfPrecision(movData.currentPos.y),
|
||||
Helper.FloatFromHalfPrecision(movData.currentPos.z));
|
||||
|
||||
foreach (var c in Server.Instance.Clients)
|
||||
{
|
||||
if (c == context || c.Character == null || c.CurrentZone != context.CurrentZone)
|
||||
continue;
|
||||
|
||||
c.SendPacket(0x04, 0x71, 0x40, writer.ToArray());
|
||||
}
|
||||
}
|
||||
|
||||
#endregion
|
||||
}
|
||||
|
||||
[PacketHandlerAttr(0x4, 0x8)]
|
||||
public class MovementActionHandler : PacketHandler
|
||||
{
|
||||
public override void HandlePacket(Client context, byte flags, byte[] data, uint position, uint size)
|
||||
{
|
||||
PacketReader reader = new PacketReader(data);
|
||||
reader.ReadStruct<ObjectHeader>(); // Skip blank entity header.
|
||||
var preformer = reader.ReadStruct<ObjectHeader>(); // Preformer
|
||||
byte[] preData = reader.ReadBytes(40);
|
||||
string command = reader.ReadAscii(0x922D, 0x45);
|
||||
byte[] rest = reader.ReadBytes(4);
|
||||
uint thingCount = reader.ReadMagic(0x922D, 0x45);
|
||||
byte[] things;
|
||||
PacketWriter thingWriter = new PacketWriter();
|
||||
for (int i = 0; i < thingCount; i++)
|
||||
{
|
||||
thingWriter.Write(reader.ReadBytes(4));
|
||||
}
|
||||
things = thingWriter.ToArray();
|
||||
byte[] final = reader.ReadBytes(4);
|
||||
|
||||
|
||||
Logger.WriteInternal("[ACT] {0} is preforming {1}", context.Character.Name, command);
|
||||
|
||||
foreach (var c in Server.Instance.Clients)
|
||||
{
|
||||
if (c == context || c.Character == null || c.CurrentZone != context.CurrentZone)
|
||||
continue;
|
||||
PacketWriter output = new PacketWriter();
|
||||
output.WriteStruct(new ObjectHeader((uint)context.User.PlayerId, EntityType.Player));
|
||||
output.WriteStruct(preformer);
|
||||
output.Write(preData);
|
||||
output.WriteAscii(command, 0x4315, 0x7A);
|
||||
output.Write(rest);
|
||||
output.WriteMagic(thingCount, 0x4315, 0x7A);
|
||||
output.Write(things);
|
||||
output.Write(final);
|
||||
|
||||
c.SendPacket(0x4, 0x80, 0x44, output.ToArray());
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[PacketHandlerAttr(0x4, 0x3C)]
|
||||
public class ActionUpdateHandler : PacketHandler
|
||||
{
|
||||
public override void HandlePacket(Client context, byte flags, byte[] data, uint position, uint size)
|
||||
{
|
||||
PacketReader reader = new PacketReader(data);
|
||||
reader.ReadStruct<ObjectHeader>(); // Read the blank
|
||||
ObjectHeader actor = reader.ReadStruct<ObjectHeader>(); // Read the actor
|
||||
byte[] rest = reader.ReadBytes(32); // TODO Map this out and do stuff with it!
|
||||
|
||||
foreach (var c in Server.Instance.Clients)
|
||||
{
|
||||
if (c == context || c.Character == null || c.CurrentZone != context.CurrentZone)
|
||||
continue;
|
||||
PacketWriter writer = new PacketWriter();
|
||||
writer.WriteStruct(new ObjectHeader((uint)c.User.PlayerId, EntityType.Player));
|
||||
writer.WriteStruct(actor);
|
||||
writer.Write(rest);
|
||||
|
||||
c.SendPacket(0x4, 0x81, 0x40, writer.ToArray());
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
[Flags]
|
||||
public enum PackedData : Int32
|
||||
{
|
||||
ENT1_ID = 1,
|
||||
ENT1_TYPE = 2,
|
||||
ENT1_A = 4,
|
||||
ENT2_ID = 8,
|
||||
ENT2_TYPE = 0x10,
|
||||
ENT2_A = 0x20,
|
||||
TIMESTAMP = 0x40,
|
||||
ROT_X = 0x80,
|
||||
ROT_Y = 0x100,
|
||||
ROT_Z = 0x200,
|
||||
ROT_W = 0x400,
|
||||
CUR_X = 0x800,
|
||||
CUR_Y = 0x1000,
|
||||
CUR_Z = 0x2000,
|
||||
UNKNOWN4 = 0x4000,
|
||||
UNK_X = 0x8000,
|
||||
UNK_Y = 0x10000,
|
||||
UNK_Z = 0x20000,
|
||||
UNKNOWN5 = 0x40000,
|
||||
UNKNOWN6 = 0x80000,
|
||||
UNKNOWN7 = 0x100000
|
||||
}
|
||||
|
||||
|
||||
public struct PackedVec4
|
||||
{
|
||||
public UInt16 x, y, z, w;
|
||||
|
||||
public PackedVec4(PSOLocation location)
|
||||
{
|
||||
this.x = Helper.FloatToHalfPrecision(location.RotX);
|
||||
this.y = Helper.FloatToHalfPrecision(location.RotY);
|
||||
this.z = Helper.FloatToHalfPrecision(location.RotZ);
|
||||
this.w = Helper.FloatToHalfPrecision(location.RotW);
|
||||
}
|
||||
}
|
||||
|
||||
public struct PackedVec3
|
||||
{
|
||||
public UInt16 x, y, z;
|
||||
|
||||
public PackedVec3(PSOLocation location)
|
||||
{
|
||||
this.x = Helper.FloatToHalfPrecision(location.PosX);
|
||||
this.y = Helper.FloatToHalfPrecision(location.PosY);
|
||||
this.z = Helper.FloatToHalfPrecision(location.PosZ);
|
||||
}
|
||||
}
|
||||
|
||||
[StructLayout(LayoutKind.Explicit, Size = 0x38)]
|
||||
public struct FullMovementData
|
||||
{
|
||||
[FieldOffset(0x0)]
|
||||
public ObjectHeader entity1;
|
||||
[FieldOffset(0xC)]
|
||||
public ObjectHeader entity2;
|
||||
[FieldOffset(0x18)]
|
||||
public UInt32 timestamp;
|
||||
[FieldOffset(0x1C)]
|
||||
public PackedVec4 rotation;
|
||||
[FieldOffset(0x24)]
|
||||
public PackedVec3 currentPos;
|
||||
[FieldOffset(0x2A)]
|
||||
public UInt16 Unknown2; // This MAY be part of lastPos, as lastPos may be a Vec4?
|
||||
[FieldOffset(0x2C)]
|
||||
public PackedVec3 unknownPos;
|
||||
[FieldOffset(0x32)]
|
||||
public UInt16 Unknown3; // This MAY be part of currentPos, as lastPos may be a Vec4?
|
||||
[FieldOffset(0x34)]
|
||||
public UInt32 Unknown4;
|
||||
}
|
||||
|
||||
}
|
101
PSO2SERVER/Packets/Handlers/ObjectInteract.cs
Normal file
101
PSO2SERVER/Packets/Handlers/ObjectInteract.cs
Normal file
@ -0,0 +1,101 @@
|
||||
using PolarisServer.Database;
|
||||
using PolarisServer.Models;
|
||||
using PolarisServer.Object;
|
||||
using PolarisServer.Packets.PSOPackets;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace PolarisServer.Packets.Handlers
|
||||
{
|
||||
[PacketHandlerAttr(0x4, 0x14)]
|
||||
class ObjectInteract : PacketHandler
|
||||
{
|
||||
public override void HandlePacket(Client context, byte flags, byte[] data, uint position, uint size)
|
||||
{
|
||||
PacketReader reader = new PacketReader(data);
|
||||
reader.ReadBytes(12); // Padding MAYBE???????????
|
||||
ObjectHeader srcObject = reader.ReadStruct<ObjectHeader>();
|
||||
byte[] someBytes = reader.ReadBytes(4); // Dunno what this is yet.
|
||||
ObjectHeader dstObject = reader.ReadStruct<ObjectHeader>(); // Could be wrong
|
||||
reader.ReadBytes(16); // Not sure what this is yet
|
||||
string command = reader.ReadAscii(0xD711, 0xCA);
|
||||
PSOObject srcObj;
|
||||
if(srcObject.EntityType == EntityType.Object)
|
||||
{
|
||||
srcObj = ObjectManager.Instance.getObjectByID(context.CurrentZone.Name, srcObject.ID);
|
||||
}
|
||||
else if(srcObject.EntityType == EntityType.Player)
|
||||
{
|
||||
srcObj = new PSOObject();
|
||||
srcObj.Header = srcObject;
|
||||
srcObj.Name = "Player";
|
||||
}
|
||||
else
|
||||
{
|
||||
srcObj = null;
|
||||
}
|
||||
|
||||
Logger.WriteInternal("[OBJ] {0} (ID {1}) <{2}> --> Ent {3} (ID {4})", srcObj.Name, srcObj.Header.ID, command, (EntityType)dstObject.EntityType, dstObject.ID);
|
||||
|
||||
// TODO: Delete this code and do this COMPLETELY correctly!!!
|
||||
if (command == "Transfer" && context.CurrentZone.Name == "lobby")
|
||||
{
|
||||
// Try and get the teleport definition for the object...
|
||||
using (var db = new PolarisEf())
|
||||
{
|
||||
db.Configuration.AutoDetectChangesEnabled = true;
|
||||
var teleporterEndpoint = db.Teleports.Find("lobby", (int)srcObject.ID);
|
||||
|
||||
if (teleporterEndpoint == null)
|
||||
{
|
||||
Logger.WriteError("[OBJ] Teleporter for {0} in {1} does not contain a destination!", srcObj.Header.ID, "lobby");
|
||||
// Teleport Player to default point
|
||||
context.SendPacket(new TeleportTransferPacket(srcObj, new PSOLocation(0f, 1f, 0f, -0.000031f, -0.417969f, 0.000031f, 134.375f)));
|
||||
// Unhide player
|
||||
context.SendPacket(new ObjectActionPacket(dstObject, srcObject, new ObjectHeader(), new ObjectHeader(), "Forwarded"));
|
||||
}
|
||||
else
|
||||
{
|
||||
PSOLocation endpointLocation = new PSOLocation()
|
||||
{
|
||||
RotX = teleporterEndpoint.RotX,
|
||||
RotY = teleporterEndpoint.RotY,
|
||||
RotZ = teleporterEndpoint.RotZ,
|
||||
RotW = teleporterEndpoint.RotW,
|
||||
PosX = teleporterEndpoint.PosX,
|
||||
PosY = teleporterEndpoint.PosY,
|
||||
PosZ = teleporterEndpoint.PosZ,
|
||||
};
|
||||
// Teleport Player
|
||||
context.SendPacket(new TeleportTransferPacket(srcObj, endpointLocation));
|
||||
// Unhide player
|
||||
context.SendPacket(new ObjectActionPacket(dstObject, srcObject, new ObjectHeader(), new ObjectHeader(), "Forwarded"));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (command == "READY")
|
||||
{
|
||||
context.SendPacket(new ObjectActionPacket(new ObjectHeader((uint)context.User.PlayerId, EntityType.Player), srcObj.Header, srcObj.Header,
|
||||
new ObjectHeader(), "FavsNeutral"));
|
||||
context.SendPacket(new ObjectActionPacket(new ObjectHeader((uint)context.User.PlayerId, EntityType.Player), srcObj.Header, srcObj.Header,
|
||||
new ObjectHeader(), "AP")); // Short for Appear, Thanks Zapero!
|
||||
}
|
||||
|
||||
if (command == "Sit")
|
||||
{
|
||||
foreach (var client in Server.Instance.Clients)
|
||||
{
|
||||
if (client.Character == null || client == context)
|
||||
continue;
|
||||
|
||||
client.SendPacket(new ObjectActionPacket(new ObjectHeader((uint)client.User.PlayerId, EntityType.Player), srcObj.Header,
|
||||
new ObjectHeader(dstObject.ID, EntityType.Player), new ObjectHeader(), "SitSuccess"));
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
74
PSO2SERVER/Packets/Handlers/PacketHandler.cs
Normal file
74
PSO2SERVER/Packets/Handlers/PacketHandler.cs
Normal file
@ -0,0 +1,74 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Reflection;
|
||||
|
||||
namespace PolarisServer.Packets.Handlers
|
||||
{
|
||||
public class PacketHandlerAttr : Attribute
|
||||
{
|
||||
public uint Type, Subtype;
|
||||
|
||||
public PacketHandlerAttr(uint type, uint subtype)
|
||||
{
|
||||
Type = type;
|
||||
Subtype = subtype;
|
||||
}
|
||||
}
|
||||
|
||||
public abstract class PacketHandler
|
||||
{
|
||||
public abstract void HandlePacket(Client context, byte flags, byte[] data, uint position, uint size);
|
||||
}
|
||||
|
||||
public static class PacketHandlers
|
||||
{
|
||||
private static readonly Dictionary<ushort, PacketHandler> Handlers = new Dictionary<ushort, PacketHandler>();
|
||||
|
||||
public static void LoadPacketHandlers()
|
||||
{
|
||||
var classes = from t in Assembly.GetExecutingAssembly().GetTypes()
|
||||
where
|
||||
t.IsClass && t.Namespace == "PolarisServer.Packets.Handlers" &&
|
||||
t.IsSubclassOf(typeof (PacketHandler))
|
||||
select t;
|
||||
|
||||
foreach (var t in classes.ToList())
|
||||
{
|
||||
var attrs = (Attribute[]) t.GetCustomAttributes(typeof (PacketHandlerAttr), false);
|
||||
|
||||
if (attrs.Length > 0)
|
||||
{
|
||||
var attr = (PacketHandlerAttr) attrs[0];
|
||||
Logger.WriteInternal("[PKT] 载入数据包处理 {0} 数据包 {1:X}-{2:X}.", t.Name, attr.Type,
|
||||
attr.Subtype);
|
||||
if (!Handlers.ContainsKey(Helper.PacketTypeToUShort(attr.Type, attr.Subtype)))
|
||||
Handlers.Add(Helper.PacketTypeToUShort(attr.Type, attr.Subtype),
|
||||
(PacketHandler) Activator.CreateInstance(t));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Gets and creates a PacketHandler for a given packet type and subtype.
|
||||
/// </summary>
|
||||
/// <returns>An instance of a PacketHandler or null</returns>
|
||||
/// <param name="type">Type a.</param>
|
||||
/// <param name="subtype">Type b.</param>
|
||||
public static PacketHandler GetHandlerFor(uint type, uint subtype)
|
||||
{
|
||||
var packetCode = Helper.PacketTypeToUShort(type, subtype);
|
||||
PacketHandler handler = null;
|
||||
|
||||
if (Handlers.ContainsKey(packetCode))
|
||||
Handlers.TryGetValue(packetCode, out handler);
|
||||
|
||||
return handler;
|
||||
}
|
||||
|
||||
public static PacketHandler[] GetLoadedHandlers()
|
||||
{
|
||||
return Handlers.Values.ToArray();
|
||||
}
|
||||
}
|
||||
}
|
120
PSO2SERVER/Packets/Handlers/QuestCounterHandler.cs
Normal file
120
PSO2SERVER/Packets/Handlers/QuestCounterHandler.cs
Normal file
@ -0,0 +1,120 @@
|
||||
using System;
|
||||
using PolarisServer.Models;
|
||||
using PolarisServer.Packets.PSOPackets;
|
||||
|
||||
namespace PolarisServer.Packets.Handlers
|
||||
{
|
||||
[PacketHandlerAttr(0xB, 0x30)]
|
||||
class QuestCounterHandler : PacketHandler
|
||||
{
|
||||
public override void HandlePacket(Client context, byte flags, byte[] data, uint position, uint size)
|
||||
{
|
||||
// Not sure what this does yet
|
||||
byte[] allTheQuests = new byte[408];
|
||||
|
||||
for (int i = 0; i < allTheQuests.Length; i++)
|
||||
allTheQuests[i] = 0xFF;
|
||||
|
||||
context.SendPacket(0xB, 0x22, 0x0, allTheQuests);
|
||||
}
|
||||
}
|
||||
|
||||
[PacketHandlerAttr(0xB, 0x15)]
|
||||
class QuestCounterAvailableHander : PacketHandler
|
||||
{
|
||||
public override void HandlePacket(Client context, byte flags, byte[] data, uint position, uint size)
|
||||
{
|
||||
PacketWriter writer = new PacketWriter();
|
||||
|
||||
context.SendPacket(new QuestAvailablePacket());
|
||||
}
|
||||
}
|
||||
|
||||
[PacketHandlerAttr(0xB, 0x17)]
|
||||
class QuestListRequestHandler : PacketHandler
|
||||
{
|
||||
public override void HandlePacket(Client context, byte flags, byte[] data, uint position, uint size)
|
||||
{
|
||||
// What am I doing
|
||||
QuestDefiniton[] defs = new QuestDefiniton[1];
|
||||
for (int i = 0; i < defs.Length; i++)
|
||||
{
|
||||
defs[i].dateOrSomething = "2012/01/05";
|
||||
defs[i].needsToBeNonzero = 0x00000020;
|
||||
defs[i].getsSetToWord = 0x0000000B;
|
||||
defs[i].questNameString = 30010;
|
||||
defs[i].playTime = (byte)QuestListPacket.EstimatedTime.Short;
|
||||
defs[i].partyType = (byte)QuestListPacket.PartyType.SinglePartyQuest;
|
||||
defs[i].difficulties = (byte)QuestListPacket.Difficulties.Normal | (byte)QuestListPacket.Difficulties.hard | (byte)QuestListPacket.Difficulties.VeryHard | (byte)QuestListPacket.Difficulties.SuperHard;
|
||||
defs[i].requiredLevel = 1;
|
||||
// Not sure why but these need to be set for the quest to be enabled
|
||||
defs[i].field_FF = 0xF1;
|
||||
defs[i].field_101 = 1;
|
||||
}
|
||||
|
||||
context.SendPacket(new QuestListPacket(defs));
|
||||
context.SendPacket(new NoPayloadPacket(0xB, 0x1B));
|
||||
}
|
||||
}
|
||||
|
||||
[PacketHandlerAttr(0xB, 0x19)]
|
||||
class QuestDifficultyRequestHandler : PacketHandler
|
||||
{
|
||||
public override void HandlePacket(Client context, byte flags, byte[] data, uint position, uint size)
|
||||
{
|
||||
QuestDifficultyPacket.QuestDifficulty[] diffs = new QuestDifficultyPacket.QuestDifficulty[1];
|
||||
for (int i = 0; i < diffs.Length; i++)
|
||||
{
|
||||
diffs[i].dateOrSomething = "2012/01/05";
|
||||
diffs[i].something = 0x20;
|
||||
diffs[i].something2 = 0x0B;
|
||||
diffs[i].questNameString = 30010;
|
||||
|
||||
// These are likely bitfields
|
||||
diffs[i].something3 = 0x00030301;
|
||||
}
|
||||
|
||||
context.SendPacket(new QuestDifficultyPacket(diffs));
|
||||
|
||||
// [K873] I believe this is the correct packet, but it causes an infinite send/recieve loop, we're probably just missing something else
|
||||
context.SendPacket(new NoPayloadPacket(0xB, 0x1C));
|
||||
}
|
||||
}
|
||||
|
||||
[PacketHandlerAttr(0xE, 0xC)]
|
||||
class QuestDifficultyStartHandler : PacketHandler
|
||||
{
|
||||
// Go go maximum code duplication (for now)
|
||||
public override void HandlePacket(Client context, byte flags, byte[] data, uint position, uint size)
|
||||
{
|
||||
QuestDefiniton def = new QuestDefiniton();
|
||||
def.dateOrSomething = "2012/01/05";
|
||||
def.needsToBeNonzero = 0x00000020;
|
||||
def.getsSetToWord = 0x0000000B;
|
||||
def.questNameString = 30010;
|
||||
def.playTime = (byte)QuestListPacket.EstimatedTime.Short;
|
||||
def.partyType = (byte)QuestListPacket.PartyType.SinglePartyQuest;
|
||||
def.difficulties = (byte)QuestListPacket.Difficulties.Normal | (byte)QuestListPacket.Difficulties.hard | (byte)QuestListPacket.Difficulties.VeryHard | (byte)QuestListPacket.Difficulties.SuperHard;
|
||||
def.requiredLevel = 1;
|
||||
// Not sure why but these need to be set for the quest to be enabled
|
||||
def.field_FF = 0xF1;
|
||||
def.field_101 = 1;
|
||||
|
||||
QuestDifficultyPacket.QuestDifficulty diff = new QuestDifficultyPacket.QuestDifficulty();
|
||||
diff.dateOrSomething = "2012/01/05";
|
||||
diff.something = 0x20;
|
||||
diff.something2 = 0x0B;
|
||||
diff.questNameString = 30010;
|
||||
|
||||
// These are likely bitfields
|
||||
diff.something3 = 0x00030301;
|
||||
|
||||
var quest = new Quest("arks_010120");
|
||||
quest.questDef = def;
|
||||
context.currentParty.currentQuest = quest;
|
||||
context.SendPacket(new SetQuestPacket(def, context.User));
|
||||
context.SendPacket(new QuestStartPacket(def, diff));
|
||||
|
||||
}
|
||||
}
|
||||
}
|
41
PSO2SERVER/Packets/Handlers/ReturnToLobbyHandler.cs
Normal file
41
PSO2SERVER/Packets/Handlers/ReturnToLobbyHandler.cs
Normal file
@ -0,0 +1,41 @@
|
||||
using PolarisServer.Models;
|
||||
using PolarisServer.Object;
|
||||
using PolarisServer.Packets.PSOPackets;
|
||||
using PolarisServer.Zone;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace PolarisServer.Packets.Handlers
|
||||
{
|
||||
[PacketHandlerAttr(0x3, 0x34)]
|
||||
class ReturnToLobbyHandler : PacketHandler
|
||||
{
|
||||
public override void HandlePacket(Client context, byte flags, byte[] data, uint position, uint size)
|
||||
{
|
||||
PacketReader reader = new PacketReader(data);
|
||||
|
||||
reader.ReadUInt64(); // Skip 8 bytes
|
||||
if(reader.ReadUInt32() != 0x10)
|
||||
{
|
||||
Logger.WriteWarning("[WRN] Packet 0x3 0x34's first value was not 0x10! Investigate.");
|
||||
}
|
||||
|
||||
uint partOfLobby = reader.ReadUInt32();
|
||||
PSOLocation destination;
|
||||
if(partOfLobby == 0) // Gate area
|
||||
{
|
||||
destination = new PSOLocation(0f, 1f, 0f, 0f, -0.22f, 2.4f, 198.75f);
|
||||
}
|
||||
else // Shop area
|
||||
{
|
||||
destination = new PSOLocation(0f, 1f, 0f, 20f, 0.20f, 1.23f, -175.25f);
|
||||
}
|
||||
Map lobbyMap = ZoneManager.Instance.MapFromInstance("lobby", "lobby");
|
||||
lobbyMap.SpawnClient(context, destination, "lobby");
|
||||
|
||||
}
|
||||
}
|
||||
}
|
152
PSO2SERVER/Packets/Handlers/SimplePackets.cs
Normal file
152
PSO2SERVER/Packets/Handlers/SimplePackets.cs
Normal file
@ -0,0 +1,152 @@
|
||||
using System;
|
||||
using System.IO;
|
||||
using PolarisServer.Packets.PSOPackets;
|
||||
using PolarisServer.Database;
|
||||
|
||||
// This file is to hold all packet handlers that require no logic to respond to, or require less than 5 lines of logic.
|
||||
|
||||
namespace PolarisServer.Packets.Handlers
|
||||
{
|
||||
[PacketHandlerAttr(0x03, 0x0C)]
|
||||
public class PingResponse : PacketHandler
|
||||
{
|
||||
#region implemented abstract members of PacketHandler
|
||||
|
||||
public override void HandlePacket(Client context, byte flags, byte[] data, uint position, uint size)
|
||||
{
|
||||
Logger.Write("[HI!] Recieved ping response from " + context.User.Username);
|
||||
}
|
||||
|
||||
#endregion
|
||||
}
|
||||
|
||||
[PacketHandlerAttr(0x11, 0x06)]
|
||||
public class DeleteCharacter : PacketHandler
|
||||
{
|
||||
#region implemented abstract members of PacketHandler
|
||||
|
||||
public override void HandlePacket(Client context, byte flags, byte[] data, uint position, uint size)
|
||||
{
|
||||
var reader = new PacketReader(data);
|
||||
var id = reader.ReadInt32();
|
||||
|
||||
Logger.Write("[CHR] {0} is deleting character with ID {1}", context.User.Username, id);
|
||||
|
||||
// Delete Character
|
||||
using (var db = new PolarisEf())
|
||||
{
|
||||
|
||||
foreach (var character in db.Characters)
|
||||
if (character.CharacterId == id)
|
||||
{
|
||||
db.Characters.Remove(character);
|
||||
db.ChangeTracker.DetectChanges();
|
||||
break;
|
||||
}
|
||||
|
||||
// Detect the deletion and save the Database
|
||||
if (db.ChangeTracker.HasChanges())
|
||||
db.SaveChanges();
|
||||
}
|
||||
|
||||
// Disconnect for now
|
||||
// TODO: What do we do after a deletion?
|
||||
context.Socket.Close();
|
||||
}
|
||||
|
||||
#endregion
|
||||
}
|
||||
|
||||
[PacketHandlerAttr(0x11, 0x0D)]
|
||||
public class PingTimestampResponse : PacketHandler
|
||||
{
|
||||
#region implemented abstract members of PacketHandler
|
||||
|
||||
public override void HandlePacket(Client context, byte flags, byte[] data, uint position, uint size)
|
||||
{
|
||||
var reader = new PacketReader(data, position, size);
|
||||
var clientTime = reader.ReadUInt64();
|
||||
|
||||
var writer = new PacketWriter();
|
||||
writer.Write(clientTime);
|
||||
writer.Write(Helper.Timestamp(DateTime.UtcNow));
|
||||
context.SendPacket(0x11, 0xE, 0, writer.ToArray());
|
||||
}
|
||||
|
||||
#endregion
|
||||
}
|
||||
|
||||
[PacketHandlerAttr(0x11, 0x1D)]
|
||||
public class GuildInfoRequest : PacketHandler
|
||||
{
|
||||
#region implemented abstract members of PacketHandler
|
||||
|
||||
public override void HandlePacket(Client context, byte flags, byte[] data, uint position, uint size)
|
||||
{
|
||||
var reader = new PacketReader(data);
|
||||
reader.BaseStream.Seek(0xC, SeekOrigin.Begin);
|
||||
var id = reader.ReadUInt32();
|
||||
|
||||
foreach (var client in PolarisApp.Instance.Server.Clients)
|
||||
{
|
||||
if (client.Character.CharacterId == id)
|
||||
{
|
||||
var infoPacket = new GuildInfoPacket(context.Character);
|
||||
context.SendPacket(infoPacket);
|
||||
Logger.Write("[NFO] Sent guild info to " + client.Character.CharacterId);
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#endregion
|
||||
}
|
||||
|
||||
[PacketHandlerAttr(0x11, 0x2B)]
|
||||
public class LogOutRequest : PacketHandler
|
||||
{
|
||||
#region implemented abstract members of PacketHandler
|
||||
|
||||
public override void HandlePacket(Client context, byte flags, byte[] data, uint position, uint size)
|
||||
{
|
||||
context.Socket.Close();
|
||||
}
|
||||
|
||||
#endregion
|
||||
}
|
||||
|
||||
[PacketHandlerAttr(0x11, 0x41)]
|
||||
public class CreateCharacterOne : PacketHandler
|
||||
{
|
||||
#region implemented abstract members of PacketHandler
|
||||
|
||||
public override void HandlePacket(Client context, byte flags, byte[] data, uint position, uint size)
|
||||
{
|
||||
var writer = new PacketWriter();
|
||||
writer.Write((uint) 0);
|
||||
writer.Write((uint) 0);
|
||||
writer.Write((uint) 0);
|
||||
writer.Write((uint) 0);
|
||||
|
||||
context.SendPacket(0x11, 0x42, 0x0, writer.ToArray());
|
||||
}
|
||||
|
||||
#endregion
|
||||
}
|
||||
|
||||
[PacketHandlerAttr(0x11, 0x54)]
|
||||
public class CreateCharacterTwo : PacketHandler
|
||||
{
|
||||
#region implemented abstract members of PacketHandler
|
||||
|
||||
public override void HandlePacket(Client context, byte flags, byte[] data, uint position, uint size)
|
||||
{
|
||||
var writer = new PacketWriter();
|
||||
writer.Write((uint) 0);
|
||||
|
||||
context.SendPacket(0x11, 0x55, 0x0, writer.ToArray());
|
||||
}
|
||||
|
||||
#endregion
|
||||
}
|
||||
}
|
90
PSO2SERVER/Packets/Handlers/StartGame.cs
Normal file
90
PSO2SERVER/Packets/Handlers/StartGame.cs
Normal file
@ -0,0 +1,90 @@
|
||||
using PolarisServer.Database;
|
||||
using PolarisServer.Packets.PSOPackets;
|
||||
using PolarisServer.Party;
|
||||
|
||||
namespace PolarisServer.Packets.Handlers
|
||||
{
|
||||
[PacketHandlerAttr(0x11, 0x4)]
|
||||
public class StartGame : PacketHandler
|
||||
{
|
||||
#region implemented abstract members of PacketHandler
|
||||
|
||||
public override void HandlePacket(Client context, byte flags, byte[] data, uint position, uint size)
|
||||
{
|
||||
var reader = new PacketReader(data, position, size);
|
||||
var charId = reader.ReadUInt32();
|
||||
|
||||
if (context.User == null)
|
||||
return;
|
||||
|
||||
if (context.Character == null) // On character create, this is already set.
|
||||
{
|
||||
using (var db = new PolarisEf())
|
||||
{
|
||||
var character = db.Characters.Find((int)charId);
|
||||
|
||||
if (character == null || character.Player.PlayerId != context.User.PlayerId)
|
||||
return;
|
||||
|
||||
context.Character = character;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
// Initialize you in an empty party
|
||||
PartyManager.Instance.CreateNewParty(context);
|
||||
|
||||
// Transition to the loading screen
|
||||
context.SendPacket(new NoPayloadPacket(0x3, 0x4));
|
||||
|
||||
// TODO Set area, Set character, possibly more. See PolarisLegacy for more.
|
||||
}
|
||||
|
||||
#endregion
|
||||
}
|
||||
|
||||
[PacketHandlerAttr(0x03, 0x03)]
|
||||
public class InitialLoad : PacketHandler
|
||||
{
|
||||
// Ninji note: 3-3 may not be the correct place to do this
|
||||
// Once we have better state tracking, we should make sure that
|
||||
// 3-3 only does anything at the points where the client is supposed
|
||||
// to be sending it, etc etc
|
||||
|
||||
// This seems to only ever be called once after logging in, yet is also handled by 11-3E in other places
|
||||
// Moved the actual handling into 11-3E until I can actually confirm this
|
||||
// Just insantiate a new CharacterSpawn and push it through until then
|
||||
// - Kyle
|
||||
|
||||
#region implemented abstract members of PacketHandler
|
||||
|
||||
public override void HandlePacket(Client context, byte flags, byte[] data, uint position, uint size)
|
||||
{
|
||||
// Set Player ID
|
||||
var setPlayerId = new PacketWriter();
|
||||
setPlayerId.WritePlayerHeader((uint)context.User.PlayerId);
|
||||
context.SendPacket(6, 0, 0, setPlayerId.ToArray());
|
||||
|
||||
// Spawn Player
|
||||
new CharacterSpawn().HandlePacket(context, flags, data, position, size);
|
||||
}
|
||||
|
||||
#endregion
|
||||
}
|
||||
|
||||
[PacketHandlerAttr(0x03, 0x10)]
|
||||
public class DoItMaybe : PacketHandler
|
||||
{
|
||||
#region implemented abstract members of PacketHandler
|
||||
|
||||
public override void HandlePacket(Client context, byte flags, byte[] data, uint position, uint size)
|
||||
{
|
||||
if (context.User == null || context.Character == null)
|
||||
return;
|
||||
|
||||
context.SendPacket(new NoPayloadPacket(0x03, 0x23));
|
||||
}
|
||||
|
||||
#endregion
|
||||
}
|
||||
}
|
18
PSO2SERVER/Packets/Handlers/SymbolArtHandler.cs
Normal file
18
PSO2SERVER/Packets/Handlers/SymbolArtHandler.cs
Normal file
@ -0,0 +1,18 @@
|
||||
using PolarisServer.Packets.PSOPackets;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace PolarisServer.Packets.Handlers
|
||||
{
|
||||
|
||||
[PacketHandlerAttr(0x2F, 0x6)]
|
||||
class SymbolArtListHandler : PacketHandler
|
||||
{
|
||||
public override void HandlePacket(Client context, byte flags, byte[] data, uint position, uint size)
|
||||
{
|
||||
context.SendPacket(new SymbolArtList(new Models.ObjectHeader((uint)context.User.PlayerId, Models.EntityType.Player)));
|
||||
}
|
||||
}
|
||||
}
|
72
PSO2SERVER/Packets/PSOPackets/CharacterSpawnPacket.cs
Normal file
72
PSO2SERVER/Packets/PSOPackets/CharacterSpawnPacket.cs
Normal file
@ -0,0 +1,72 @@
|
||||
using PolarisServer.Models;
|
||||
|
||||
namespace PolarisServer.Packets.PSOPackets
|
||||
{
|
||||
public class CharacterSpawnPacket : Packet
|
||||
{
|
||||
private readonly Character _character;
|
||||
public bool IsItMe = true;
|
||||
public PSOLocation Position;
|
||||
|
||||
public CharacterSpawnPacket(Character character, PSOLocation locatiion)
|
||||
{
|
||||
_character = character;
|
||||
Position = locatiion;
|
||||
}
|
||||
|
||||
public CharacterSpawnPacket(Character character, PSOLocation locatiion, bool isme)
|
||||
{
|
||||
_character = character;
|
||||
IsItMe = isme;
|
||||
Position = locatiion;
|
||||
}
|
||||
|
||||
#region implemented abstract members of Packet
|
||||
|
||||
public override byte[] Build()
|
||||
{
|
||||
var writer = new PacketWriter();
|
||||
|
||||
// Player header
|
||||
writer.WritePlayerHeader((uint) _character.Player.PlayerId);
|
||||
|
||||
// Spawn position
|
||||
writer.Write(Position);
|
||||
|
||||
writer.Write((ushort) 0); // padding?
|
||||
writer.WriteFixedLengthASCII("Character", 32);
|
||||
writer.Write((ushort) 1); // 0x44
|
||||
writer.Write((ushort) 0); // 0x46
|
||||
writer.Write((uint) 602); // 0x48
|
||||
writer.Write((uint) 1); // 0x4C
|
||||
writer.Write((uint) 53); // 0x50
|
||||
writer.Write((uint) 0); // 0x54
|
||||
writer.Write((uint) (IsItMe ? 47 : 39)); // 0x58
|
||||
writer.Write((ushort) 559); // 0x5C
|
||||
writer.Write((ushort) 306); // 0x5E
|
||||
writer.Write((uint) _character.Player.PlayerId); // player ID copy
|
||||
writer.Write((uint) 0); // "char array ugggghhhhh" according to PolarisLegacy
|
||||
writer.Write((uint) 0); // "voiceParam_unknown4"
|
||||
writer.Write((uint) 0); // "voiceParam_unknown8"
|
||||
writer.WriteFixedLengthUtf16(_character.Name, 16);
|
||||
writer.Write((uint) 0); // 0x90
|
||||
writer.WriteStruct(_character.Looks);
|
||||
writer.WriteStruct(_character.Jobs);
|
||||
writer.WriteFixedLengthUtf16("", 32); // title?
|
||||
writer.Write((uint) 0); // 0x204
|
||||
writer.Write((uint) 0); // gmflag?
|
||||
writer.WriteFixedLengthUtf16(_character.Player.Nickname, 16); // nickname, maybe not 16 chars?
|
||||
for (var i = 0; i < 64; i++)
|
||||
writer.Write((byte) 0);
|
||||
|
||||
return writer.ToArray();
|
||||
}
|
||||
|
||||
public override PacketHeader GetHeader()
|
||||
{
|
||||
return new PacketHeader(0x08, 0x04);
|
||||
}
|
||||
|
||||
#endregion
|
||||
}
|
||||
}
|
67
PSO2SERVER/Packets/PSOPackets/GuildInfoPacket.cs
Normal file
67
PSO2SERVER/Packets/PSOPackets/GuildInfoPacket.cs
Normal file
@ -0,0 +1,67 @@
|
||||
using PolarisServer.Models;
|
||||
|
||||
namespace PolarisServer.Packets.PSOPackets
|
||||
{
|
||||
internal class GuildInfoPacket : Packet
|
||||
{
|
||||
private readonly Character _character;
|
||||
|
||||
public GuildInfoPacket(Character character)
|
||||
{
|
||||
_character = character;
|
||||
}
|
||||
|
||||
#region implemented abstract members of Packet
|
||||
|
||||
public override byte[] Build()
|
||||
{
|
||||
var writer = new PacketWriter();
|
||||
|
||||
writer.Write((byte) 1); // Always 1?
|
||||
|
||||
// Padding? Or the above is actually a uint
|
||||
for (var i = 0; i < 3; i++)
|
||||
writer.Write((byte) 0);
|
||||
|
||||
// Character ID
|
||||
writer.Write((uint) _character.CharacterId);
|
||||
|
||||
// Padding?
|
||||
for (var i = 0; i < 4; i++)
|
||||
writer.Write((byte) 0);
|
||||
|
||||
// Nickname
|
||||
// TODO: The above and below may be switched around, need more data
|
||||
writer.WriteFixedLengthUtf16(_character.Player.Nickname, 16);
|
||||
|
||||
// Padding?
|
||||
for (var i = 0; i < 36; i++)
|
||||
writer.Write((byte) 0);
|
||||
|
||||
// Player name
|
||||
writer.WriteFixedLengthUtf16(_character.Name, 16);
|
||||
|
||||
// Unknown?
|
||||
for (var i = 0; i < 24; i++)
|
||||
writer.Write((byte) 0);
|
||||
|
||||
// Team Name
|
||||
// We don't actually have team names anywhere, just dump a test here
|
||||
writer.WriteFixedLengthUtf16("Polaris Team", 16);
|
||||
|
||||
// Unknown
|
||||
// Somewhere in here is likely a Team ID
|
||||
for (var i = 0; i < 32; i++)
|
||||
writer.Write((byte) 0);
|
||||
|
||||
return writer.ToArray();
|
||||
}
|
||||
|
||||
public override PacketHeader GetHeader()
|
||||
{
|
||||
return new PacketHeader(0x1C, 0x1F, (byte)0);
|
||||
}
|
||||
|
||||
#endregion
|
||||
}
|
||||
}
|
77
PSO2SERVER/Packets/PSOPackets/LoginDataPacket.cs
Normal file
77
PSO2SERVER/Packets/PSOPackets/LoginDataPacket.cs
Normal file
@ -0,0 +1,77 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using PolarisServer.Models;
|
||||
|
||||
namespace PolarisServer.Packets.PSOPackets
|
||||
{
|
||||
class LoginDataPacket : Packet
|
||||
{
|
||||
private string blockName, error;
|
||||
private uint userid;
|
||||
|
||||
public LoginDataPacket(string blockName, string error, uint userid)
|
||||
{
|
||||
this.blockName = blockName;
|
||||
this.error = error;
|
||||
this.userid = userid;
|
||||
}
|
||||
|
||||
public override byte[] Build()
|
||||
{
|
||||
var resp = new PacketWriter();
|
||||
resp.Write((uint)((userid == 0) ? 1 : 0)); // Status flag: 0=success, 1=error
|
||||
resp.WriteUtf16(error, 0x8BA4, 0xB6);
|
||||
|
||||
if (userid == 0)
|
||||
{
|
||||
for (var i = 0; i < 0xEC; i++)
|
||||
resp.Write((byte)0);
|
||||
return resp.ToArray();
|
||||
}
|
||||
|
||||
// TODO: Explore this data! Some if it seems really important. (May contain level cap setting + more)
|
||||
|
||||
resp.WriteStruct(new ObjectHeader(userid, EntityType.Player));
|
||||
resp.WriteFixedLengthUtf16(blockName, 0x20); // This is right
|
||||
// Set things to "default" values; Dunno these purposes yet.
|
||||
resp.Write(0x42700000); //0
|
||||
resp.Write(7); //4
|
||||
resp.Write(0xA); //8 - Level Cap!
|
||||
resp.Write(1); //C
|
||||
resp.Write(0x41200000); //10
|
||||
resp.Write(0x40A00000); //14
|
||||
resp.Write(11); //18
|
||||
resp.Write(0x3F800000); //1C (1 as a float)
|
||||
resp.Write(0x42960000); //20
|
||||
resp.Write(40); //24
|
||||
resp.Write(0x41200000); //28
|
||||
resp.Write(1); //2C?
|
||||
resp.Write(1120403456); //30
|
||||
|
||||
//WHAT
|
||||
for (int i = 0; i < 10; i++)
|
||||
{
|
||||
resp.Write(1065353216);
|
||||
}
|
||||
//ARE
|
||||
for (int i = 0; i < 21; i++)
|
||||
{
|
||||
resp.Write(1120403456);
|
||||
}
|
||||
//THESE?
|
||||
resp.Write(0x91A2B); //B0
|
||||
resp.Write(0x91A2B); //B4
|
||||
|
||||
resp.WriteBytes(0, 12);
|
||||
|
||||
return resp.ToArray();
|
||||
}
|
||||
|
||||
public override PacketHeader GetHeader()
|
||||
{
|
||||
return new PacketHeader(0x11, 0x1, PacketFlags.PACKED);
|
||||
}
|
||||
}
|
||||
}
|
31
PSO2SERVER/Packets/PSOPackets/MovementPacket.cs
Normal file
31
PSO2SERVER/Packets/PSOPackets/MovementPacket.cs
Normal file
@ -0,0 +1,31 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using PolarisServer.Models;
|
||||
using PolarisServer.Packets.Handlers;
|
||||
|
||||
namespace PolarisServer.Packets.PSOPackets
|
||||
{
|
||||
class MovementPacket : Packet
|
||||
{
|
||||
FullMovementData data;
|
||||
|
||||
public MovementPacket(FullMovementData data)
|
||||
{
|
||||
this.data = data;
|
||||
}
|
||||
|
||||
public override byte[] Build()
|
||||
{
|
||||
PacketWriter pw = new PacketWriter();
|
||||
pw.WriteStruct(data);
|
||||
return pw.ToArray();
|
||||
}
|
||||
|
||||
public override PacketHeader GetHeader()
|
||||
{
|
||||
return new PacketHeader(0x4, 0x7, PacketFlags.OBJECT_RELATED);
|
||||
}
|
||||
}
|
||||
}
|
34
PSO2SERVER/Packets/PSOPackets/NoPayloadPacket.cs
Normal file
34
PSO2SERVER/Packets/PSOPackets/NoPayloadPacket.cs
Normal file
@ -0,0 +1,34 @@
|
||||
using PolarisServer.Models;
|
||||
|
||||
namespace PolarisServer.Packets.PSOPackets
|
||||
{
|
||||
public class NoPayloadPacket : Packet
|
||||
{
|
||||
private readonly byte _subtype;
|
||||
private readonly byte _type;
|
||||
|
||||
public NoPayloadPacket(byte type, byte subtype)
|
||||
{
|
||||
_type = type;
|
||||
_subtype = subtype;
|
||||
}
|
||||
|
||||
#region implemented abstract members of Packet
|
||||
|
||||
public override byte[] Build()
|
||||
{
|
||||
return new byte[0];
|
||||
}
|
||||
|
||||
public override PacketHeader GetHeader()
|
||||
{
|
||||
return new PacketHeader
|
||||
{
|
||||
Type = _type,
|
||||
Subtype = _subtype
|
||||
};
|
||||
}
|
||||
|
||||
#endregion
|
||||
}
|
||||
}
|
46
PSO2SERVER/Packets/PSOPackets/ObjectActionPacket.cs
Normal file
46
PSO2SERVER/Packets/PSOPackets/ObjectActionPacket.cs
Normal file
@ -0,0 +1,46 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using PolarisServer.Models;
|
||||
|
||||
namespace PolarisServer.Packets.PSOPackets
|
||||
{
|
||||
class ObjectActionPacket : Packet
|
||||
{
|
||||
private ObjectHeader headerA; // Destination player / object?
|
||||
private ObjectHeader headerB; // Calling player / object?
|
||||
private ObjectHeader headerC; // Maybe argument player / object?
|
||||
private ObjectHeader headerD; // Probably another arg I guess?
|
||||
private string command; // ASCII command
|
||||
|
||||
public ObjectActionPacket(ObjectHeader headerA, ObjectHeader headerB, ObjectHeader headerC, ObjectHeader headerD, string command)
|
||||
{
|
||||
this.headerA = headerA;
|
||||
this.headerB = headerB;
|
||||
this.headerC = headerC;
|
||||
this.headerD = headerD;
|
||||
this.command = command;
|
||||
}
|
||||
|
||||
public override byte[] Build()
|
||||
{
|
||||
PacketWriter writer = new PacketWriter();
|
||||
|
||||
writer.WriteStruct(headerA);
|
||||
writer.WriteStruct(headerB);
|
||||
writer.Write((uint)0); // Padding
|
||||
writer.WriteStruct(headerC);
|
||||
writer.WriteStruct(headerD);
|
||||
writer.Write((uint)0); // Padding
|
||||
writer.WriteAscii(command, 0x5CCF, 0x15);
|
||||
|
||||
return writer.ToArray();
|
||||
}
|
||||
|
||||
public override PacketHeader GetHeader()
|
||||
{
|
||||
return new PacketHeader(0x4, 0x15, (PacketFlags.OBJECT_RELATED | PacketFlags.PACKED));
|
||||
}
|
||||
}
|
||||
}
|
30
PSO2SERVER/Packets/PSOPackets/PalettePacket.cs
Normal file
30
PSO2SERVER/Packets/PSOPackets/PalettePacket.cs
Normal file
@ -0,0 +1,30 @@
|
||||
using PolarisServer.Models;
|
||||
|
||||
namespace PolarisServer.Packets.PSOPackets
|
||||
{
|
||||
public class PalettePacket : Packet
|
||||
{
|
||||
#region implemented abstract members of Packet
|
||||
|
||||
public override byte[] Build()
|
||||
{
|
||||
var writer = new PacketWriter();
|
||||
|
||||
// Enable flag
|
||||
writer.Write((byte) 1);
|
||||
|
||||
// Blank out the rest (skills)
|
||||
for (var i = 0; i < 1091; i++)
|
||||
writer.Write((byte) 0);
|
||||
|
||||
return writer.ToArray();
|
||||
}
|
||||
|
||||
public override PacketHeader GetHeader()
|
||||
{
|
||||
return new PacketHeader(0x21, 0x01);
|
||||
}
|
||||
|
||||
#endregion
|
||||
}
|
||||
}
|
85
PSO2SERVER/Packets/PSOPackets/PartyInitPacket.cs
Normal file
85
PSO2SERVER/Packets/PSOPackets/PartyInitPacket.cs
Normal file
@ -0,0 +1,85 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using PolarisServer.Models;
|
||||
|
||||
namespace PolarisServer.Packets.PSOPackets
|
||||
{
|
||||
class PartyInitPacket : Packet
|
||||
{
|
||||
private Character[] members;
|
||||
public PartyInitPacket(Character[] members)
|
||||
{
|
||||
this.members = members;
|
||||
}
|
||||
|
||||
public override byte[] Build()
|
||||
{
|
||||
if (members.Length < 1)
|
||||
return new byte[0];
|
||||
|
||||
// xor: 0xD863, sub: 0xA9
|
||||
PacketWriter writer = new PacketWriter();
|
||||
writer.WriteBytes(0, 12); // Unknown 12 bytes, not obj header
|
||||
writer.WriteStruct(new ObjectHeader((uint)members[0].Player.PlayerId, EntityType.Player)); // Player receiving the thing
|
||||
writer.WriteStruct(members.Length); // Likely partymembercount
|
||||
|
||||
for(int i = 0; i < members.Length; i++)
|
||||
{
|
||||
writer.WriteStruct(new ObjectHeader((uint)members[i].Player.PlayerId, EntityType.Player)); // Header of player
|
||||
writer.WriteUtf16(members[i].Name, 0xD863, 0xA9);
|
||||
writer.WriteUtf16(members[i].Player.Nickname, 0xD863, 0xA9);
|
||||
writer.Write((byte)members[i].Jobs.entries.hunter.level); // Active class level
|
||||
writer.Write((byte)0); // idk
|
||||
writer.Write((byte)4); // idk
|
||||
writer.Write((byte)0xFF); // idk
|
||||
writer.Write((byte)0); // idk
|
||||
writer.Write((byte)0); // idk
|
||||
writer.Write((byte)0); // idk
|
||||
writer.Write((byte)0xFF); // idk
|
||||
writer.Write((byte)0xFF); // idk
|
||||
writer.Write((byte)0); // idk
|
||||
writer.Write((ushort)0);
|
||||
writer.Write((ushort)0);
|
||||
writer.Write((ushort)0);
|
||||
writer.Write((ushort)0);
|
||||
writer.Write((ushort)0);
|
||||
writer.WriteBytes(0, 12);
|
||||
writer.Write(0);
|
||||
writer.Write(0);
|
||||
}
|
||||
|
||||
for(int i = 0; i < 4 - members.Length; i++) // Empty entries
|
||||
{
|
||||
writer.WriteStruct(new ObjectHeader(0, 0)); // Header of player
|
||||
writer.WriteMagic(0, 0xD863, 0xA9);
|
||||
writer.WriteMagic(0, 0xD863, 0xA9);
|
||||
writer.Write((byte)0); // Active class level
|
||||
writer.Write((byte)0); // idk
|
||||
writer.Write((byte)0); // idk
|
||||
writer.Write((byte)0); // idk
|
||||
writer.Write((byte)0); // idk
|
||||
writer.Write((byte)0); // idk
|
||||
writer.Write((byte)0); // idk
|
||||
writer.Write((byte)0); // idk
|
||||
writer.Write((byte)0); // idk
|
||||
writer.Write((byte)0); // idk
|
||||
writer.Write((ushort)0);
|
||||
writer.Write((ushort)0);
|
||||
writer.Write((ushort)0);
|
||||
writer.Write((ushort)0);
|
||||
writer.Write((ushort)0);
|
||||
writer.WriteBytes(0, 12);
|
||||
writer.Write(0);
|
||||
}
|
||||
|
||||
return writer.ToArray();
|
||||
}
|
||||
|
||||
public override PacketHeader GetHeader()
|
||||
{
|
||||
return new PacketHeader(0xE, 0x2, PacketFlags.PACKED);
|
||||
}
|
||||
}
|
||||
}
|
129
PSO2SERVER/Packets/PSOPackets/QuestAvailablePacket.cs
Normal file
129
PSO2SERVER/Packets/PSOPackets/QuestAvailablePacket.cs
Normal file
@ -0,0 +1,129 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using PolarisServer.Models;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
namespace PolarisServer.Packets.PSOPackets
|
||||
{
|
||||
class QuestAvailablePacket : Packet
|
||||
{
|
||||
public enum QuestType
|
||||
{
|
||||
Extreme,
|
||||
StoryEP1,
|
||||
Arks,
|
||||
Limited,
|
||||
ExtremeDebug,
|
||||
Blank1,
|
||||
StoryEP2,
|
||||
NetCafeLimited,
|
||||
ポカポカDebug,
|
||||
Blank2,
|
||||
Advance,
|
||||
FreeField,
|
||||
FreeDebug,
|
||||
ArksDebug1,
|
||||
StoryDebug,
|
||||
Challenge,
|
||||
Emergency,
|
||||
EmergencyDebug,
|
||||
TimeAttack,
|
||||
TimeDebug,
|
||||
ArksDebug2,
|
||||
ArksDebug3,
|
||||
ArksDebug4,
|
||||
ArksDebug5,
|
||||
ArksDebug6,
|
||||
ArksDebug7,
|
||||
ArksDebug8,
|
||||
ArksDebug9,
|
||||
ArksDebug10,
|
||||
Blank3,
|
||||
StoryEP3,
|
||||
Featured,
|
||||
Ultimate,
|
||||
UltimateDebug,
|
||||
NotSet
|
||||
}
|
||||
|
||||
[Flags]
|
||||
public enum QuestTypeAvailable : UInt64
|
||||
{
|
||||
None = 0x0000000000000000,
|
||||
All = 0xFFFFFFFFFFFFFFFF,
|
||||
Extreme = 0x0000000000000002,
|
||||
StoryEP1 = 0x0000000000000004,
|
||||
Arks = 0x0000000000000008,
|
||||
Limited = 0x0000000000000010,
|
||||
ExtremeDebug = 0x0000000000000020,
|
||||
Blank1 = 0x0000000000000040,
|
||||
StoryEP2 = 0x0000000000000080,
|
||||
NetCafeLimited = 0x0000000000000100,
|
||||
ポカポカDebug = 0x0000000000000200,
|
||||
Blank2 = 0x0000000000000400,
|
||||
Advance = 0x0000000000000800,
|
||||
FreeField = 0x0000000000001000,
|
||||
FreeDebug = 0x0000000000002000,
|
||||
ArksDebug1 = 0x0000000000004000,
|
||||
StoryDebug = 0x0000000000008000,
|
||||
Challange = 0x0000010000010000,
|
||||
Emergency = 0x0000020000020000,
|
||||
EmergencyDebug = 0x0000040000040000,
|
||||
TimeAttack = 0x0000080000080000,
|
||||
TimeDebug = 0x0000000000100000,
|
||||
ArksDebug2 = 0x0000000000200000,
|
||||
ArksDebug3 = 0x0000000000400000,
|
||||
ArksDebug4 = 0x0000000000800000,
|
||||
ArksDebug5 = 0x0000000001000000,
|
||||
ArksDebug6 = 0x0000000002000000,
|
||||
ArksDebug7 = 0x0000000004000000,
|
||||
ArksDebug8 = 0x0000000008000000,
|
||||
ArksDebug9 = 0x0000000010000000,
|
||||
ArksDebug10 = 0x0000000020000000,
|
||||
Blank3 = 0x0000000040000000,
|
||||
StoryEP3 = 0x0000000080000000,
|
||||
Featured = 0x0000000100000000,
|
||||
Ultimate = 0x0000000200000000,
|
||||
UltimateDebug = 0x0000000400000000,
|
||||
NotSet = 0x0000000800000000,
|
||||
}
|
||||
|
||||
public short[] amount = new short[Enum.GetValues(typeof(QuestType)).Length];
|
||||
QuestTypeAvailable available = QuestTypeAvailable.Arks;
|
||||
|
||||
public override byte[] Build()
|
||||
{
|
||||
PacketWriter writer = new PacketWriter();
|
||||
|
||||
// Filler/Padding?
|
||||
writer.Write((UInt16)0);
|
||||
|
||||
// Amounts
|
||||
for (int i = 0; i < amount.Length; i++)
|
||||
{
|
||||
amount[i] = 1; // Just for testing
|
||||
writer.Write(amount[i]);
|
||||
}
|
||||
|
||||
// Padding/Blank entries?
|
||||
for (int i = 0; i < 2; i++)
|
||||
writer.Write((int)0);
|
||||
|
||||
// Available Bitfield
|
||||
writer.Write((UInt64)available);
|
||||
|
||||
// Filler/Padding?
|
||||
for (int i = 0; i < 2; i++)
|
||||
writer.Write((int)0);
|
||||
|
||||
return writer.ToArray();
|
||||
}
|
||||
|
||||
public override PacketHeader GetHeader()
|
||||
{
|
||||
return new PacketHeader(0xB, 0x16);
|
||||
}
|
||||
}
|
||||
}
|
91
PSO2SERVER/Packets/PSOPackets/QuestDifficultyPacket.cs
Normal file
91
PSO2SERVER/Packets/PSOPackets/QuestDifficultyPacket.cs
Normal file
@ -0,0 +1,91 @@
|
||||
using System;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
using PolarisServer.Models;
|
||||
|
||||
namespace PolarisServer.Packets.PSOPackets
|
||||
{
|
||||
class QuestDifficultyPacket : Packet
|
||||
{
|
||||
private QuestDifficulty[] questdiffs;
|
||||
|
||||
public QuestDifficultyPacket(QuestDifficulty[] questdiffs)
|
||||
{
|
||||
// Setup dummy difficulty entries
|
||||
for (int i = 0; i < questdiffs.Length; i++)
|
||||
{
|
||||
QuestDifficultyEntry difficulty = new QuestDifficultyEntry
|
||||
{
|
||||
unknown1 = 0x0101,
|
||||
monster1 = 0xFFFFFFFF,
|
||||
monster2 = 0xFFFFFFFF,
|
||||
monster3 = 0xFFFFFFFF
|
||||
};
|
||||
|
||||
questdiffs[i].difficulty1 = difficulty;
|
||||
questdiffs[i].difficulty2 = difficulty;
|
||||
questdiffs[i].difficulty3 = difficulty;
|
||||
questdiffs[i].difficulty4 = difficulty;
|
||||
questdiffs[i].difficulty5 = difficulty;
|
||||
questdiffs[i].difficulty6 = difficulty;
|
||||
questdiffs[i].difficulty7 = difficulty;
|
||||
questdiffs[i].difficulty8 = difficulty;
|
||||
}
|
||||
|
||||
this.questdiffs = questdiffs;
|
||||
}
|
||||
|
||||
public override byte[] Build()
|
||||
{
|
||||
PacketWriter writer = new PacketWriter();
|
||||
|
||||
writer.WriteMagic((uint)questdiffs.Length, 0x292C, 0x5B);
|
||||
foreach (QuestDifficulty d in questdiffs)
|
||||
{
|
||||
writer.WriteStruct(d);
|
||||
}
|
||||
return writer.ToArray();
|
||||
}
|
||||
|
||||
public override PacketHeader GetHeader()
|
||||
{
|
||||
return new PacketHeader(0xB, 0x1A, 0x4);
|
||||
}
|
||||
|
||||
//Size: 308 bytes, confirmed in unpacker
|
||||
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi, Pack = 1)]
|
||||
public unsafe struct QuestDifficulty
|
||||
{
|
||||
[MarshalAs(UnmanagedType.ByValTStr, SizeConst = 24)]
|
||||
public string dateOrSomething;
|
||||
public int field_24;
|
||||
public int field_28;
|
||||
public int something;
|
||||
public int field_30;
|
||||
public int something2;
|
||||
public int questNameString;
|
||||
public int something3;
|
||||
public QuestDifficultyEntry difficulty1;
|
||||
public QuestDifficultyEntry difficulty2;
|
||||
public QuestDifficultyEntry difficulty3;
|
||||
public QuestDifficultyEntry difficulty4;
|
||||
public QuestDifficultyEntry difficulty5;
|
||||
public QuestDifficultyEntry difficulty6;
|
||||
public QuestDifficultyEntry difficulty7;
|
||||
public QuestDifficultyEntry difficulty8;
|
||||
}
|
||||
|
||||
//Size: 32, confirmed in ctor
|
||||
public struct QuestDifficultyEntry
|
||||
{
|
||||
public uint unknown1;
|
||||
public uint unknown2;
|
||||
public uint monster1;
|
||||
public uint monster1flags;
|
||||
public uint monster2;
|
||||
public uint monster2flags;
|
||||
public uint monster3;
|
||||
public uint monster3flags;
|
||||
}
|
||||
}
|
||||
}
|
85
PSO2SERVER/Packets/PSOPackets/QuestListPacket.cs
Normal file
85
PSO2SERVER/Packets/PSOPackets/QuestListPacket.cs
Normal file
@ -0,0 +1,85 @@
|
||||
using System;
|
||||
using PolarisServer.Models;
|
||||
|
||||
namespace PolarisServer.Packets.PSOPackets
|
||||
{
|
||||
class QuestListPacket : Packet
|
||||
{
|
||||
private QuestDefiniton[] questdefs;
|
||||
|
||||
public QuestListPacket(QuestDefiniton[] questdefs)
|
||||
{
|
||||
this.questdefs = questdefs;
|
||||
}
|
||||
|
||||
public override byte[] Build()
|
||||
{
|
||||
PacketWriter writer = new PacketWriter();
|
||||
writer.WriteMagic((uint)questdefs.Length, 0x1DB0, 0xC5);
|
||||
foreach (QuestDefiniton d in questdefs)
|
||||
{
|
||||
writer.WriteStruct(d);
|
||||
}
|
||||
return writer.ToArray();
|
||||
}
|
||||
|
||||
public override PacketHeader GetHeader()
|
||||
{
|
||||
return new PacketHeader(0xB, 0x18, 0x4);
|
||||
}
|
||||
|
||||
// Hoo boy, this is 468 bytes!
|
||||
// TODO: Map out this struct.
|
||||
// Most of this is WRONG!!! Needs serious investigation.
|
||||
/*
|
||||
[K873] What I've currently mapped out
|
||||
24 -> Start
|
||||
38 -> Quest Name/Type Index?
|
||||
100 -> Bitfield 1
|
||||
102 -> Estimated Play Time
|
||||
103 -> Party Type
|
||||
104 -> Difficulties Available
|
||||
105 -> Difficulties Completed
|
||||
108 -> Starting Level
|
||||
120 -> Item Data 1?
|
||||
12C -> Item Data 2?
|
||||
*/
|
||||
|
||||
[Flags]
|
||||
public enum QuestBitfield1 : ushort
|
||||
{
|
||||
MatterObjectiveQuest = 0x0001,
|
||||
ClientOrderOnQuest = 0x0008,
|
||||
NewQuest = 0x0100,
|
||||
ClientOrder = 0x0800,
|
||||
UnknownLevel = 0x1000
|
||||
}
|
||||
|
||||
public enum PartyType
|
||||
{
|
||||
SoloQuest,
|
||||
SinglePartyQuest,
|
||||
MultiPartyQuest,
|
||||
}
|
||||
|
||||
public enum EstimatedTime
|
||||
{
|
||||
Short = 1,
|
||||
Medium,
|
||||
Long
|
||||
}
|
||||
|
||||
[Flags]
|
||||
public enum Difficulties
|
||||
{
|
||||
Normal = 0x01,
|
||||
hard = 0x02,
|
||||
VeryHard = 0x04,
|
||||
SuperHard = 0x08,
|
||||
ExtraHard = 0x10,
|
||||
Dummy1 = 0x20,
|
||||
Dummy2 = 0x40,
|
||||
Dummy3 = 0x80,
|
||||
}
|
||||
}
|
||||
}
|
36
PSO2SERVER/Packets/PSOPackets/QuestStartPacket.cs
Normal file
36
PSO2SERVER/Packets/PSOPackets/QuestStartPacket.cs
Normal file
@ -0,0 +1,36 @@
|
||||
using System;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
using PolarisServer.Models;
|
||||
|
||||
namespace PolarisServer.Packets.PSOPackets
|
||||
{
|
||||
class QuestStartPacket : Packet
|
||||
{
|
||||
QuestDefiniton data;
|
||||
QuestDifficultyPacket.QuestDifficulty difficulty;
|
||||
|
||||
public QuestStartPacket(QuestDefiniton data, QuestDifficultyPacket.QuestDifficulty difficulty)
|
||||
{
|
||||
this.data = data;
|
||||
this.difficulty = difficulty;
|
||||
}
|
||||
|
||||
public override byte[] Build()
|
||||
{
|
||||
PacketWriter writer = new PacketWriter();
|
||||
|
||||
writer.Write(0x753A); // Unknown
|
||||
writer.Write((int)0); // Unknown
|
||||
writer.WriteStruct<QuestDefiniton>(data);
|
||||
writer.WriteStruct<QuestDifficultyPacket.QuestDifficulty>(difficulty);
|
||||
|
||||
return writer.ToArray();
|
||||
}
|
||||
|
||||
public override PacketHeader GetHeader()
|
||||
{
|
||||
return new PacketHeader(0xE, 0x31);
|
||||
}
|
||||
}
|
||||
}
|
40
PSO2SERVER/Packets/PSOPackets/SetCurrencyPacket.cs
Normal file
40
PSO2SERVER/Packets/PSOPackets/SetCurrencyPacket.cs
Normal file
@ -0,0 +1,40 @@
|
||||
using PolarisServer.Models;
|
||||
|
||||
namespace PolarisServer.Packets.PSOPackets
|
||||
{
|
||||
public class SetCurrencyPacket : Packet
|
||||
{
|
||||
public int NewAcAmount = 0;
|
||||
public int NewFunAmount = 0;
|
||||
|
||||
#region implemented abstract members of Packet
|
||||
|
||||
public override byte[] Build()
|
||||
{
|
||||
var writer = new PacketWriter();
|
||||
|
||||
// AC
|
||||
writer.Write(NewAcAmount);
|
||||
|
||||
// Padding?
|
||||
for (var i = 0; i < 20; i++)
|
||||
writer.Write((byte) 0);
|
||||
|
||||
// FUN
|
||||
writer.Write(NewFunAmount);
|
||||
|
||||
// Padding?
|
||||
for (var i = 0; i < 4; i++)
|
||||
writer.Write((byte) 0);
|
||||
|
||||
return writer.ToArray();
|
||||
}
|
||||
|
||||
public override PacketHeader GetHeader()
|
||||
{
|
||||
return new PacketHeader(0x11, 0x1C);
|
||||
}
|
||||
|
||||
#endregion
|
||||
}
|
||||
}
|
33
PSO2SERVER/Packets/PSOPackets/SetMesetaPacket.cs
Normal file
33
PSO2SERVER/Packets/PSOPackets/SetMesetaPacket.cs
Normal file
@ -0,0 +1,33 @@
|
||||
using System;
|
||||
using PolarisServer.Models;
|
||||
|
||||
namespace PolarisServer.Packets.PSOPackets
|
||||
{
|
||||
public class SetMesetaPacket : Packet
|
||||
{
|
||||
public Int64 NewAmount = 0;
|
||||
|
||||
#region implemented abstract members of Packet
|
||||
|
||||
public override byte[] Build()
|
||||
{
|
||||
var writer = new PacketWriter();
|
||||
|
||||
writer.Write(NewAmount);
|
||||
|
||||
return writer.ToArray();
|
||||
}
|
||||
|
||||
public override PacketHeader GetHeader()
|
||||
{
|
||||
return new PacketHeader
|
||||
{
|
||||
Type = 0x0F,
|
||||
Subtype = 0x14,
|
||||
Flags1 = 0
|
||||
};
|
||||
}
|
||||
|
||||
#endregion
|
||||
}
|
||||
}
|
44
PSO2SERVER/Packets/PSOPackets/SetQuestPacket.cs
Normal file
44
PSO2SERVER/Packets/PSOPackets/SetQuestPacket.cs
Normal file
@ -0,0 +1,44 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using PolarisServer.Models;
|
||||
|
||||
namespace PolarisServer.Packets.PSOPackets
|
||||
{
|
||||
class SetQuestPacket : Packet
|
||||
{
|
||||
QuestDefiniton questdef;
|
||||
Database.Player p;
|
||||
|
||||
public SetQuestPacket(QuestDefiniton questdef, Database.Player p)
|
||||
{
|
||||
this.questdef = questdef;
|
||||
this.p = p;
|
||||
}
|
||||
public override byte[] Build()
|
||||
{
|
||||
PacketWriter writer = new PacketWriter();
|
||||
writer.Write(questdef.questNameString);
|
||||
writer.Write(0);
|
||||
writer.Write((ushort)0);
|
||||
writer.Write((ushort)0);
|
||||
writer.Write((ushort)0);
|
||||
writer.Write((ushort)1);
|
||||
writer.WriteStruct(new ObjectHeader((uint)p.PlayerId, EntityType.Player));
|
||||
writer.Write(0);
|
||||
writer.Write((ushort)0);
|
||||
writer.Write((ushort)0);
|
||||
writer.Write((ushort)0);
|
||||
writer.Write((ushort)0);
|
||||
writer.Write(0);
|
||||
writer.Write(0);
|
||||
return writer.ToArray();
|
||||
}
|
||||
|
||||
public override PacketHeader GetHeader()
|
||||
{
|
||||
return new PacketHeader(0xE, 0x25);
|
||||
}
|
||||
}
|
||||
}
|
11
PSO2SERVER/Packets/PSOPackets/SetScenePacket.cs
Normal file
11
PSO2SERVER/Packets/PSOPackets/SetScenePacket.cs
Normal file
@ -0,0 +1,11 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace PolarisServer.Packets.PSOPackets
|
||||
{
|
||||
class SetScenePacket
|
||||
{
|
||||
}
|
||||
}
|
34
PSO2SERVER/Packets/PSOPackets/SymbolArtList.cs
Normal file
34
PSO2SERVER/Packets/PSOPackets/SymbolArtList.cs
Normal file
@ -0,0 +1,34 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using PolarisServer.Models;
|
||||
|
||||
namespace PolarisServer.Packets.PSOPackets
|
||||
{
|
||||
class SymbolArtList : Packet
|
||||
{
|
||||
ObjectHeader player;
|
||||
public SymbolArtList(ObjectHeader player)
|
||||
{
|
||||
this.player = player;
|
||||
}
|
||||
|
||||
public override byte[] Build()
|
||||
{
|
||||
PacketWriter writer = new PacketWriter();
|
||||
writer.WriteStruct(player);
|
||||
writer.Write(-1); // Dunno what goes here
|
||||
writer.WriteMagic(0x20, 0xE80C, 0xED); // 20 Things
|
||||
writer.Write(new Byte[16 * 0x20]); // 16 Bytes each
|
||||
|
||||
return writer.ToArray();
|
||||
|
||||
}
|
||||
|
||||
public override PacketHeader GetHeader()
|
||||
{
|
||||
return new PacketHeader(0x2F, 0x7, PacketFlags.PACKED);
|
||||
}
|
||||
}
|
||||
}
|
49
PSO2SERVER/Packets/PSOPackets/SystemMessagePacket.cs
Normal file
49
PSO2SERVER/Packets/PSOPackets/SystemMessagePacket.cs
Normal file
@ -0,0 +1,49 @@
|
||||
using System;
|
||||
using PolarisServer.Models;
|
||||
|
||||
namespace PolarisServer.Packets.PSOPackets
|
||||
{
|
||||
public class SystemMessagePacket : Packet
|
||||
{
|
||||
public enum MessageType
|
||||
{
|
||||
GoldenTicker = 0,
|
||||
AdminMessage,
|
||||
AdminMessageInstant,
|
||||
SystemMessage,
|
||||
GenericMessage
|
||||
}
|
||||
|
||||
private readonly string _message;
|
||||
private readonly MessageType _type;
|
||||
|
||||
public SystemMessagePacket(string message, MessageType type)
|
||||
{
|
||||
_message = message;
|
||||
_type = type;
|
||||
}
|
||||
|
||||
#region implemented abstract members of Packet
|
||||
|
||||
public override byte[] Build()
|
||||
{
|
||||
var writer = new PacketWriter();
|
||||
writer.WriteUtf16(_message, 0x78F7, 0xA2);
|
||||
writer.Write((UInt32) _type);
|
||||
|
||||
return writer.ToArray();
|
||||
}
|
||||
|
||||
public override PacketHeader GetHeader()
|
||||
{
|
||||
return new PacketHeader
|
||||
{
|
||||
Type = 0x19,
|
||||
Subtype = 0x01,
|
||||
Flags1 = 0x04
|
||||
};
|
||||
}
|
||||
|
||||
#endregion
|
||||
}
|
||||
}
|
32
PSO2SERVER/Packets/PSOPackets/TeleportTransferPacket.cs
Normal file
32
PSO2SERVER/Packets/PSOPackets/TeleportTransferPacket.cs
Normal file
@ -0,0 +1,32 @@
|
||||
using System;
|
||||
using PolarisServer.Models;
|
||||
|
||||
namespace PolarisServer.Packets.PSOPackets
|
||||
{
|
||||
class TeleportTransferPacket : Packet
|
||||
{
|
||||
private PSOObject src;
|
||||
private PSOLocation dst;
|
||||
|
||||
public TeleportTransferPacket(PSOObject srcTeleporter, PSOLocation destination)
|
||||
{
|
||||
src = srcTeleporter;
|
||||
dst = destination;
|
||||
}
|
||||
|
||||
public override byte[] Build()
|
||||
{
|
||||
PacketWriter writer = new PacketWriter();
|
||||
writer.Write(new byte[12]);
|
||||
writer.WriteStruct(src.Header);
|
||||
writer.WritePosition(dst);
|
||||
writer.Write(new byte[2]);
|
||||
return writer.ToArray();
|
||||
}
|
||||
|
||||
public override PacketHeader GetHeader()
|
||||
{
|
||||
return new PacketHeader(0x4, 0x2, PacketFlags.OBJECT_RELATED);
|
||||
}
|
||||
}
|
||||
}
|
10
PSO2SERVER/Packets/Packet.cs
Normal file
10
PSO2SERVER/Packets/Packet.cs
Normal file
@ -0,0 +1,10 @@
|
||||
using PolarisServer.Models;
|
||||
|
||||
namespace PolarisServer.Packets
|
||||
{
|
||||
public abstract class Packet
|
||||
{
|
||||
public abstract byte[] Build();
|
||||
public abstract PacketHeader GetHeader();
|
||||
}
|
||||
}
|
111
PSO2SERVER/Packets/PacketReader.cs
Normal file
111
PSO2SERVER/Packets/PacketReader.cs
Normal file
@ -0,0 +1,111 @@
|
||||
using PolarisServer.Models;
|
||||
using System.IO;
|
||||
using System.Runtime.InteropServices;
|
||||
using System.Text;
|
||||
|
||||
namespace PolarisServer.Packets
|
||||
{
|
||||
public class PacketReader : BinaryReader
|
||||
{
|
||||
public PacketReader(Stream s) : base(s)
|
||||
{
|
||||
}
|
||||
|
||||
public PacketReader(byte[] bytes) : base(new MemoryStream(bytes))
|
||||
{
|
||||
}
|
||||
|
||||
public PacketReader(byte[] bytes, uint position, uint size)
|
||||
: base(new MemoryStream(bytes, (int) position, (int) size))
|
||||
{
|
||||
}
|
||||
|
||||
public uint ReadMagic(uint xor, uint sub)
|
||||
{
|
||||
return (ReadUInt32() ^ xor) - sub;
|
||||
}
|
||||
|
||||
public string ReadAscii(uint xor, uint sub)
|
||||
{
|
||||
var magic = ReadMagic(xor, sub);
|
||||
|
||||
if (magic == 0)
|
||||
{
|
||||
return "";
|
||||
}
|
||||
var charCount = magic - 1;
|
||||
var padding = 4 - (charCount & 3);
|
||||
|
||||
var data = ReadBytes((int) charCount);
|
||||
for (var i = 0; i < padding; i++)
|
||||
ReadByte();
|
||||
|
||||
return Encoding.ASCII.GetString(data);
|
||||
}
|
||||
|
||||
public string ReadFixedLengthAscii(uint charCount)
|
||||
{
|
||||
var data = ReadBytes((int) charCount);
|
||||
var str = Encoding.ASCII.GetString(data);
|
||||
|
||||
var endAt = str.IndexOf('\0');
|
||||
if (endAt == -1)
|
||||
return str;
|
||||
return str.Substring(0, endAt);
|
||||
}
|
||||
|
||||
public string ReadUtf16(uint xor, uint sub)
|
||||
{
|
||||
var magic = ReadMagic(xor, sub);
|
||||
|
||||
if (magic == 0)
|
||||
{
|
||||
return "";
|
||||
}
|
||||
var charCount = magic - 1;
|
||||
var padding = (magic & 1);
|
||||
|
||||
var data = ReadBytes((int) (charCount*2));
|
||||
ReadUInt16();
|
||||
if (padding != 0)
|
||||
ReadUInt16();
|
||||
|
||||
return Encoding.GetEncoding("UTF-16").GetString(data);
|
||||
}
|
||||
|
||||
public string ReadFixedLengthUtf16(int charCount)
|
||||
{
|
||||
var data = ReadBytes(charCount*2);
|
||||
var str = Encoding.GetEncoding("UTF-16").GetString(data);
|
||||
|
||||
var endAt = str.IndexOf('\0');
|
||||
if (endAt == -1)
|
||||
return str;
|
||||
return str.Substring(0, endAt);
|
||||
}
|
||||
|
||||
public T ReadStruct<T>() where T : struct
|
||||
{
|
||||
var structBytes = new byte[Marshal.SizeOf(typeof (T))];
|
||||
Read(structBytes, 0, structBytes.Length);
|
||||
|
||||
return Helper.ByteArrayToStructure<T>(structBytes);
|
||||
}
|
||||
|
||||
public PSOLocation ReadEntityPosition()
|
||||
{
|
||||
PSOLocation pos = new PSOLocation()
|
||||
{
|
||||
RotX = Helper.FloatFromHalfPrecision(ReadUInt16()),
|
||||
RotY = Helper.FloatFromHalfPrecision(ReadUInt16()),
|
||||
RotZ = Helper.FloatFromHalfPrecision(ReadUInt16()),
|
||||
RotW = Helper.FloatFromHalfPrecision(ReadUInt16()),
|
||||
PosX = Helper.FloatFromHalfPrecision(ReadUInt16()),
|
||||
PosY = Helper.FloatFromHalfPrecision(ReadUInt16()),
|
||||
PosZ = Helper.FloatFromHalfPrecision(ReadUInt16()),
|
||||
};
|
||||
|
||||
return pos;
|
||||
}
|
||||
}
|
||||
}
|
162
PSO2SERVER/Packets/PacketWriter.cs
Normal file
162
PSO2SERVER/Packets/PacketWriter.cs
Normal file
@ -0,0 +1,162 @@
|
||||
using System;
|
||||
using System.IO;
|
||||
using System.Runtime.InteropServices;
|
||||
using System.Text;
|
||||
using PolarisServer.Models;
|
||||
|
||||
namespace PolarisServer.Packets
|
||||
{
|
||||
public class PacketWriter : BinaryWriter
|
||||
{
|
||||
public PacketWriter()
|
||||
: base(new MemoryStream())
|
||||
{
|
||||
}
|
||||
|
||||
public PacketWriter(Stream s)
|
||||
: base(s)
|
||||
{
|
||||
}
|
||||
|
||||
public void WriteMagic(uint magic, uint xor, uint sub)
|
||||
{
|
||||
var encoded = (magic + sub) ^ xor;
|
||||
Write(encoded);
|
||||
}
|
||||
|
||||
public void WriteAscii(string str, uint xor, uint sub)
|
||||
{
|
||||
if (str.Length == 0)
|
||||
{
|
||||
WriteMagic(0, xor, sub);
|
||||
}
|
||||
else
|
||||
{
|
||||
// Magic, followed by string, followed by null terminator,
|
||||
// followed by padding characters if needed.
|
||||
var charCount = (uint) str.Length;
|
||||
var padding = 4 - (charCount & 3);
|
||||
|
||||
WriteMagic(charCount + 1, xor, sub);
|
||||
Write(Encoding.ASCII.GetBytes(str));
|
||||
for (var i = 0; i < padding; i++)
|
||||
Write((byte) 0);
|
||||
}
|
||||
}
|
||||
|
||||
internal void WritePosition(PSOLocation location)
|
||||
{
|
||||
Write(Helper.FloatToHalfPrecision(location.RotX));
|
||||
Write(Helper.FloatToHalfPrecision(location.RotY));
|
||||
Write(Helper.FloatToHalfPrecision(location.RotZ));
|
||||
Write(Helper.FloatToHalfPrecision(location.RotW));
|
||||
Write(Helper.FloatToHalfPrecision(location.PosX));
|
||||
Write(Helper.FloatToHalfPrecision(location.PosY));
|
||||
Write(Helper.FloatToHalfPrecision(location.PosZ));
|
||||
}
|
||||
|
||||
public void WriteUtf16(string str, uint xor, uint sub)
|
||||
{
|
||||
if (str.Length == 0)
|
||||
{
|
||||
WriteMagic(0, xor, sub);
|
||||
}
|
||||
else
|
||||
{
|
||||
// Magic, followed by string, followed by null terminator,
|
||||
// followed by a padding character if needed.
|
||||
var charCount = (uint) str.Length + 1;
|
||||
var padding = (charCount & 1);
|
||||
|
||||
WriteMagic(charCount, xor, sub);
|
||||
Write(Encoding.GetEncoding("UTF-16").GetBytes(str));
|
||||
Write((ushort) 0);
|
||||
if (padding != 0)
|
||||
Write((ushort) 0);
|
||||
}
|
||||
}
|
||||
|
||||
public void WriteFixedLengthASCII(string str, int charCount)
|
||||
{
|
||||
var writeAmount = Math.Min(str.Length, charCount);
|
||||
var paddingAmount = charCount - writeAmount;
|
||||
|
||||
if (writeAmount > 0)
|
||||
{
|
||||
var chopped = writeAmount != str.Length ? str.Substring(0, writeAmount) : str;
|
||||
|
||||
Write(Encoding.GetEncoding("ASCII").GetBytes(chopped));
|
||||
}
|
||||
|
||||
if (paddingAmount > 0)
|
||||
{
|
||||
for (var i = 0; i < paddingAmount; i++)
|
||||
Write((byte) 0);
|
||||
}
|
||||
}
|
||||
|
||||
public void WriteFixedLengthUtf16(string str, int charCount)
|
||||
{
|
||||
var writeAmount = Math.Min(str.Length, charCount);
|
||||
var paddingAmount = charCount - writeAmount;
|
||||
|
||||
if (writeAmount > 0)
|
||||
{
|
||||
var chopped = writeAmount != str.Length ? str.Substring(0, writeAmount) : str;
|
||||
|
||||
Write(Encoding.GetEncoding("UTF-16").GetBytes(chopped));
|
||||
}
|
||||
|
||||
if (paddingAmount > 0)
|
||||
{
|
||||
for (var i = 0; i < paddingAmount; i++)
|
||||
Write((ushort) 0);
|
||||
}
|
||||
}
|
||||
|
||||
public void Write(PSOLocation s)
|
||||
{
|
||||
Write(Helper.FloatToHalfPrecision(s.RotX));
|
||||
Write(Helper.FloatToHalfPrecision(s.RotY));
|
||||
Write(Helper.FloatToHalfPrecision(s.RotZ));
|
||||
Write(Helper.FloatToHalfPrecision(s.RotW));
|
||||
Write(Helper.FloatToHalfPrecision(s.PosX));
|
||||
Write(Helper.FloatToHalfPrecision(s.PosY));
|
||||
Write(Helper.FloatToHalfPrecision(s.PosZ));
|
||||
}
|
||||
|
||||
public void WritePlayerHeader(uint id)
|
||||
{
|
||||
Write(id);
|
||||
Write((uint) 0);
|
||||
Write((ushort) 4);
|
||||
Write((ushort) 0);
|
||||
}
|
||||
|
||||
public unsafe void WriteStruct<T>(T structure) where T : struct
|
||||
{
|
||||
var strArr = new byte[Marshal.SizeOf(structure)];
|
||||
|
||||
fixed (byte* ptr = strArr)
|
||||
{
|
||||
Marshal.StructureToPtr(structure, (IntPtr) ptr, false);
|
||||
}
|
||||
|
||||
Write(strArr);
|
||||
}
|
||||
|
||||
public byte[] ToArray()
|
||||
{
|
||||
var ms = (MemoryStream) BaseStream;
|
||||
return ms.ToArray();
|
||||
}
|
||||
|
||||
internal void WriteBytes(byte b, uint count)
|
||||
{
|
||||
for(int i = 0; i < count; i++)
|
||||
{
|
||||
Write(b);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
72
PSO2SERVER/Party/Party.cs
Normal file
72
PSO2SERVER/Party/Party.cs
Normal file
@ -0,0 +1,72 @@
|
||||
using PolarisServer.Models;
|
||||
using PolarisServer.Packets.PSOPackets;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace PolarisServer.Party
|
||||
{
|
||||
public class Party
|
||||
{
|
||||
public string name;
|
||||
private List<Client> members;
|
||||
private Client host;
|
||||
public Quest currentQuest;
|
||||
|
||||
public Party(string name, Client host)
|
||||
{
|
||||
this.name = name;
|
||||
this.host = host;
|
||||
this.members = new List<Client>();
|
||||
addClientToParty(host);
|
||||
}
|
||||
|
||||
public void addClientToParty(Client c)
|
||||
{
|
||||
if (members.Count < 1)
|
||||
{
|
||||
c.SendPacket(new PartyInitPacket(new Models.Character[1] { c.Character }));
|
||||
}
|
||||
else
|
||||
{
|
||||
// ???
|
||||
}
|
||||
members.Add(c);
|
||||
c.currentParty = this;
|
||||
}
|
||||
|
||||
public void removeClientFromParty(Client c)
|
||||
{
|
||||
if(!members.Contains(c))
|
||||
{
|
||||
Logger.WriteWarning("[PTY] Client {0} was trying to be removed from {1}, but he was never in {1}!", c.User.Username, name);
|
||||
return;
|
||||
}
|
||||
|
||||
members.Remove(c);
|
||||
//TODO do stuff like send the "remove from party" packet.
|
||||
}
|
||||
|
||||
public bool hasClientInParty(Client c)
|
||||
{
|
||||
return members.Contains(c);
|
||||
}
|
||||
|
||||
public Client getPartyHost()
|
||||
{
|
||||
return host;
|
||||
}
|
||||
|
||||
public int getSize()
|
||||
{
|
||||
return members.Count;
|
||||
}
|
||||
|
||||
public List<Client> getMembers()
|
||||
{
|
||||
return members;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
79
PSO2SERVER/Party/PartyManager.cs
Normal file
79
PSO2SERVER/Party/PartyManager.cs
Normal file
@ -0,0 +1,79 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace PolarisServer.Party
|
||||
{
|
||||
class PartyManager
|
||||
{
|
||||
private static readonly PartyManager instance = new PartyManager();
|
||||
|
||||
private Dictionary<Party, string> parties = new Dictionary<Party, string>(); // Key: Party, Value: Name? (for now)
|
||||
|
||||
public static PartyManager Instance
|
||||
{
|
||||
get
|
||||
{
|
||||
return instance;
|
||||
}
|
||||
}
|
||||
|
||||
private PartyManager()
|
||||
{
|
||||
Logger.WriteInternal("[PTY] PartyManager initialized.");
|
||||
}
|
||||
|
||||
public Party GetCurrentPartyForClient(Client c)
|
||||
{
|
||||
foreach(Party p in parties.Keys) //TODO: Filter this on a per-block basis?
|
||||
{
|
||||
if (p.hasClientInParty(c))
|
||||
return p;
|
||||
}
|
||||
|
||||
|
||||
return null;
|
||||
}
|
||||
|
||||
public void CreateNewParty(Client c)
|
||||
{
|
||||
if (GetCurrentPartyForClient(c) != null)
|
||||
return; // For now
|
||||
|
||||
parties.Add(new Party(c.User.Username, c), c.User.Username);
|
||||
}
|
||||
|
||||
public void AddPlayerToParty(Client c, Party p)
|
||||
{
|
||||
if (!parties.ContainsKey(p))
|
||||
return;
|
||||
|
||||
if (p.getSize() >= 4) // For now
|
||||
return;
|
||||
|
||||
p.addClientToParty(c);
|
||||
}
|
||||
|
||||
public void RemovePlayerToParty(Client c, Party p)
|
||||
{
|
||||
if (!parties.ContainsKey(p))
|
||||
return;
|
||||
|
||||
//TODO: Later just transfer owner like the real servers.
|
||||
if (c == p.getPartyHost())
|
||||
{
|
||||
foreach(Client cl in p.getMembers())
|
||||
{
|
||||
p.removeClientFromParty(cl);
|
||||
}
|
||||
parties.Remove(p);
|
||||
}
|
||||
else
|
||||
{
|
||||
p.removeClientFromParty(c);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
148
PSO2SERVER/Program.cs
Normal file
148
PSO2SERVER/Program.cs
Normal file
@ -0,0 +1,148 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.IO;
|
||||
using System.Net;
|
||||
using System.Threading;
|
||||
using System.Security.Cryptography;
|
||||
|
||||
using PolarisServer.Database;
|
||||
using PolarisServer.Packets.Handlers;
|
||||
|
||||
namespace PolarisServer
|
||||
{
|
||||
internal class PolarisApp
|
||||
{
|
||||
public static PolarisApp Instance { get; private set; }
|
||||
|
||||
// Will be using these around the app later [KeyPhact]
|
||||
public const string PolarisName = "Polaris Server";
|
||||
public const string PolarisShortName = "Polaris";
|
||||
public const string PolarisAuthor = "PolarisTeam (http://github.com/PolarisTeam)";
|
||||
public const string PolarisCopyright = "(C) 2014 PolarisTeam.";
|
||||
public const string PolarisLicense = "All licenced under AGPL.";
|
||||
public const string PolarisVersion = "v0.1.0-pre";
|
||||
public const string PolarisVersionName = "Corsac Fox";
|
||||
|
||||
public static IPAddress BindAddress = IPAddress.Parse("127.0.0.1");
|
||||
public static Config Config;
|
||||
public static ConsoleSystem ConsoleSystem;
|
||||
|
||||
public List<QueryServer> QueryServers = new List<QueryServer>();
|
||||
public Server Server;
|
||||
|
||||
public static void Main(string[] args)
|
||||
{
|
||||
Config = new Config();
|
||||
|
||||
ConsoleSystem = new ConsoleSystem { Thread = new Thread(ConsoleSystem.StartThread) };
|
||||
ConsoleSystem.Thread.Start();
|
||||
|
||||
// Setup function exit handlers to guarentee Exit() is run before closing
|
||||
Console.CancelKeyPress += Exit;
|
||||
AppDomain.CurrentDomain.ProcessExit += Exit;
|
||||
|
||||
try
|
||||
{
|
||||
for (var i = 0; i < args.Length; i++)
|
||||
{
|
||||
switch (args[i].ToLower())
|
||||
{
|
||||
case "-b":
|
||||
case "--bind-address":
|
||||
if (++i < args.Length)
|
||||
BindAddress = IPAddress.Parse(args[i]);
|
||||
break;
|
||||
|
||||
case "-s":
|
||||
case "--size":
|
||||
var splitArgs = args[++i].Split(',');
|
||||
var width = int.Parse(splitArgs[0]);
|
||||
var height = int.Parse(splitArgs[1]);
|
||||
if (width < ConsoleSystem.Width)
|
||||
{
|
||||
Logger.WriteWarning("[ARG] Capping console width to {0} columns", ConsoleSystem.Width);
|
||||
width = ConsoleSystem.Width;
|
||||
}
|
||||
if (height < ConsoleSystem.Height)
|
||||
{
|
||||
Logger.WriteWarning("[ARG] Capping console height to {0} rows", ConsoleSystem.Height);
|
||||
height = ConsoleSystem.Height;
|
||||
}
|
||||
ConsoleSystem.SetSize(width, height);
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
Logger.WriteException("An error has occurred while parsing command line parameters", ex);
|
||||
}
|
||||
|
||||
// Check for settings.txt [AIDA]
|
||||
if (!File.Exists("Resources/settings.txt"))
|
||||
{
|
||||
// If it doesn't exist, throw an error and quit [AIDA]
|
||||
Logger.WriteError("[ERR] 载入 settings.txt 文件错误. 按任意键退出.");
|
||||
Console.ReadKey();
|
||||
Environment.Exit(0);
|
||||
}
|
||||
|
||||
// Check for Private Key BLOB [AIDA]
|
||||
if (!File.Exists("privateKey.blob"))
|
||||
{
|
||||
// If it doesn't exist, generate a fresh keypair [CK]
|
||||
Logger.WriteWarning("[WRN] 未找到 privatekey.blob 文件, 正在生成新的密钥...");
|
||||
RSACryptoServiceProvider rcsp = new RSACryptoServiceProvider();
|
||||
byte[] cspBlob = rcsp.ExportCspBlob(true);
|
||||
byte[] cspBlobPub = rcsp.ExportCspBlob(false);
|
||||
FileStream outFile = File.Create("privateKey.blob");
|
||||
FileStream outFilePub = File.Create("publicKey.blob");
|
||||
outFile.Write(cspBlob, 0, cspBlob.Length);
|
||||
outFile.Close();
|
||||
outFilePub.Write(cspBlobPub, 0, cspBlobPub.Length);
|
||||
outFilePub.Close();
|
||||
}
|
||||
|
||||
// Fix up startup message [KeyPhact]
|
||||
Logger.WriteHeader();
|
||||
Logger.Write(PolarisName + " - " + PolarisVersion + " (" + PolarisVersionName + ")");
|
||||
Logger.Write("By " + PolarisAuthor);
|
||||
Logger.Write(PolarisLicense);
|
||||
|
||||
Thread.Sleep(1000);
|
||||
//System.Data.Entity.Database.SetInitializer(new DropCreateDatabaseIfModelChanges<PolarisEF>());
|
||||
Instance = new PolarisApp();
|
||||
Instance.Start();
|
||||
}
|
||||
|
||||
public void Start()
|
||||
{
|
||||
Logger.WriteInternal("服务器启动完成 " + DateTime.Now);
|
||||
|
||||
Server = new Server();
|
||||
|
||||
Config.Load();
|
||||
|
||||
PacketHandlers.LoadPacketHandlers();
|
||||
|
||||
Logger.WriteInternal("[DB ] 载入数据库...");
|
||||
using (var db = new PolarisEf())
|
||||
{
|
||||
db.TestDatabaseConnection();
|
||||
|
||||
db.SetupDB();
|
||||
}
|
||||
|
||||
for (var i = 0; i < 10; i++)
|
||||
QueryServers.Add(new QueryServer(QueryMode.ShipList, 12099 + (100 * i)));
|
||||
|
||||
Server.Run();
|
||||
}
|
||||
|
||||
private static void Exit(object sender, EventArgs e)
|
||||
{
|
||||
// Save the configuration
|
||||
Config.Save();
|
||||
}
|
||||
}
|
||||
}
|
25
PSO2SERVER/Properties/AssemblyInfo.cs
Normal file
25
PSO2SERVER/Properties/AssemblyInfo.cs
Normal file
@ -0,0 +1,25 @@
|
||||
using System.Reflection;
|
||||
|
||||
// Information about this assembly is defined by the following attributes.
|
||||
// Change them to the values specific to your project.
|
||||
|
||||
[assembly: AssemblyTitle("PSO2SERVER")]
|
||||
[assembly: AssemblyDescription("")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("")]
|
||||
[assembly: AssemblyProduct("")]
|
||||
[assembly: AssemblyCopyright("Sancaros")]
|
||||
[assembly: AssemblyTrademark("")]
|
||||
[assembly: AssemblyCulture("")]
|
||||
|
||||
// The assembly version has the format "{Major}.{Minor}.{Build}.{Revision}".
|
||||
// The form "{Major}.{Minor}.*" will automatically update the build and revision,
|
||||
// and "{Major}.{Minor}.{Build}.*" will update just the revision.
|
||||
|
||||
[assembly: AssemblyVersion("1.0.*")]
|
||||
|
||||
// The following attributes are used to specify the signing key for the assembly,
|
||||
// if desired. See the Mono documentation for more information about signing.
|
||||
|
||||
//[assembly: AssemblyDelaySign(false)]
|
||||
//[assembly: AssemblyKeyFile("")]
|
117
PSO2SERVER/QueryServer.cs
Normal file
117
PSO2SERVER/QueryServer.cs
Normal file
@ -0,0 +1,117 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Net;
|
||||
using System.Net.Sockets;
|
||||
using System.IO;
|
||||
using System.Runtime.InteropServices;
|
||||
using System.Threading;
|
||||
|
||||
using PolarisServer.Models;
|
||||
using PolarisServer.Packets;
|
||||
|
||||
namespace PolarisServer
|
||||
{
|
||||
public enum QueryMode
|
||||
{
|
||||
ShipList,/*12100 - 12900*/
|
||||
Ship1,
|
||||
Ship2
|
||||
}
|
||||
|
||||
public class QueryServer
|
||||
{
|
||||
private delegate void OnConnection(Socket server);
|
||||
|
||||
public static List<Thread> RunningServers = new List<Thread>();
|
||||
|
||||
private readonly QueryMode _mode;
|
||||
private readonly int _port;
|
||||
|
||||
public QueryServer(QueryMode mode, int port)
|
||||
{
|
||||
_mode = mode;
|
||||
_port = port;
|
||||
var queryThread = new Thread(Run);
|
||||
queryThread.Start();
|
||||
RunningServers.Add(queryThread);
|
||||
Logger.WriteInternal("[---] 开始监听端口 " + port);
|
||||
}
|
||||
|
||||
private void Run()
|
||||
{
|
||||
OnConnection c;
|
||||
switch (_mode)
|
||||
{
|
||||
default:
|
||||
c = DoShipList;
|
||||
break;
|
||||
case QueryMode.Ship1:
|
||||
c = DoBlockBalance;
|
||||
break;
|
||||
case QueryMode.Ship2:
|
||||
c = DoBlockBalance;
|
||||
break;
|
||||
case QueryMode.ShipList:
|
||||
c = DoShipList;
|
||||
break;
|
||||
}
|
||||
|
||||
var serverSocket = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp)
|
||||
{
|
||||
Blocking = true
|
||||
};
|
||||
var ep = new IPEndPoint(IPAddress.Any, _port);
|
||||
serverSocket.Bind(ep); // TODO: Custom bind address.
|
||||
serverSocket.Listen(5);
|
||||
while (true)
|
||||
{
|
||||
var newConnection = serverSocket.Accept();
|
||||
c(newConnection);
|
||||
}
|
||||
}
|
||||
|
||||
private void DoShipList(Socket socket)
|
||||
{
|
||||
var writer = new PacketWriter();
|
||||
var entries = new List<ShipEntry>();
|
||||
|
||||
for (var i = 1; i < 11; i++)
|
||||
{
|
||||
var entry = new ShipEntry
|
||||
{
|
||||
order = (ushort)i,
|
||||
number = (uint)i,
|
||||
status = i == 2 ? ShipStatus.Online : ShipStatus.Offline, // Maybe move to Config?
|
||||
name = String.Format("Ship{0:0#}", i),
|
||||
ip = PolarisApp.BindAddress.GetAddressBytes()
|
||||
};
|
||||
entries.Add(entry);
|
||||
}
|
||||
PacketHeader header = new PacketHeader(8 + Marshal.SizeOf(typeof(ShipEntry)) * entries.Count + 12, 0x11, 0x3D, 0x4, 0x0);
|
||||
writer.WriteStruct(header);
|
||||
writer.WriteMagic((uint)entries.Count, 0xE418, 81);
|
||||
foreach (var entry in entries)
|
||||
writer.WriteStruct(entry);
|
||||
|
||||
writer.Write((Int32)(DateTime.UtcNow.Subtract(new DateTime(1970, 1, 1))).TotalSeconds);
|
||||
writer.Write(1);
|
||||
|
||||
socket.Send(writer.ToArray());
|
||||
socket.Close();
|
||||
|
||||
}
|
||||
|
||||
private void DoBlockBalance(Socket socket)
|
||||
{
|
||||
var writer = new PacketWriter();
|
||||
writer.WriteStruct(new PacketHeader(0x90, 0x11, 0x2C, 0x0, 0x0));
|
||||
writer.Write(new byte[0x68 - 8]);
|
||||
writer.Write(PolarisApp.BindAddress.GetAddressBytes());
|
||||
writer.Write((UInt16)12205);
|
||||
writer.Write(new byte[0x90 - 0x6A]);
|
||||
|
||||
socket.Send(writer.ToArray());
|
||||
socket.Close();
|
||||
}
|
||||
}
|
||||
}
|
3
PSO2SERVER/Resources/objects/README.txt
Normal file
3
PSO2SERVER/Resources/objects/README.txt
Normal file
@ -0,0 +1,3 @@
|
||||
Put any flatfile object overrides here (either in a packet.bin file or JSON)
|
||||
|
||||
For example, putting "lobby/1.bin" will make object #1 in lobby spawn from that bin and not the DB.
|
BIN
PSO2SERVER/Resources/quests/arks_010120.bin
Normal file
BIN
PSO2SERVER/Resources/quests/arks_010120.bin
Normal file
Binary file not shown.
BIN
PSO2SERVER/Resources/quests/lobby.bin
Normal file
BIN
PSO2SERVER/Resources/quests/lobby.bin
Normal file
Binary file not shown.
BIN
PSO2SERVER/Resources/setMemoryPacket.bin
Normal file
BIN
PSO2SERVER/Resources/setMemoryPacket.bin
Normal file
Binary file not shown.
2
PSO2SERVER/Resources/settings.txt
Normal file
2
PSO2SERVER/Resources/settings.txt
Normal file
@ -0,0 +1,2 @@
|
||||
Ini.ControlSetting={LobbyAction={A="clap",C="sit2",B="bow",E="yell",D="dance1",G="guts",F="dance2",I="",H="pose1",K="kiss",J="pose2",M="monomane",L="laugh",O="",N="no",Q="howareyou",P="",S="sorry",R="salute",U="you",T="praise",W="wave",V="provoke",Y="yes",X="sit1",Z="greet",},MouseCtrl={MouseActionWheel={Wheel="ChangeMainPalette",},MouseActionLR={R="PhotonArts",L="NormalAttack",},Presets={[1]="RRcm",[2]="RRcm",},Window={X2="",R="CloseForm",M="",X1="",},MouseActionM={M="SelectMenu",X2="",X1="",},},MainInputType=0,LoginCall=true,KeyboardCtrl={Shortcut={RunSubPalette="1",ChangeMainPalette="3",RunWindowShortcut="2",RunShortcutWord="4",},Presets={[2]="RZViewRcm",[3]="Rcm1",[1]="RNViewRcm",[4]="Rcm1",[5]="Rcm",},WindowShortcutFunc={WindowShortcut8="13",WindowShortcut9="2",WindowShortcut3="4",WindowShortcut1="1",WindowShortcut5="7",WindowShortcut4="5",WindowShortcut0="19",WindowShortcut2="3",WindowShortcut7="9",WindowShortcut6="8",},Window={Cancel="LBracket",Decide="Return",TabBack="Comma",MultiSelect="Shift",ChangeCtrlWindowForward="Numpad1",NextWidget="Tab",MoveSelection="Tab",NextTabDetails="Q",TabForward="Period",ChangeCtrlWindowBack="Numpad3",},NormalView={Access="E",OpenPayShop="",OpenPlayerList="",PaletteForce="F",OpenLicense="",ChangeMouseMode="T",OpenRentalLimit="",ChatStartParty="",PaletteReverse="R",ChangeAreaMap="N",OpenMail="",ChatStart="Return",OpenWeapon="",OpenCharaInfo="",SubPaletteLeft="G",OpenFriend="",MainMenu="",Jump="Space",OpenProfile="",ChangeRadarMap="M",OpenMyMenu="",ChatStartWhisper="",LockOn="Q",ChangeView="Z",WeaponAction="Shift",OpenQuestInfo="",OpenClientOrder="",CameraUp="Divide",MoveRight="D",OpenLogOut="F12",MoveLeft="A",OpenCustomize="U",NormalAttack="Slash",OpenEventItem="",CameraDown="Multiply",OpenMag="Y",LockOnNext="",ChatStartGuild="",MoveForward="W",Avoid="X",MoveBack="S",OpenArmor="",OpenMatterBoard="",SubPalette="B",OpenConfig="",CameraNear="Subtract",OpenGuild="",OpenSubPalette="J",OpenParty="",OpenCommunicationLog="",RefuseFollowRun="K",AutoRun="V",OpenItemPack="I",OpenPayLog="",OpenSymbolArt="",PhotonArts="Backslash",SelectMenu="",OpenAcGacha="F11",ChatStartPublic="",CameraFar="Add",SubPaletteRight="H",OpenMacro="",},ShoulderView={MoveForward="W",OpenPayShop="",OpenPlayerList="",MainMenu="",OpenLicense="",ChangeMouseMode="T",OpenRentalLimit="",ChatStartParty="",PaletteReverse="R",ChangeAreaMap="N",OpenMail="",ChatStart="Return",OpenWeapon="",OpenCharaInfo="",SubPaletteLeft="G",OpenFriend="",OpenMacro="",Jump="Space",OpenProfile="",ChangeRadarMap="M",Access="E",ChatStartWhisper="",OpenMyMenu="",ChangeView="Z",OpenAcGacha="F11",OpenLogOut="F12",OpenClientOrder="",LockOn="Q",MoveRight="D",OpenQuestInfo="",NormalAttack="Slash",OpenCustomize="U",MoveLeft="A",OpenEventItem="",CameraDown="",OpenMag="Y",LockOnNext="",ChatStartGuild="",WeaponAction="Shift",Avoid="X",MoveBack="S",OpenArmor="",OpenMatterBoard="",SubPalette="B",OpenConfig="",CameraNear="",OpenGuild="",OpenSubPalette="J",OpenParty="",OpenCommunicationLog="",RefuseFollowRun="K",AutoRun="V",OpenItemPack="I",OpenPayLog="",OpenSymbolArt="",PhotonArts="Backslash",SelectMenu="",CameraUp="",ChatStartPublic="",PaletteForce="F",SubPaletteRight="H",CameraFar="",},},PadBehavior={AnalogSetting={L={Direction="Plus",ChangeSign=false,Axis="Z",},R={Direction="Minus",ChangeSign=true,Axis="Z",},X2={Direction="Both",ChangeSign=false,Axis="Rx",},Y2={Direction="Both",ChangeSign=false,Axis="Ry",},Y1={Direction="Both",ChangeSign=false,Axis="Y",},X1={Direction="Both",ChangeSign=false,Axis="X",},},DigitalSetting={A=1,B18=20,B15=17,B=0,RThumb=9,B21=22,B19=21,B14=16,L=4,B20=22,LThumb=8,B17=19,R=5,Select=6,X=2,Y=3,B16=18,ThresR=15,B22=22,Start=7,ThresL=14,R2=11,L2=10,},},Announce={Type=3,},PadCtrl={NormalView={PhotonArts="Y",PaletteForce="PovExactD",LockOnNext="",PaletteReverse="PovExactU",SubPalette="ThresL",SubPaletteLeft="PovL",Jump="B",AutoRun="",MainMenu="Start",WeaponAction="R",ChangeView="RThumb",SelectMenu="Select",Avoid="ThresR",Access="A",LockOn="L",SubPaletteRight="PovR",NormalAttack="X",},Window={Cancel="B",ChangeCtrlWindowBack="",Decide="A",Exception="RThumb",TabBack="L",AllWindowClose="Start",Function="X",NextWidget="Y",PageForward="",MultiSelect="ThresR",PageBack="",NextTabDetails="Select",TabForward="R",ChangeCtrlWindowForward="ThresL",},ShoulderView={SubPaletteLeft="PovL",PhotonArts="Y",Jump="B",AutoRun="",MainMenu="Start",Access="A",Avoid="ThresR",SelectMenu="Select",ChangeView="RThumb",PaletteReverse="PovExactU",WeaponAction="R",NormalAttack="X",SubPalette="ThresL",SubPaletteRight="PovR",PaletteForce="PovExactD",},Presets={[2]="RZViewRcm",[1]="RNViewRcm",[3]="Rcm1",},},}
|
||||
|
1
PSO2SERVER/Resources/sql/scripts/1-setup-database.sql
Normal file
1
PSO2SERVER/Resources/sql/scripts/1-setup-database.sql
Normal file
@ -0,0 +1 @@
|
||||
/* What needs to be done here? */
|
@ -0,0 +1,94 @@
|
||||
/*
|
||||
-- Table structure for table `players`
|
||||
*/
|
||||
|
||||
CREATE TABLE IF NOT EXISTS `Players` (
|
||||
`PlayerID` int(11) NOT NULL AUTO_INCREMENT,
|
||||
`Username` longtext,
|
||||
`Password` longtext,
|
||||
`Nickname` longtext,
|
||||
`SettingsINI` longtext,
|
||||
PRIMARY KEY (`PlayerID`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=10000000 ;
|
||||
|
||||
/*
|
||||
-- Table structure for table `characters`
|
||||
*/
|
||||
|
||||
|
||||
/* TODO: Check the auto increment for characters. */
|
||||
|
||||
CREATE TABLE IF NOT EXISTS `Characters` (
|
||||
`CharacterID` int(11) NOT NULL AUTO_INCREMENT,
|
||||
`Name` longtext,
|
||||
`LooksBinary` longblob,
|
||||
`JobsBinary` longblob,
|
||||
`Player_PlayerID` int(11) DEFAULT NULL,
|
||||
PRIMARY KEY (`CharacterID`),
|
||||
KEY `IX_Player_PlayerID` (`Player_PlayerID`) USING HASH,
|
||||
FOREIGN KEY (`Player_PlayerID`) REFERENCES `Players` (`PlayerID`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
|
||||
|
||||
|
||||
/*
|
||||
-- Table structure for table `ServerInfoes`
|
||||
*/
|
||||
|
||||
CREATE TABLE IF NOT EXISTS `ServerInfoes` (
|
||||
`info` varchar(255) CHARACTER SET utf8 NOT NULL,
|
||||
`setting` longtext,
|
||||
PRIMARY KEY (`info`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
||||
|
||||
|
||||
/*
|
||||
-- Table structure for table `Teleports`
|
||||
*/
|
||||
CREATE TABLE IF NOT EXISTS `Teleports` (
|
||||
`ZoneName` varchar(225) NOT NULL,
|
||||
`ObjectID` int(11) NOT NULL,
|
||||
`RotX` float NOT NULL,
|
||||
`RotY` float NOT NULL,
|
||||
`RotZ` float NOT NULL,
|
||||
`RotW` float NOT NULL,
|
||||
`PosX` float NOT NULL,
|
||||
`PosY` float NOT NULL,
|
||||
`PosZ` float NOT NULL,
|
||||
PRIMARY KEY (`ZoneName`,`ObjectID`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
|
||||
|
||||
|
||||
/*
|
||||
-- Table structure for table `Teleports`
|
||||
*/
|
||||
CREATE TABLE IF NOT EXISTS `NPCs` (
|
||||
`EntityID` int(11) NOT NULL,
|
||||
`ZoneName` varchar(225) NOT NULL,
|
||||
`NPCName` varchar(255) NOT NULL,
|
||||
`RotX` float NOT NULL,
|
||||
`RotY` float NOT NULL,
|
||||
`RotZ` float NOT NULL,
|
||||
`RotW` float NOT NULL,
|
||||
`PosX` float NOT NULL,
|
||||
`PosY` float NOT NULL,
|
||||
`PosZ` float NOT NULL,
|
||||
PRIMARY KEY (`EntityID`,`ZoneName`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
|
||||
|
||||
/*
|
||||
-- Table structure for table `GameObjects`
|
||||
*/
|
||||
CREATE TABLE IF NOT EXISTS `GameObjects` (
|
||||
`ObjectID` int(11) NOT NULL,
|
||||
`ZoneName` varchar(225) NOT NULL,
|
||||
`ObjectName` varchar(225) NOT NULL,
|
||||
`ObjectFlags` BLOB NOT NULL,
|
||||
`RotX` float NOT NULL,
|
||||
`RotY` float NOT NULL,
|
||||
`RotZ` float NOT NULL,
|
||||
`RotW` float NOT NULL,
|
||||
`PosX` float NOT NULL,
|
||||
`PosY` float NOT NULL,
|
||||
`PosZ` float NOT NULL,
|
||||
PRIMARY KEY (`ObjectID`, `ZoneName`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
|
876
PSO2SERVER/Resources/sql/scripts/3-setup-initial-data.sql
Normal file
876
PSO2SERVER/Resources/sql/scripts/3-setup-initial-data.sql
Normal file
@ -0,0 +1,876 @@
|
||||
--
|
||||
-- Default NPCs (For lobby)
|
||||
--
|
||||
|
||||
INSERT IGNORE INTO `NPCs` (`EntityID`, `ZoneName`, `NPCName`, `RotX`, `RotY`, `RotZ`, `RotW`, `PosX`, `PosY`, `PosZ`) VALUES
|
||||
(450, 'lobby', 'Npc_ShopWeapon', 0, -0.587402, 0, 0.808594, 25.6875, 0.0599976, -142.375),
|
||||
(451, 'lobby', 'Npc_ShopItem', 0, 0.615234, 0, 0.787598, -26, 0.0599976, -141.25),
|
||||
(452, 'lobby', 'Npc_CounterLab1', 0, -0.719238, 0, 0.694336, 26.625, 0.0599976, -133),
|
||||
(453, 'lobby', 'Npc_ShopItem2', 0, -0.765625, 0, 0.642578, 26.2031, 0.0599976, -129.875),
|
||||
(454, 'lobby', 'Npc_ShopCostume1', 0, 0.765625, 0, 0.642578, -26.2344, 0.0599976, -129.5),
|
||||
(455, 'lobby', 'Npc_ShopCostume2', 0, 0.736816, 0, 0.675293, -26.5938, 0.0599976, -132.5),
|
||||
(456, 'lobby', 'Npc_ShopDisc', 0, -0.642578, 0, 0.765625, 26.5, 0.0599976, -139.5),
|
||||
(457, 'lobby', 'Npc_CounterSalon1', 0, -0.707031, 0, 0.707031, 42.6562, 7.13281, -136.125),
|
||||
(458, 'lobby', 'Npc_ShopReform1', 0, -0.300537, 0, 0.953613, 53.0938, -5.89844, -83.625),
|
||||
(459, 'lobby', 'Npc_ShopTrade', 0, -0.300537, 0, 0.953613, 64.6875, -5.89844, -74.875),
|
||||
(460, 'lobby', 'Npc_CounterNetCafe', 0, -0.341797, 0, 0.939453, 66.375, -5.89844, -73.3125),
|
||||
(461, 'lobby', 'Npc_ShopPoint', 0, -0.258545, 0, 0.96582, 62.75, -5.89844, -76.1875),
|
||||
(462, 'lobby', 'Npc_ShopTrade2', 0, 0.668945, 0, 0.743164, -42.5, 7.09766, -142.5),
|
||||
(463, 'lobby', 'Npc_ShopPoint3', 0, 0.675293, 0, 0.737305, -42.8438, 7.13281, -135),
|
||||
(464, 'lobby', 'Npc_ShopPoint2', 0, 0.719238, 0, 0.694336, -42.8438, 7.13281, -133),
|
||||
(465, 'lobby', 'Npc_ShopReform2', 0, -0.300537, 0, 0.953613, 55.2188, -5.89844, -81.9375),
|
||||
(466, 'lobby', 'Npc_CounterLab2', 0, -0.719238, 0, 0.694336, 26.625, 0.0599976, -133),
|
||||
(467, 'lobby', 'Npc_ShopTrade3', 0, 0.628906, 0, 0.776855, -42.0938, 7.09766, -145),
|
||||
(468, 'lobby', 'Npc_CQShopPoint', 0, 0.675293, 0, 0.737305, -42.6875, 7, -140),
|
||||
(469, 'lobby', 'Npc_05', 0, 1, 0, 0, 0, 0.0999756, -147.5),
|
||||
(470, 'lobby', 'Npc_22', 0, -0.258545, 0, 0.96582, 18.5, 7, -113.5),
|
||||
(471, 'lobby', 'Npc_21', 0, 0.190674, 0, 0.981445, 19.0938, -3, -88.875),
|
||||
(472, 'lobby', 'Npc_01', 0, -0.886719, 0, 0.46167, 26.0938, 0, -113),
|
||||
(473, 'lobby', 'Npc_06', 0, 0.979492, 0, -0.199219, 9.5, 0, -112),
|
||||
(474, 'lobby', 'Npc_07', 0, 0.999023, 0, -0.0435791, 8.5, -3, -76),
|
||||
(475, 'lobby', 'Npc_08', 0, 0.939453, 0, 0.341797, 25, 14, -160),
|
||||
(476, 'lobby', 'Npc_09', 0, 0.923828, 0, 0.382568, -20, -3, -78.5),
|
||||
(477, 'lobby', 'Npc_10', 0, 0.996094, 0, -0.0870972, -16.5, -3, -77.375),
|
||||
(478, 'lobby', 'Npc_11', 0, 0.707031, 0, 0.707031, -57.5, -6, -52.5),
|
||||
(479, 'lobby', 'Npc_12', 0, 0.90625, 0, 0.422607, 12.75, 14, -164.75),
|
||||
(480, 'lobby', 'Npc_13', 0, -0.46167, 0, 0.886719, -4.49609, 0, -113.188),
|
||||
(481, 'lobby', 'Npc_14', 0, 0.886719, 0, 0.46167, -5.5, 0, -112.5),
|
||||
(482, 'lobby', 'Npc_28', 0, -0.113159, 0, 0.993164, -16.5, -6, -60.375),
|
||||
(483, 'lobby', 'Npc_55', 0, 0.258545, 0, 0.96582, -24, 0, -120),
|
||||
(484, 'lobby', 'Npc_53', 0, 0.675293, 0, 0.737305, -49, 0, -97.75),
|
||||
(485, 'lobby', 'Npc_51', 0, -0.99707, 0, 0.0698242, 49.1875, 0.5, -87.1875),
|
||||
(486, 'lobby', 'Npc_56', 0, 0.792969, 0, -0.608398, 54.5625, 0, -110.562),
|
||||
(487, 'lobby', 'Npc_65', 0, 1, 0, 0, 0, 22, -126),
|
||||
(488, 'lobby', 'Npc_68', 0, -0.707031, 0, 0.707031, -12, 0.0999756, -133.5),
|
||||
(489, 'lobby', 'Npc_69', 0, -0.707031, 0, 0.707031, -11.8594, 0.0999756, -136.375),
|
||||
(490, 'lobby', 'Npc_91', 0, 0.939453, 0, 0.341797, -26.3125, 0.000719547, -102.812),
|
||||
(491, 'lobby', 'Npc_80', 0, 0, 0, 1, 0.0846558, 0.0999756, -122.688),
|
||||
(492, 'lobby', 'Npc_81', 0, 0, 0, 1, 0.0846558, 0.0999756, -122.688),
|
||||
(493, 'lobby', 'Npc_97', 0, 0, 0, 1, 0.0846558, 0.0999756, -122.688),
|
||||
(494, 'lobby', 'Npc_96', 0, 0, 0, 1, 0.0846558, 0.0999756, -122.688),
|
||||
(495, 'lobby', 'Npc_99', 0, 0, 0, 1, 0.0846558, 0.0999756, -122.688),
|
||||
(496, 'lobby', 'Npc_61', 0, 0, 0, 1, 0.0846558, 0.0999756, -122.688),
|
||||
(497, 'lobby', 'Npc_77', 0, 0, 0, 1, 0.0846558, 0.0999756, -122.688),
|
||||
(498, 'lobby', 'Npc_121', 0, 0, 0, 1, 0.0846558, 0.0999756, -122.688),
|
||||
(499, 'lobby', 'Npc_125', 0, 0.0523071, 0, 0.998535, -26.0469, -3, -92.4375),
|
||||
(500, 'lobby', 'Npc_134', 0, 0, 0, 1, 0.0846558, 0.0999756, -122.688),
|
||||
(501, 'lobby', 'Npc_83', 0, -0.886719, 0, 0.46167, 26.0938, 0, -113),
|
||||
(502, 'lobby', 'Npc_85', 0, 1, 0, 0, 0, 0.0999756, -147.5),
|
||||
(503, 'lobby', 'Npc_118', 0, 1, 0, 0, 10, 0.0507812, -131.75),
|
||||
(504, 'lobby', 'Npc_153', 0, 0, 0, 1, 10, 0.02948, -133),
|
||||
(505, 'lobby', 'Npc_62', 0, -0.923828, 0, 0.382568, 28.25, -3, -83.125),
|
||||
(506, 'lobby', 'Npc_63', 0, -0.984375, 0, 0.173584, 25.2188, -3, -81.625),
|
||||
(507, 'lobby', 'Npc_192', 0, 0, 0, 1, 0.0846558, 0.0999756, -122.688),
|
||||
(508, 'lobby', 'Npc_193', 0, 0.130493, 0, 0.991211, -1, 0.0999756, -149.125),
|
||||
(509, 'lobby', 'Npc_ShipBattle', 0, 0, 0, 1, -7.23828, 0.0999756, -124.875),
|
||||
(510, 'lobby', 'Npc_241', 0, 0.341797, 0, 0.939453, 8.39844, 0.0999756, -125.062),
|
||||
(511, 'lobby', 'Npc_244', 0, 0.382568, 0, 0.923828, 6.79688, 0.0999756, -124.375),
|
||||
(512, 'lobby', 'Npc_230', 0, 0.382568, 0, 0.923828, 9.39844, 0.0999756, -126.562),
|
||||
(513, 'lobby', 'Npc_CounterQuest1', 0, 0.121826, 0, 0.992188, -29.75, 0.199951, 118.5),
|
||||
(514, 'lobby', 'Npc_CounterQuest2', 0, -0.130493, 0, 0.991211, 29.8906, 0.199951, 118.375),
|
||||
(515, 'lobby', 'Npc_CounterArks', 0, 0.865723, 0, -0.499756, 22.6875, 2.85938, 193.5),
|
||||
(516, 'lobby', 'Npc_ClassCounter', 0, 0.818848, 0, -0.573242, 24.8906, 2.85938, 188.125),
|
||||
(517, 'lobby', 'Npc_CounterArks2', 0, 0.737305, 0, -0.675293, 26.1875, 2.85938, 183),
|
||||
(518, 'lobby', 'Npc_CounterMd1', 0, 0.792969, 0, 0.608398, -25.5938, 3.06836, 185.875),
|
||||
(519, 'lobby', 'Npc_03', 0, 0.258545, 0, 0.96582, -16, 0, 124.5),
|
||||
(520, 'lobby', 'Npc_26', 0, -1, 0, 0, 7, 2.39844, 201),
|
||||
(521, 'lobby', 'Npc_52', 0, -0.818848, 0, 0.573242, -45.5, 1, 145),
|
||||
(522, 'lobby', 'Npc_50', 0, -0.130493, 0, 0.991211, 35.7188, 0.199951, 119.75),
|
||||
(523, 'lobby', 'Npc_19', 0, 0.818848, 0, -0.573242, -7.59766, 2.39844, 161),
|
||||
(524, 'lobby', 'Npc_20', 0, -0.173584, 0, 0.984375, 4, 2.39844, 165),
|
||||
(525, 'lobby', 'Npc_17', 0, 0.675293, 0, 0.737305, -26.1875, 2.91602, 179.25),
|
||||
(526, 'lobby', 'Npc_58', 0, 0.737305, 0, -0.675293, -22.5, 2.59961, 179.375),
|
||||
(527, 'lobby', 'Npc_02', 0, 0.737305, 0, -0.675293, 21, 2.39844, 172),
|
||||
(528, 'lobby', 'Npc_04', 0, 0.939453, 0, 0.341797, -16.5, 2.39844, 196.5),
|
||||
(529, 'lobby', 'Npc_18', 0, 0.707031, 0, 0.707031, -17.5, 15.7969, 185.5),
|
||||
(530, 'lobby', 'Npc_54', 0, 1, 0, 0, 0, 15, 206),
|
||||
(531, 'lobby', 'Npc_59', 0, 0.707031, 0, 0.707031, 58.2812, 1, 138.75),
|
||||
(532, 'lobby', 'Npc_27', 0, 0.707031, 0, 0.707031, -29.5, 15, 175.5),
|
||||
(533, 'lobby', 'Npc_49', 0, 0.139038, 0, 0.990234, -35.25, 0.199951, 119.875),
|
||||
(534, 'lobby', 'Npc_57', 0, 0.996094, 0, 0.0872192, -2.5, 2.40234, 183.5),
|
||||
(535, 'lobby', 'Npc_82', 0, -0.130493, 0, 0.991211, 39.9375, 0.199951, 120.938),
|
||||
(536, 'lobby', 'Npc_98', 0, 0.996094, 0, 0.0872192, 6.03125, 2.4043, 151.375),
|
||||
(537, 'lobby', 'Npc_87', 0, 0.675293, 0, 0.737305, -20.875, 2.40234, 171.875),
|
||||
(538, 'lobby', 'Npc_86', 0, 0.737305, 0, -0.675293, 21, 2.39844, 172),
|
||||
(539, 'lobby', 'Npc_151', 0, -0.818848, 0, 0.573242, -12.5, 0, 146.75),
|
||||
(540, 'lobby', 'Npc_150', 0, -0.923828, 0, 0.382568, -10.8438, 1.19922, 151.75),
|
||||
(541, 'lobby', 'Npc_185', 0, 0.939453, 0, 0.341797, -16.5, 2.39844, 196.5),
|
||||
(542, 'lobby', 'Npc_188', 0, 0.737305, 0, -0.675293, 21, 2.39844, 172),
|
||||
(543, 'lobby', 'Npc_30', 0, -0.923828, 0, 0.382568, 23.5, 15, 203.5),
|
||||
(544, 'lobby', 'Npc_186', 0, -0.923828, 0, 0.382568, 23.5, 15, 203.5),
|
||||
(913, 'casino', 'Npc_AmCounterQuestA', 0, -0.865723, 0, 0.5, 22.7969, 6.5, 95.875),
|
||||
(914, 'casino', 'Npc_AmShopA', 0, -0.707031, 0, 0.707031, 26.2969, 6.5, 82.5625),
|
||||
(915, 'casino', 'Npc_AmCounterBarA', 0, 0.874512, 0, 0.484863, -22.6719, 6.5, 97),
|
||||
(916, 'casino', 'Npc_AmExchange1', 0, 0.719238, 0, 0.694336, -26.1875, 6.5, 83.1875),
|
||||
(917, 'casino', 'Npc_AmExchange2', 0, -0.707031, 0, 0.707031, 51.5938, 0.349854, -0.599609),
|
||||
(918, 'casino', 'Npc_203', 0, 0, 0, 1, 4, 6.49609, 66.0625),
|
||||
(919, 'casino', 'Npc_AmCounterB', 0, 0.0435791, 0, 0.999023, -3.64844, 0.349854, -38.5),
|
||||
(920, 'casino', 'Npc_161', 0, -0.422607, 0, 0.90625, 24, 0.349854, 20),
|
||||
(921, 'casino', 'Npc_160', 0, -0.818848, 0, 0.573242, -5.5, 0.349854, 31.3906),
|
||||
(922, 'casino', 'Npc_162', 0, 0.984375, 0, -0.173584, -31.125, 0.349854, 8.32812),
|
||||
(923, 'casino', 'Npc_215', 0, 0.5, 0, -0.865723, 32, 0.349854, -16.875),
|
||||
(10, 'campship', 'Npc_02', 0, -0.382568, 0, 0.923828, 5.69922, 0.0999756, -5.79688);
|
||||
|
||||
--
|
||||
-- Default Teleports (For lobby)
|
||||
--
|
||||
|
||||
INSERT IGNORE INTO `Teleports` (`ZoneName`, `ObjectID`, `RotX`, `RotY`, `RotZ`, `RotW`, `PosX`, `PosY`, `PosZ`) VALUES
|
||||
('lobby', 433, 0, -0.964844, 0, 0.262207, 28.5625, 0, 148.375),
|
||||
('lobby', 435, 0, 0.964844, 0, 0.262451, -28.3281, 0, 148.25),
|
||||
('lobby', 437, 0, 0.999512, 0, -0.000893593, 0.112061, 0, 138.625),
|
||||
('lobby', 441, 0, -0.00242615, 0, 0.999512, -0.0609131, 14, -167.125),
|
||||
('lobby', 443, 0, -0.368652, 0, 0.929199, 8.01562, 0.0999756, -143),
|
||||
('lobby', 446, 0, -0.391846, 0, -0.919922, -8.00781, 0.0999756, -142.875);
|
||||
|
||||
--
|
||||
-- Objects!
|
||||
--
|
||||
|
||||
|
||||
INSERT IGNORE INTO `GameObjects` (`ObjectID`, `ZoneName`, `ObjectName`, `ObjectFlags`, `RotX`, `RotY`, `RotZ`, `RotW`, `PosX`, `PosY`, `PosZ`) VALUES
|
||||
(1, 'lobby', 'oa_live_object', 0x1008000000a1066d020000000000000000000000400000e42c000000ffffffff29000000010000002b000000020000003300000000000000310000000100000039000000000000002a000000000000002d00000001000000, 0, 0, 0, 1, 0, 0, 0),
|
||||
(91, 'lobby', 'ob_0102_0127', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, 0, 0, -135),
|
||||
(92, 'lobby', 'ob_0102_0034', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, -0.980469, 0, 0.195068, 24.5938, -6, -65.1875),
|
||||
(93, 'lobby', 'ob_0102_0034', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.980469, 0, 0.195068, -24.5938, -6, -65.1875),
|
||||
(94, 'lobby', 'ob_0100_0200', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, 0, -5.77734, -22.5),
|
||||
(95, 'lobby', 'ob_0100_0101', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, 0, -1.29785, -99.375),
|
||||
(96, 'lobby', 'ob_0102_0119', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, 0, 0, -135),
|
||||
(97, 'lobby', 'ob_0102_0128', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, 0, 0, -135),
|
||||
(98, 'lobby', 'ob_0100_0121', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, 0, 0, -135),
|
||||
(99, 'lobby', 'ob_0100_0016', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, -0.980469, 0, 0.195068, 24.5938, -6, -65.1875),
|
||||
(100, 'lobby', 'ob_0100_0018', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.980469, 0, 0.195068, -24.5938, -6, -65.1875),
|
||||
(101, 'lobby', 'ob_0100_0200', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, 0, -5.77734, -22.5),
|
||||
(102, 'lobby', 'ob_0100_0101', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, 0, -1.29785, -99.375),
|
||||
(103, 'lobby', 'ob_0100_0119', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, 0, 0, -135),
|
||||
(104, 'lobby', 'ob_0102_0128', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, 0, 0, -135),
|
||||
(105, 'lobby', 'oa_sonic_manager', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, 0, 0, -135),
|
||||
(106, 'lobby', 'ob_0100_0112', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, 0, 0, -135),
|
||||
(107, 'lobby', 'ob_0100_0115', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, -0.980469, 0, 0.195068, 24.5938, -6, -65.1875),
|
||||
(108, 'lobby', 'ob_0100_0115', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.980469, 0, 0.195068, -24.5938, -6, -65.1875),
|
||||
(109, 'lobby', 'ob_0100_0200', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, 0, -5.77734, -22.5),
|
||||
(110, 'lobby', 'ob_0100_0101', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, 0, -1.29785, -99.375),
|
||||
(111, 'lobby', 'ob_0100_0114', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0.0279388, 0.887207, -0.0542297, 0.457031, 22.3906, 8.79688, -104.688),
|
||||
(112, 'lobby', 'ob_0100_0114', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0.0296021, 0.733398, -0.0320129, 0.677734, 25.0938, 4.89844, -136.5),
|
||||
(113, 'lobby', 'ob_0100_0113', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 1, 0, 0, 0, 0, -109.5),
|
||||
(114, 'lobby', 'ob_0100_0114', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.976074, 0, 0.216431, 48.1875, -0.5, -84.25),
|
||||
(115, 'lobby', 'ob_0100_0114', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.886719, 0, 0.46167, 67.375, -0.5, -69.75),
|
||||
(116, 'lobby', 'ob_0100_0114', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0.0279388, -0.887207, 0.0542297, 0.457031, -22.3906, 8.79688, -104.688),
|
||||
(117, 'lobby', 'ob_0100_0114', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0.0296021, -0.733398, 0.0320129, 0.677734, -25.0938, 4.89844, -136.5),
|
||||
(118, 'lobby', 'ob_0100_0114', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.525879, 0, 0.850098, 50.5938, 13.5, -105.188),
|
||||
(119, 'lobby', 'ob_0100_0114', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, -0.525879, 0, 0.850098, -50.5938, 13.5, -105.188),
|
||||
(120, 'lobby', 'ob_0100_0117', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, 0, 0, -135),
|
||||
(121, 'lobby', 'ob_0102_0128', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, 0, 0, -135),
|
||||
(122, 'lobby', 'ob_0100_0028', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, -0.422607, 0, 0.90625, -59, 18.2969, -149),
|
||||
(123, 'lobby', 'ob_0100_0027', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.382568, 0, 0.923828, 2.29883, 16.1875, -160),
|
||||
(124, 'lobby', 'ob_0100_0027', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, -0.382568, 0, 0.923828, -2.29883, 18.1875, -155),
|
||||
(125, 'lobby', 'ob_0100_0028', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, -53.6875, 18.3438, -128.625),
|
||||
(126, 'lobby', 'ob_0100_0027', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, 53.6875, 18.3438, -128.625),
|
||||
(127, 'lobby', 'ob_0100_0028', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, -0.382568, 0, 0.923828, 2.29883, 18.1875, -155),
|
||||
(128, 'lobby', 'ob_0100_0028', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, -0.422607, 0, 0.90625, 50, 18.2969, -125.688),
|
||||
(129, 'lobby', 'ob_0100_0028', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, 55.125, 18.3438, -152.25),
|
||||
(130, 'lobby', 'ob_0100_0028', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.382568, 0, 0.923828, -2.29883, 16.1875, -160),
|
||||
(131, 'lobby', 'ob_0100_0027', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, 20, 18.1875, -132.5),
|
||||
(132, 'lobby', 'ob_0100_0028', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, -0.422607, 0, 0.90625, 58, 18.2969, -132),
|
||||
(133, 'lobby', 'ob_0100_0027', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.422607, 0, 0.90625, 59, 18.2969, -149),
|
||||
(134, 'lobby', 'ob_0100_0028', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, -20, 18.1875, -132.5),
|
||||
(135, 'lobby', 'ob_0100_0028', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.382568, 0, 0.923828, -2.29883, 19.7969, -150),
|
||||
(136, 'lobby', 'ob_0100_0027', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, -55.125, 18.3438, -152.25),
|
||||
(137, 'lobby', 'ob_0100_0027', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.422607, 0, 0.90625, -50, 18.2969, -125.688),
|
||||
(138, 'lobby', 'ob_0100_0028', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, -0.422607, 0, 0.90625, -51.5, 18.2969, -155.5),
|
||||
(139, 'lobby', 'ob_0100_0028', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, 25, 16.1875, -132.5),
|
||||
(140, 'lobby', 'ob_0100_0027', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, -25, 16.1875, -132.5),
|
||||
(141, 'lobby', 'ob_0100_0027', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.382568, 0, 0.923828, 2.29883, 19.7969, -150),
|
||||
(142, 'lobby', 'ob_0100_0027', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.422607, 0, 0.90625, -58, 18.2969, -132),
|
||||
(143, 'lobby', 'ob_0100_0027', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.422607, 0, 0.90625, 51.5, 18.2969, -155.5),
|
||||
(144, 'lobby', 'ob_0100_0200', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, 0, -5.77734, -22.5),
|
||||
(145, 'lobby', 'ob_0100_0101', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, 0, -1.2998, -99.375),
|
||||
(146, 'lobby', 'ob_0100_0021', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.707031, 0, 0.707031, 47, 21.5, -107.5),
|
||||
(147, 'lobby', 'ob_0100_0021', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.707031, 0, 0.707031, 55, 18, -140.5),
|
||||
(148, 'lobby', 'ob_0100_0021', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.707031, 0, 0.707031, -15, 19.7969, -132.5),
|
||||
(149, 'lobby', 'ob_0100_0021', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, 15, 19.7969, -132.5),
|
||||
(150, 'lobby', 'ob_0100_0021', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.707031, 0, 0.707031, -47, 21.5, -107.5),
|
||||
(151, 'lobby', 'ob_0100_0021', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.707031, 0, 0.707031, -55, 18, -140.5),
|
||||
(152, 'lobby', 'ob_0100_0021', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.707031, 0, 0.707031, 55, 18, -140.5),
|
||||
(153, 'lobby', 'ob_0100_0006', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.980469, 0, 0.195068, -24.5938, -6, -65.1875),
|
||||
(154, 'lobby', 'ob_0100_0006', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, -0.980469, 0, 0.195068, 24.5938, -6, -65.1875),
|
||||
(155, 'lobby', 'ob_0100_0005', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, 0, 0, -135),
|
||||
(156, 'lobby', 'ob_0100_0025', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.948242, 0, 0.317139, 63.5, -5.5, -52.5),
|
||||
(157, 'lobby', 'ob_0100_0025', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.199219, 0, 0.979492, 30.5, 14.2969, -150),
|
||||
(158, 'lobby', 'ob_0100_0025', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.130493, 0, 0.991211, 33, 14.2969, -144),
|
||||
(159, 'lobby', 'ob_0100_0025', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.948242, 0, 0.317139, 58, -5.5, -45),
|
||||
(160, 'lobby', 'ob_0100_0025', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.446045, 0, 0.894531, 40, -5.79688, -39.5),
|
||||
(161, 'lobby', 'ob_0100_0025', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, -0.130493, 0, 0.991211, 33, 14.2969, -126),
|
||||
(162, 'lobby', 'ob_0100_0025', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.446045, 0, 0.894531, 35, -5.79688, -43.5),
|
||||
(163, 'lobby', 'ob_0100_0025', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, -0.199219, 0, 0.979492, 30.5, 14.2969, -120),
|
||||
(164, 'lobby', 'ob_0100_0025', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.707031, 0, 0.707031, 5, 0, -110),
|
||||
(165, 'lobby', 'ob_0100_0025', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, -0.948242, 0, 0.317139, -58, -5.5, -45),
|
||||
(166, 'lobby', 'ob_0100_0025', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, -0.948242, 0, 0.317139, -63.5, -5.5, -52.5),
|
||||
(167, 'lobby', 'ob_0100_0025', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.130493, 0, 0.991211, -33, 14.2969, -126),
|
||||
(168, 'lobby', 'ob_0100_0025', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, -0.130493, 0, 0.991211, -33, 14.2969, -144),
|
||||
(169, 'lobby', 'ob_0100_0025', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.199219, 0, 0.979492, -30.5, 14.2969, -120),
|
||||
(170, 'lobby', 'ob_0100_0025', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, -0.446045, 0, 0.894531, -40, -5.79688, -39.5),
|
||||
(171, 'lobby', 'ob_0100_0025', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, -0.446045, 0, 0.894531, -35, -5.79688, -43.5),
|
||||
(172, 'lobby', 'ob_0100_0025', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, -0.199219, 0, 0.979492, -30.5, 14.2969, -150),
|
||||
(173, 'lobby', 'ob_0100_0025', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, -0.707031, 0, 0.707031, -5, 0, -110),
|
||||
(174, 'lobby', 'ob_0100_0120', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, 0, 0, -135),
|
||||
(175, 'lobby', 'ob_0102_0136', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, 0, 0, -135),
|
||||
(176, 'lobby', 'oa_tanabata', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, 0.199951, 3.5, -135),
|
||||
(177, 'lobby', 'oa_tanabata', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, -11.1953, 2, -107.75),
|
||||
(178, 'lobby', 'oa_tanabata', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, -0.300537, 0, 0.953613, -14.5, 2, -100.25),
|
||||
(179, 'lobby', 'oa_tanabata', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, -17.5, 2, -92.6875),
|
||||
(180, 'lobby', 'oa_tanabata', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.499756, 0, 0.865723, 11.2969, 2, -107.562),
|
||||
(181, 'lobby', 'oa_tanabata', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, 14.6953, 2, -100.25),
|
||||
(182, 'lobby', 'oa_tanabata', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, -0.216309, 0, 0.976074, 17.6875, 2, -92.6875),
|
||||
(183, 'lobby', 'ob_0100_0007', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, 0, 0, -135),
|
||||
(184, 'lobby', 'ob_0100_0009', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, -0.980469, 0, 0.195068, 24.5938, -6, -65.1875),
|
||||
(185, 'lobby', 'ob_0100_0009', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.980469, 0, 0.195068, -24.5938, -6, -65.1875),
|
||||
(186, 'lobby', 'ob_0100_0200', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, 0, -5.77734, -22.5),
|
||||
(187, 'lobby', 'ob_0100_0101', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, 0, -1.29785, -99.375),
|
||||
(188, 'lobby', 'ob_0102_0119', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, 0, 0, -135),
|
||||
(189, 'lobby', 'ob_0102_0128', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, 0, 0, -135),
|
||||
(190, 'lobby', 'ob_0100_0010', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, 0, 0, -135),
|
||||
(191, 'lobby', 'ob_0100_0011', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, -0.980469, 0, 0.195068, 24.5938, -6, -65.1875),
|
||||
(192, 'lobby', 'ob_0100_0011', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.980469, 0, 0.195068, -24.5938, -6, -65.1875),
|
||||
(193, 'lobby', 'ob_0100_0101', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, 0, -1.29785, -99.375),
|
||||
(194, 'lobby', 'ob_0100_0200', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, 0, -5.77734, -22.5),
|
||||
(195, 'lobby', 'ob_0102_0128', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, 0, 0, -135),
|
||||
(196, 'lobby', 'ob_0100_0036', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, 15, 19, -135),
|
||||
(197, 'lobby', 'ob_0100_0036', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, -15, 19, -135),
|
||||
(198, 'lobby', 'ob_0100_0036', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, -55, 17.5, -140.5),
|
||||
(199, 'lobby', 'ob_0100_0036', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, -55, 17.5, -163.5),
|
||||
(200, 'lobby', 'ob_0100_0036', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, 55, 17.5, -140.5),
|
||||
(201, 'lobby', 'ob_0100_0036', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, -0.707031, 0, 0.707031, 47, 20.6875, -107.5),
|
||||
(202, 'lobby', 'ob_0100_0036', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.707031, 0, 0.707031, -47, 20.6875, -107.5),
|
||||
(203, 'lobby', 'ob_0100_0036', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, 55, 17.5, -163.5),
|
||||
(204, 'lobby', 'ob_0100_0036', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, 0, 19, -150),
|
||||
(205, 'lobby', 'ob_0100_0101', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, 0, -1.29785, -99.375),
|
||||
(206, 'lobby', 'ob_0100_0035', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 1, 0, 0, 0, -5.77734, -22.5),
|
||||
(207, 'lobby', 'ob_0102_0128', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, 0, 0, -135),
|
||||
(208, 'lobby', 'ob_0100_0034', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, -0.980469, 0, 0.195068, 24.5938, -6, -65.1875),
|
||||
(209, 'lobby', 'ob_0100_0034', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.980469, 0, 0.195068, -24.5938, -6, -65.1875),
|
||||
(210, 'lobby', 'ob_0100_0033', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, 0, 0, -135),
|
||||
(211, 'lobby', 'ob_0100_0012', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, 0, 0, -135),
|
||||
(212, 'lobby', 'ob_0100_0013', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, -0.980469, 0, 0.195068, 24.5938, -6, -65.1875),
|
||||
(213, 'lobby', 'ob_0100_0013', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.980469, 0, 0.195068, -24.5938, -6, -65.1875),
|
||||
(214, 'lobby', 'ob_0100_0200', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, 0, -5.77734, -22.5),
|
||||
(215, 'lobby', 'ob_0100_0101', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, 0, -1.29785, -99.375),
|
||||
(216, 'lobby', 'ob_0102_0128', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, 0, 0, -135),
|
||||
(217, 'lobby', 'ob_0100_0041', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, 0, 0, -135),
|
||||
(218, 'lobby', 'ob_0100_0042', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, -0.980469, 0, 0.195068, 24.5938, -6, -65.1875),
|
||||
(219, 'lobby', 'ob_0100_0042', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.980469, 0, 0.195068, -24.5938, -6, -65.1875),
|
||||
(220, 'lobby', 'ob_0100_0101', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, 0, -1.29785, -99.375),
|
||||
(221, 'lobby', 'ob_0100_0200', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, 0, -5.77734, -22.5),
|
||||
(222, 'lobby', 'ob_0100_0102', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, 0, 0, -135),
|
||||
(223, 'lobby', 'ob_0100_0103', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, 0, 0, -135),
|
||||
(224, 'lobby', 'ob_0100_0045', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, 0, 0, -135),
|
||||
(225, 'lobby', 'ob_0100_0046', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, -0.980469, 0, 0.195068, 24.5938, -6, -65.1875),
|
||||
(226, 'lobby', 'ob_0100_0046', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.980469, 0, 0.195068, -24.5938, -6, -65.1875),
|
||||
(227, 'lobby', 'ob_0100_0200', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, 0, -5.77734, -22.5),
|
||||
(228, 'lobby', 'ob_0100_0101', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, 0, -1.29785, -99.375),
|
||||
(229, 'lobby', 'ob_0100_0104', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, 0, 0, -135),
|
||||
(230, 'lobby', 'ob_0100_0103', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, 0, 0, -135),
|
||||
(231, 'lobby', 'ob_0100_0060', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, 0, 0, -135),
|
||||
(232, 'lobby', 'ob_0100_0061', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, -0.980469, 0, 0.195068, 24.5938, -6, -65.1875),
|
||||
(233, 'lobby', 'ob_0100_0061', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.980469, 0, 0.195068, -24.5938, -6, -65.1875),
|
||||
(234, 'lobby', 'ob_0100_0200', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, 0, -5.77734, -22.5),
|
||||
(235, 'lobby', 'ob_0100_0101', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, 0, -1.29785, -99.375),
|
||||
(236, 'lobby', 'ob_0100_0111', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, 0, 0, -135),
|
||||
(237, 'lobby', 'ob_0102_0128', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, 0, 0, -135),
|
||||
(238, 'lobby', 'ob_0100_0050', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, 0, 0, -135),
|
||||
(239, 'lobby', 'ob_0100_0051', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, -0.980469, 0, 0.195068, 24.5938, -6, -65.1875),
|
||||
(240, 'lobby', 'ob_0100_0051', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.980469, 0, 0.195068, -24.5938, -6, -65.1875),
|
||||
(241, 'lobby', 'ob_0100_0200', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, 0, -5.77734, -22.5),
|
||||
(242, 'lobby', 'ob_0100_0101', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, 0, -1.29785, -99.375),
|
||||
(243, 'lobby', 'ob_0100_0052', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, -55, 17.5, -140.5),
|
||||
(244, 'lobby', 'ob_0100_0052', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.865723, 0, 0.5, -55, 17.5, -163.5),
|
||||
(245, 'lobby', 'ob_0100_0052', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.707031, 0, 0.707031, -47, 16, -107.5),
|
||||
(246, 'lobby', 'ob_0100_0052', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.707031, 0, 0.707031, 0, 19, -150),
|
||||
(247, 'lobby', 'ob_0100_0052', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.865723, 0, 0.5, 55, 17.5, -163.5),
|
||||
(248, 'lobby', 'ob_0100_0052', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, 15, 19, -135),
|
||||
(249, 'lobby', 'ob_0100_0052', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 1, 0, 0, -15, 19, -135),
|
||||
(250, 'lobby', 'ob_0100_0052', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, 55, 17.5, -140.5),
|
||||
(251, 'lobby', 'ob_0100_0052', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, -0.707031, 0, 0.707031, 47, 16, -107.5),
|
||||
(252, 'lobby', 'ob_0100_0052', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.499756, 0, 0.865723, -55, 15.5, -152),
|
||||
(253, 'lobby', 'ob_0100_0052', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.499756, 0, 0.865723, 55, 15.5, -152),
|
||||
(254, 'lobby', 'ob_0100_0105', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, 0, 0, -135),
|
||||
(255, 'lobby', 'ob_0102_0128', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, 0, 0, -135),
|
||||
(256, 'lobby', 'ob_0100_0053', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, 0, 0, -135),
|
||||
(257, 'lobby', 'ob_0100_0054', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, -0.980469, 0, 0.195068, 24.5938, -6, -65.1875),
|
||||
(258, 'lobby', 'ob_0100_0054', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.980469, 0, 0.195068, -24.5938, -6, -65.1875),
|
||||
(259, 'lobby', 'ob_0100_0200', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, 0, -5.77734, -22.5),
|
||||
(260, 'lobby', 'ob_0100_0101', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, 0, -1.29785, -99.375),
|
||||
(261, 'lobby', 'ob_0100_0055', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, -55, 17.5, -140.5),
|
||||
(262, 'lobby', 'ob_0100_0055', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.865723, 0, 0.5, -55, 17.5, -163.5),
|
||||
(263, 'lobby', 'ob_0100_0055', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.707031, 0, 0.707031, -47, 16, -107.5),
|
||||
(264, 'lobby', 'ob_0100_0055', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.707031, 0, 0.707031, 0, 19, -150),
|
||||
(265, 'lobby', 'ob_0100_0055', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.865723, 0, 0.5, 55, 17.5, -163.5),
|
||||
(266, 'lobby', 'ob_0100_0055', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, 15, 19, -135),
|
||||
(267, 'lobby', 'ob_0100_0055', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 1, 0, 0, -15, 19, -135),
|
||||
(268, 'lobby', 'ob_0100_0055', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, 55, 17.5, -140.5),
|
||||
(269, 'lobby', 'ob_0100_0055', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, -0.707031, 0, 0.707031, 47, 16, -107.5),
|
||||
(270, 'lobby', 'ob_0100_0055', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.499756, 0, 0.865723, -55, 15.5, -152),
|
||||
(271, 'lobby', 'ob_0100_0055', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.499756, 0, 0.865723, 55, 15.5, -152),
|
||||
(272, 'lobby', 'ob_0100_0107', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, 0, 0, -135),
|
||||
(273, 'lobby', 'ob_0102_0128', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, 0, 0, -135),
|
||||
(274, 'lobby', 'ob_0100_0056', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, 0, 0, -135),
|
||||
(275, 'lobby', 'ob_0100_0057', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, -0.980469, 0, 0.195068, 24.5938, -6, -65.1875),
|
||||
(276, 'lobby', 'ob_0100_0057', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.980469, 0, 0.195068, -24.5938, -6, -65.1875),
|
||||
(277, 'lobby', 'ob_0100_0101', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, 0, -1.29785, -99.375),
|
||||
(278, 'lobby', 'ob_0100_0200', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, 0, -5.77734, -22.5),
|
||||
(279, 'lobby', 'ob_0102_0119', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, 0, 0, -135),
|
||||
(280, 'lobby', 'ob_0102_0128', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, 0, 0, -135),
|
||||
(281, 'lobby', 'ob_0100_0008', 0x10050000000e0400020000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.707031, 0, 0.707031, -73.0625, -1, -220),
|
||||
(282, 'lobby', 'ob_0100_0008', 0x10050000000e0400020000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.754395, 0, 0.655762, 31.3906, 0, -140.375),
|
||||
(283, 'lobby', 'ob_0100_0008', 0x10050000000e0400020000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, -0.707031, 0, 0.707031, 73.0625, -1, -220),
|
||||
(284, 'lobby', 'ob_0100_0008', 0x10050000000e0400020000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, -0.190674, 0, 0.981445, -16.5, -3, -89.5),
|
||||
(285, 'lobby', 'ob_0100_0008', 0x10050000000e0400020000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, -0.62207, 0, 0.782227, -31.1875, 0, -128.375),
|
||||
(286, 'lobby', 'ob_0100_0008', 0x10050000000e0400020000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, -0.808594, 0, 0.587402, -30.2969, 0, -144.75),
|
||||
(287, 'lobby', 'ob_0100_0008', 0x10050000000e0400020000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.808594, 0, 0.587402, 30.2969, 0, -144.75),
|
||||
(288, 'lobby', 'ob_0100_0008', 0x10050000000e0400020000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.687988, 0, 0.725098, 31.8906, 0, -133.5),
|
||||
(289, 'lobby', 'ob_0100_0008', 0x10050000000e0400020000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.62207, 0, 0.782227, 31.1875, 0, -128.375),
|
||||
(290, 'lobby', 'ob_0100_0008', 0x10050000000e0400020000000000000000000000400000b22c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, -0.687988, 0, 0.725098, -31.8906, 0, -133.5),
|
||||
(291, 'lobby', 'ob_0100_0008', 0x10050000000e0400020000000000000000000000400000b22c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.190674, 0, 0.981445, 16.5, -3, -89.5),
|
||||
(292, 'lobby', 'ob_0100_0008', 0x10050000000e0400020000000000000000000000400000b22c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, -0.754395, 0, 0.655762, -31.3906, 0, -140.375),
|
||||
(293, 'lobby', 'ob_0102_0127', 0x10050000000e0400000000000000000000000000400000b22c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, 0, 0, -135),
|
||||
(294, 'lobby', 'ob_0102_0034', 0x10050000000e0400000000000000000000000000400000b22c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, -0.980469, 0, 0.195068, 24.5938, -6, -65.1875),
|
||||
(295, 'lobby', 'ob_0102_0034', 0x10050000000e0400000000000000000000000000400000b22c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.980469, 0, 0.195068, -24.5938, -6, -65.1875),
|
||||
(296, 'lobby', 'ob_0100_0200', 0x10050000000e0400000000000000000000000000400000b22c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, 0, -5.77734, -22.5),
|
||||
(297, 'lobby', 'ob_0100_0101', 0x10050000000e0400000000000000000000000000400000b22c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, 0, -1.29785, -99.375),
|
||||
(298, 'lobby', 'ob_0102_0119', 0x10050000000e0400000000000000000000000000400000b22c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, 0, 0, -135),
|
||||
(299, 'lobby', 'ob_0102_0128', 0x10050000000e0400000000000000000000000000400000b22c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, 0, 0, -135),
|
||||
(300, 'lobby', 'ob_0100_0095', 0x10050000000e0400020000000000000000000000400000b22c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, 0, 0, -135),
|
||||
(301, 'lobby', 'ob_0100_0096', 0x10050000000e0400020000000000000000000000400000b22c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, -0.980469, 0, 0.195068, 24.5938, -6, -65.1875),
|
||||
(302, 'lobby', 'ob_0100_0123', 0x10050000000e0400020000000000000000000000400000b22c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.980469, 0, 0.195068, -24.5938, -6, -65.1875),
|
||||
(303, 'lobby', 'ob_0102_0119', 0x10050000000e0400020000000000000000000000400000b22c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, 0, 0, -135),
|
||||
(304, 'lobby', 'ob_0102_0128', 0x10050000000e0400020000000000000000000000400000b22c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, 0, 0, -135),
|
||||
(305, 'lobby', 'ob_0100_0200', 0x10050000000e0400020000000000000000000000400000b22c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, 0, -5.77734, -22.5),
|
||||
(306, 'lobby', 'ob_0100_0101', 0x10050000000e0400020000000000000000000000400000b22c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, 0, -1.29785, -99.375),
|
||||
(307, 'lobby', 'ob_0104_0016', 0x10050000000e0400020000000000000000000000400000b22c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, 0, 0, -182),
|
||||
(308, 'lobby', 'ob_0102_0127', 0x10050000000e0400000000000000000000000000400000b22c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, 0, 0, -135),
|
||||
(309, 'lobby', 'ob_0102_0034', 0x10050000000e0400000000000000000000000000400000b22c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, -0.980469, 0, 0.195068, 24.5938, -6, -65.1875),
|
||||
(310, 'lobby', 'ob_0102_0034', 0x10050000000e0400000000000000000000000000400000b22c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.980469, 0, 0.195068, -24.5938, -6, -65.1875),
|
||||
(311, 'lobby', 'ob_0100_0200', 0x10050000000e0400000000000000000000000000400000b22c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, 0, -5.77734, -22.5),
|
||||
(312, 'lobby', 'ob_0100_0101', 0x10050000000e0400000000000000000000000000400000b22c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, 0, -1.29785, -99.375),
|
||||
(313, 'lobby', 'ob_0102_0119', 0x10050000000e0400000000000000000000000000400000b22c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, 0, 0, -135),
|
||||
(314, 'lobby', 'ob_0102_0128', 0x10050000000e0400000000000000000000000000400000b22c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, 0, 0, -135),
|
||||
(315, 'lobby', 'ob_9900_0418', 0x1006000000028a3d020000000000000000000000400040b62c000000ffffffff29000000010000002b000000010000002a000000000000002d000000010000003400000001000000, 0, 0.250244, 0, 0.967773, -22, -6.79688, -44),
|
||||
(316, 'lobby', 'ob_9900_0418', 0x1006000000028a3d020000000000000000000000400040b62c000000ffffffff29000000010000002b000000010000002a000000010000002d000000010000003400000003000000, 0, 0.250244, 0, 0.967773, 22, -6.79688, -44),
|
||||
(317, 'lobby', 'ob_9900_0416', 0x1006000100a1066d020000000000000000000000400040e42c000000ffffffff29000000010000002b000000010000002a000000000000002d000000010000003b00000000000000110000000000000000000000, 0, 0, 0, 1, 0, -6, -43),
|
||||
(318, 'lobby', 'ob_0102_0034', 0x10050000000e0400000000000000000000000000400000b22c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.134766, 0, 0.990723, 24.75, 2.39844, 170),
|
||||
(319, 'lobby', 'ob_0102_0034', 0x10050000000e0400000000000000000000000000400000b22c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, -0.134766, 0, 0.990723, -24.75, 2.39844, 170),
|
||||
(320, 'lobby', 'ob_0100_0017', 0x10050000000e0400000000000000000000000000400000b22c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.134766, 0, 0.990723, 24.75, 2.39844, 170),
|
||||
(321, 'lobby', 'ob_0100_0019', 0x10050000000e0400000000000000000000000000400000b22c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, -0.134766, 0, 0.990723, -24.75, 2.39844, 170),
|
||||
(322, 'lobby', 'ob_0100_0031', 0x10050000000e0400000000000000000000000000400000b22c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.134766, 0, 0.990723, 24.75, 2.39844, 170),
|
||||
(323, 'lobby', 'ob_0100_0031', 0x10050000000e0400000000000000000000000000400000b22c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, -0.134766, 0, 0.990723, -24.75, 2.39844, 170),
|
||||
(324, 'lobby', 'ob_0100_0006', 0x10050000000e0400000000000000000000000000400000b22c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.134766, 0, 0.990723, 24.75, 2.39844, 170),
|
||||
(325, 'lobby', 'ob_0100_0006', 0x10050000000e0400000000000000000000000000400000b22c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, -0.134766, 0, 0.990723, -24.75, 2.39844, 170),
|
||||
(326, 'lobby', 'ob_0100_0009', 0x10050000000e0400000000000000000000000000400000b22c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.134766, 0, 0.990723, 24.75, 2.39844, 170),
|
||||
(327, 'lobby', 'ob_0100_0009', 0x10050000000e0400000000000000000000000000400000b22c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, -0.134766, 0, 0.990723, -24.75, 2.39844, 170),
|
||||
(328, 'lobby', 'ob_0100_0011', 0x10050000000e0400000000000000000000000000400000b22c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.134766, 0, 0.990723, 24.75, 2.39844, 170),
|
||||
(329, 'lobby', 'ob_0100_0011', 0x10050000000e0400000000000000000000000000400000b22c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, -0.134766, 0, 0.990723, -24.75, 2.39844, 170),
|
||||
(330, 'lobby', 'ob_0100_0034', 0x10050000000e0400000000000000000000000000400000b22c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.134766, 0, 0.990723, 24.75, 2.39844, 170),
|
||||
(331, 'lobby', 'ob_0100_0034', 0x10050000000e0400000000000000000000000000400000b22c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, -0.134766, 0, 0.990723, -24.75, 2.39844, 170),
|
||||
(332, 'lobby', 'ob_0100_0013', 0x10050000000e0400000000000000000000000000400000b22c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.134766, 0, 0.990723, 24.75, 2.39844, 170),
|
||||
(333, 'lobby', 'ob_0100_0013', 0x10050000000e0400000000000000000000000000400000b22c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, -0.134766, 0, 0.990723, -24.75, 2.39844, 170),
|
||||
(334, 'lobby', 'ob_0100_0042', 0x10050000000e0400000000000000000000000000400000b22c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.134766, 0, 0.990723, 24.75, 2.39844, 170),
|
||||
(335, 'lobby', 'ob_0100_0042', 0x10050000000e0400000000000000000000000000400000b22c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, -0.134766, 0, 0.990723, -24.75, 2.39844, 170),
|
||||
(336, 'lobby', 'ob_0100_0046', 0x10050000000e0400000000000000000000000000400000b22c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.134766, 0, 0.990723, 24.75, 2.39844, 170);
|
||||
INSERT IGNORE INTO `GameObjects` (`ObjectID`, `ZoneName`, `ObjectName`, `ObjectFlags`, `RotX`, `RotY`, `RotZ`, `RotW`, `PosX`, `PosY`, `PosZ`) VALUES
|
||||
(337, 'lobby', 'ob_0100_0046', 0x10050000000e0400000000000000000000000000400000b22c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, -0.134766, 0, 0.990723, -24.75, 2.39844, 170),
|
||||
(338, 'lobby', 'ob_0102_0034', 0x10050000000e0400000000000000000000000000400000b22c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.134766, 0, 0.990723, 24.75, 2.39844, 170),
|
||||
(339, 'lobby', 'ob_0102_0034', 0x10050000000e0400000000000000000000000000400000b22c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, -0.134766, 0, 0.990723, -24.75, 2.39844, 170),
|
||||
(340, 'lobby', 'ob_0100_0054', 0x10050000000e0400000000000000000000000000400000b22c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.134766, 0, 0.990723, 24.75, 2.39844, 170),
|
||||
(341, 'lobby', 'ob_0100_0054', 0x10050000000e0400000000000000000000000000400000b22c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, -0.134766, 0, 0.990723, -24.75, 2.39844, 170),
|
||||
(342, 'lobby', 'ob_0100_0051', 0x10050000000e0400000000000000000000000000400000b22c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.134766, 0, 0.990723, 24.75, 2.39844, 170),
|
||||
(343, 'lobby', 'ob_0100_0051', 0x10050000000e0400000000000000000000000000400000b22c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, -0.134766, 0, 0.990723, -24.75, 2.39844, 170),
|
||||
(344, 'lobby', 'ob_0100_0057', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.134766, 0, 0.990723, 24.75, 2.39844, 170),
|
||||
(345, 'lobby', 'ob_0100_0057', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, -0.134766, 0, 0.990723, -24.75, 2.39844, 170),
|
||||
(346, 'lobby', 'ob_0102_0034', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.134766, 0, 0.990723, 24.75, 2.39844, 170),
|
||||
(347, 'lobby', 'ob_0102_0034', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, -0.134766, 0, 0.990723, -24.75, 2.39844, 170),
|
||||
(348, 'lobby', 'ob_0100_0122', 0x10050000000e0400020000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.134766, 0, 0.990723, 24.75, 2.39844, 170),
|
||||
(349, 'lobby', 'ob_0100_0097', 0x10050000000e0400020000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, -0.134766, 0, 0.990723, -24.75, 2.39844, 170),
|
||||
(350, 'lobby', 'ob_0104_0016', 0x10050000000e0400020000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, 0, 2.29883, 210.5),
|
||||
(351, 'lobby', 'ob_0102_0118', 0x10050000000e0400020000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, 0, 0, 135),
|
||||
(352, 'lobby', 'ob_0102_0034', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.134766, 0, 0.990723, 24.75, 2.39844, 170),
|
||||
(353, 'lobby', 'ob_0102_0034', 0x10050000000e0400000000000000000000000000400000392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, -0.134766, 0, 0.990723, -24.75, 2.39844, 170),
|
||||
(354, 'lobby', 'ob_0102_0004', 0x10050000000e0400020000000000000000000000400100392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, -0.27124, 0, 0.962402, -21.375, 0, -98.75),
|
||||
(355, 'lobby', 'oa_sit_point', 0x1005000002a1066d020000000000000000000000400000e42c000000ffffffff29000000010000002b00000001000000320000000100000034000000010000000900000000000000000000000000000000000000620100000000000006000000, 0, -0.27124, 0, 0.962402, -21.375, 0, -98.75),
|
||||
(356, 'lobby', 'ob_0102_0004', 0x10050000000e0400020000000000000000000000400100392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, -0.27124, 0, 0.962402, -22.6562, 0, -99.5625),
|
||||
(357, 'lobby', 'oa_sit_point', 0x1005000002a1066d020000000000000000000000400000e42c000000ffffffff29000000010000002b00000001000000320000000100000034000000010000000900000000000000000000000000000000000000640100000000000006000000, 0, -0.27124, 0, 0.962402, -22.6562, 0, -99.5625),
|
||||
(358, 'lobby', 'ob_0102_0006', 0x10050000000e0400020000000000000000000000400100392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, -0.27124, 0, 0.962402, -23.9219, 0, -100.312),
|
||||
(359, 'lobby', 'oa_sit_point', 0x1005000002a1066d020000000000000000000000400000e42c000000ffffffff29000000010000002b00000001000000320000000100000034000000010000000900000000000000000000000000000000000000660100000000000006000000, 0, -0.27124, 0, 0.962402, -23.9219, 0, -100.312),
|
||||
(360, 'lobby', 'ob_0102_0005', 0x10050000000e0400020000000000000000000000400100392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, -0.27124, 0, 0.962402, -20.0938, 0, -98),
|
||||
(361, 'lobby', 'oa_sit_point', 0x1005000002a1066d020000000000000000000000400000e42c000000ffffffff29000000010000002b00000001000000320000000100000034000000010000000900000000000000000000000000000000000000680100000000000006000000, 0, -0.27124, 0, 0.962402, -20.0938, 0, -98),
|
||||
(362, 'lobby', 'ob_0102_0004', 0x10050000000e0400020000000000000000000000400100392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.27124, 0, 0.962402, 22.6562, 0, -99.5625),
|
||||
(363, 'lobby', 'oa_sit_point', 0x1005000002a1066d020000000000000000000000400000e42c000000ffffffff29000000010000002b000000010000003200000001000000340000000100000009000000000000000000000000000000000000006a0100000000000006000000, 0, 0.27124, 0, 0.962402, 22.6562, 0, -99.5625),
|
||||
(364, 'lobby', 'ob_0102_0005', 0x10050000000e0400020000000000000000000000400100392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.27124, 0, 0.962402, 23.9219, 0, -100.312),
|
||||
(365, 'lobby', 'oa_sit_point', 0x1005000002a1066d020000000000000000000000400000e42c000000ffffffff29000000010000002b000000010000003200000001000000340000000100000009000000000000000000000000000000000000006c0100000000000006000000, 0, 0.27124, 0, 0.962402, 23.9219, 0, -100.312),
|
||||
(366, 'lobby', 'ob_0102_0004', 0x10050000000e0400020000000000000000000000400100392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.27124, 0, 0.962402, 21.375, 0, -98.75),
|
||||
(367, 'lobby', 'oa_sit_point', 0x1005000002a1066d020000000000000000000000400000e42c000000ffffffff29000000010000002b000000010000003200000001000000340000000100000009000000000000000000000000000000000000006e0100000000000006000000, 0, 0.27124, 0, 0.962402, 21.375, 0, -98.75),
|
||||
(368, 'lobby', 'ob_0102_0006', 0x10050000000e0400020000000000000000000000400100392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.27124, 0, 0.962402, 20.0938, 0, -98),
|
||||
(369, 'lobby', 'oa_sit_point', 0x1005000002a1066d020000000000000000000000400000e42c000000ffffffff29000000010000002b00000001000000320000000100000034000000010000000900000000000000000000000000000000000000700100000000000006000000, 0, 0.27124, 0, 0.962402, 20.0938, 0, -98),
|
||||
(370, 'lobby', 'ob_0102_0005', 0x10050000000e0400020000000000000000000000400100392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.707031, 0, 0.707031, 44.3438, 0, -170.75),
|
||||
(371, 'lobby', 'oa_sit_point', 0x1005000002a1066d020000000000000000000000400000e42c000000ffffffff29000000010000002b00000001000000320000000100000034000000010000000900000000000000000000000000000000000000720100000000000006000000, 0, 0.707031, 0, 0.707031, 44.3438, 0, -170.75),
|
||||
(372, 'lobby', 'ob_0102_0004', 0x10050000000e0400020000000000000000000000400100392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.707031, 0, 0.707031, 44.3438, 0, -169.25),
|
||||
(373, 'lobby', 'oa_sit_point', 0x1005000002a1066d020000000000000000000000400000e42c000000ffffffff29000000010000002b00000001000000320000000100000034000000010000000900000000000000000000000000000000000000740100000000000006000000, 0, 0.707031, 0, 0.707031, 44.3438, 0, -169.25),
|
||||
(374, 'lobby', 'ob_0102_0006', 0x10050000000e0400020000000000000000000000400100392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.707031, 0, 0.707031, 44.3438, 0, -167.75),
|
||||
(375, 'lobby', 'oa_sit_point', 0x1005000002a1066d020000000000000000000000400000e42c000000ffffffff29000000010000002b00000001000000320000000100000034000000010000000900000000000000000000000000000000000000760100000000000006000000, 0, 0.707031, 0, 0.707031, 44.3438, 0, -167.75),
|
||||
(376, 'lobby', 'ob_0102_0005', 0x10050000000e0400020000000000000000000000400100392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.707031, 0, 0.707031, 44.3438, 7, -170.75),
|
||||
(377, 'lobby', 'oa_sit_point', 0x1005000002a1066d020000000000000000000000400000e42c000000ffffffff29000000010000002b00000001000000320000000100000034000000010000000900000000000000000000000000000000000000780100000000000006000000, 0, 0.707031, 0, 0.707031, 44.3438, 7, -170.75),
|
||||
(378, 'lobby', 'ob_0102_0004', 0x10050000000e0400020000000000000000000000400100392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.707031, 0, 0.707031, 44.3438, 7, -169.25),
|
||||
(379, 'lobby', 'oa_sit_point', 0x1005000002a1066d020000000000000000000000400000e42c000000ffffffff29000000010000002b000000010000003200000001000000340000000100000009000000000000000000000000000000000000007a0100000000000006000000, 0, 0.707031, 0, 0.707031, 44.3438, 7, -169.25),
|
||||
(380, 'lobby', 'ob_0102_0006', 0x10050000000e0400020000000000000000000000400100392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.707031, 0, 0.707031, 44.3438, 7, -167.75),
|
||||
(381, 'lobby', 'oa_sit_point', 0x1005000002a1066d020000000000000000000000400000e42c000000ffffffff29000000010000002b000000010000003200000001000000340000000100000009000000000000000000000000000000000000007c0100000000000006000000, 0, 0.707031, 0, 0.707031, 44.3438, 7, -167.75),
|
||||
(382, 'lobby', 'ob_0102_0005', 0x10050000000e0400020000000000000000000000400100392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, -0.707031, 0, 0.707031, -44.3438, 0, -165.25),
|
||||
(383, 'lobby', 'oa_sit_point', 0x1005000002a1066d020000000000000000000000400000e42c000000ffffffff29000000010000002b000000010000003200000001000000340000000100000009000000000000000000000000000000000000007e0100000000000006000000, 0, -0.707031, 0, 0.707031, -44.3438, 0, -165.25),
|
||||
(384, 'lobby', 'ob_0102_0004', 0x10050000000e0400020000000000000000000000400100392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, -0.707031, 0, 0.707031, -44.3438, 0, -166.75),
|
||||
(385, 'lobby', 'oa_sit_point', 0x1005000002a1066d020000000000000000000000400000e42c000000ffffffff29000000010000002b00000001000000320000000100000034000000010000000900000000000000000000000000000000000000800100000000000006000000, 0, -0.707031, 0, 0.707031, -44.3438, 0, -166.75),
|
||||
(386, 'lobby', 'ob_0102_0006', 0x10050000000e0400020000000000000000000000400100392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, -0.707031, 0, 0.707031, -44.3438, 0, -168.25),
|
||||
(387, 'lobby', 'oa_sit_point', 0x1005000002a1066d020000000000000000000000400000e42c000000ffffffff29000000010000002b00000001000000320000000100000034000000010000000900000000000000000000000000000000000000820100000000000006000000, 0, -0.707031, 0, 0.707031, -44.3438, 0, -168.25),
|
||||
(388, 'lobby', 'ob_0102_0005', 0x10050000000e0400020000000000000000000000400100392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, -0.707031, 0, 0.707031, -44.3438, 7, -165.25),
|
||||
(389, 'lobby', 'oa_sit_point', 0x1005000002a1066d020000000000000000000000400000e42c000000ffffffff29000000010000002b00000001000000320000000100000034000000010000000900000000000000000000000000000000000000840100000000000006000000, 0, -0.707031, 0, 0.707031, -44.3438, 7, -165.25),
|
||||
(390, 'lobby', 'ob_0102_0004', 0x10050000000e0400020000000000000000000000400100392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, -0.707031, 0, 0.707031, -44.3438, 7, -166.75),
|
||||
(391, 'lobby', 'oa_sit_point', 0x1005000002a1066d020000000000000000000000400000e42c000000ffffffff29000000010000002b00000001000000320000000100000034000000010000000900000000000000000000000000000000000000860100000000000006000000, 0, -0.707031, 0, 0.707031, -44.3438, 7, -166.75),
|
||||
(392, 'lobby', 'ob_0102_0006', 0x10050000000e0400020000000000000000000000400100392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, -0.707031, 0, 0.707031, -44.3438, 7, -168.25),
|
||||
(393, 'lobby', 'oa_sit_point', 0x1005000002a1066d020000000000000000000000400000e42c000000ffffffff29000000010000002b00000001000000320000000100000034000000010000000900000000000000000000000000000000000000880100000000000006000000, 0, -0.707031, 0, 0.707031, -44.3438, 7, -168.25),
|
||||
(394, 'lobby', 'ob_0102_0042', 0x10050000000e0400020000000000000000000000400100392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, -0.0435791, 0, 0.999023, 15, 0, 113),
|
||||
(395, 'lobby', 'oa_sit_point', 0x1005000002a1066d020000000000000000000000400000e42c000000ffffffff29000000010000002b000000010000003200000001000000340000000100000009000000000000000000000000000000000000008a0100000000000006000000, 0, -0.0435791, 0, 0.999023, 15, 0, 113),
|
||||
(396, 'lobby', 'oa_sit_point', 0x1005000002a1066d020000000000000000000000400000e42c000000ffffffff29000000010000002b000000010000003200000001000000340000000200000009000000000000000000000000000000000000008a0100000000000006000000, 0, -0.0435791, 0, 0.999023, 15, 0, 113),
|
||||
(397, 'lobby', 'oa_sit_point', 0x1005000002a1066d020000000000000000000000400000e42c000000ffffffff29000000010000002b000000010000003200000001000000340000000300000009000000000000000000000000000000000000008a0100000000000006000000, 0, -0.0435791, 0, 0.999023, 15, 0, 113),
|
||||
(398, 'lobby', 'oa_sit_point', 0x1005000002a1066d020000000000000000000000400000e42c000000ffffffff29000000010000002b000000010000003200000001000000340000000400000009000000000000000000000000000000000000008a0100000000000006000000, 0, -0.0435791, 0, 0.999023, 15, 0, 113),
|
||||
(399, 'lobby', 'oa_sit_point', 0x1005000002a1066d020000000000000000000000400000e42c000000ffffffff29000000010000002b000000010000003200000001000000340000000500000009000000000000000000000000000000000000008a0100000000000006000000, 0, -0.0435791, 0, 0.999023, 15, 0, 113),
|
||||
(400, 'lobby', 'ob_0102_0043', 0x10050000000e0400020000000000000000000000400100392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, -0.0435791, 0, 0.999023, 15, 0, 113),
|
||||
(401, 'lobby', 'oa_sit_point', 0x1005000002a1066d020000000000000000000000400000e42c000000ffffffff29000000010000002b00000001000000320000000100000034000000010000000900000000000000000000000000000000000000900100000000000006000000, 0, -0.0435791, 0, 0.999023, 15, 0, 113),
|
||||
(402, 'lobby', 'oa_sit_point', 0x1005000002a1066d020000000000000000000000400000e42c000000ffffffff29000000010000002b00000001000000320000000100000034000000020000000900000000000000000000000000000000000000900100000000000006000000, 0, -0.0435791, 0, 0.999023, 15, 0, 113),
|
||||
(403, 'lobby', 'oa_sit_point', 0x1005000002a1066d020000000000000000000000400000e42c000000ffffffff29000000010000002b00000001000000320000000100000034000000030000000900000000000000000000000000000000000000900100000000000006000000, 0, -0.0435791, 0, 0.999023, 15, 0, 113),
|
||||
(404, 'lobby', 'oa_sit_point', 0x1005000002a1066d020000000000000000000000400000e42c000000ffffffff29000000010000002b00000001000000320000000100000034000000040000000900000000000000000000000000000000000000900100000000000006000000, 0, -0.0435791, 0, 0.999023, 15, 0, 113),
|
||||
(405, 'lobby', 'oa_sit_point', 0x1005000002a1066d020000000000000000000000400000e42c000000ffffffff29000000010000002b00000001000000320000000100000034000000050000000900000000000000000000000000000000000000900100000000000006000000, 0, -0.0435791, 0, 0.999023, 15, 0, 113),
|
||||
(406, 'lobby', 'ob_0102_0044', 0x10050000000e0400020000000000000000000000400100392c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.0435791, 0, 0.999023, -15, 0, 113),
|
||||
(407, 'lobby', 'oa_sit_point', 0x1005000002a1066d020000000000000000000000400000e42c000000ffffffff29000000010000002b00000001000000320000000100000034000000010000000900000000000000000000000000000000000000960100000000000006000000, 0, 0.0435791, 0, 0.999023, -15, 0, 113),
|
||||
(408, 'lobby', 'oa_sit_point', 0x1005000002a1066d020000000000000000000000400000e42c000000ffffffff29000000010000002b00000001000000320000000100000034000000020000000900000000000000000000000000000000000000960100000000000006000000, 0, 0.0435791, 0, 0.999023, -15, 0, 113),
|
||||
(409, 'lobby', 'oa_sit_point', 0x1005000002a1066d020000000000000000000000400000e42c000000ffffffff29000000010000002b00000001000000320000000100000034000000030000000900000000000000000000000000000000000000960100000000000006000000, 0, 0.0435791, 0, 0.999023, -15, 0, 113),
|
||||
(410, 'lobby', 'oa_sit_point', 0x1005000002a1066d020000000000000000000000400000e42c000000ffffffff29000000010000002b00000001000000320000000100000034000000040000000900000000000000000000000000000000000000960100000000000006000000, 0, 0.0435791, 0, 0.999023, -15, 0, 113),
|
||||
(411, 'lobby', 'oa_sit_point', 0x1005000002a1066d020000000000000000000000400000e42c000000ffffffff29000000010000002b00000001000000320000000100000034000000050000000900000000000000000000000000000000000000960100000000000006000000, 0, 0.0435791, 0, 0.999023, -15, 0, 113),
|
||||
(412, 'lobby', 'ob_0102_0045', 0x10050000000e0400020000000000000000000000400100b62c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.0435791, 0, 0.999023, -15, 0, 113),
|
||||
(413, 'lobby', 'oa_sit_point', 0x1005000002a1066d020000000000000000000000400000e42c000000ffffffff29000000010000002b000000010000003200000001000000340000000100000009000000000000000000000000000000000000009c0100000000000006000000, 0, 0.0435791, 0, 0.999023, -15, 0, 113),
|
||||
(414, 'lobby', 'oa_sit_point', 0x1005000002a1066d020000000000000000000000400000e42c000000ffffffff29000000010000002b000000010000003200000001000000340000000200000009000000000000000000000000000000000000009c0100000000000006000000, 0, 0.0435791, 0, 0.999023, -15, 0, 113),
|
||||
(415, 'lobby', 'oa_sit_point', 0x1005000002a1066d020000000000000000000000400000e42c000000ffffffff29000000010000002b000000010000003200000001000000340000000300000009000000000000000000000000000000000000009c0100000000000006000000, 0, 0.0435791, 0, 0.999023, -15, 0, 113),
|
||||
(416, 'lobby', 'oa_sit_point', 0x1005000002a1066d020000000000000000000000400000e42c000000ffffffff29000000010000002b000000010000003200000001000000340000000400000009000000000000000000000000000000000000009c0100000000000006000000, 0, 0.0435791, 0, 0.999023, -15, 0, 113),
|
||||
(417, 'lobby', 'oa_sit_point', 0x1005000002a1066d020000000000000000000000400000e42c000000ffffffff29000000010000002b000000010000003200000001000000340000000500000009000000000000000000000000000000000000009c0100000000000006000000, 0, 0.0435791, 0, 0.999023, -15, 0, 113),
|
||||
(418, 'lobby', 'ob_0102_0101', 0x10050000000e0400020000000000000000000000400100b62c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, -0.587402, 0, 0.808594, 0, 2.39844, 180),
|
||||
(419, 'lobby', 'oa_sit_point', 0x1005000002a1066d020000000000000000000000400000e42c000000ffffffff29000000010000002b00000001000000320000000100000034000000010000000900000000000000000000000000000000000000a20100000000000006000000, 0, -0.587402, 0, 0.808594, 0, 2.39844, 180),
|
||||
(420, 'lobby', 'oa_sit_point', 0x1005000002a1066d020000000000000000000000400000e42c000000ffffffff29000000010000002b00000001000000320000000100000034000000020000000900000000000000000000000000000000000000a20100000000000006000000, 0, -0.587402, 0, 0.808594, 0, 2.39844, 180),
|
||||
(421, 'lobby', 'ob_0102_0101', 0x10050000000e0400020000000000000000000000400100b62c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, 0, 2.39844, 180),
|
||||
(422, 'lobby', 'oa_sit_point', 0x1005000002a1066d020000000000000000000000400000e42c000000ffffffff29000000010000002b00000001000000320000000100000034000000010000000900000000000000000000000000000000000000a50100000000000006000000, 0, 0, 0, 1, 0, 2.39844, 180),
|
||||
(423, 'lobby', 'oa_sit_point', 0x1005000002a1066d020000000000000000000000400000e42c000000ffffffff29000000010000002b00000001000000320000000100000034000000020000000900000000000000000000000000000000000000a50100000000000006000000, 0, 0, 0, 1, 0, 2.39844, 180),
|
||||
(424, 'lobby', 'ob_0102_0101', 0x10050000000e0400020000000000000000000000400100b62c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.587402, 0, 0.808594, 0, 2.39844, 180),
|
||||
(425, 'lobby', 'oa_sit_point', 0x1005000002a1066d020000000000000000000000400000e42c000000ffffffff29000000010000002b00000001000000320000000100000034000000010000000900000000000000000000000000000000000000a80100000000000006000000, 0, 0.587402, 0, 0.808594, 0, 2.39844, 180),
|
||||
(426, 'lobby', 'oa_sit_point', 0x1005000002a1066d020000000000000000000000400000e42c000000ffffffff29000000010000002b00000001000000320000000100000034000000020000000900000000000000000000000000000000000000a80100000000000006000000, 0, 0.587402, 0, 0.808594, 0, 2.39844, 180),
|
||||
(427, 'lobby', 'ob_0102_0101', 0x10050000000e0400020000000000000000000000400100b62c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.950684, 0, 0.308838, 0, 2.39844, 180),
|
||||
(428, 'lobby', 'oa_sit_point', 0x1005000002a1066d020000000000000000000000400000e42c000000ffffffff29000000010000002b00000001000000320000000100000034000000010000000900000000000000000000000000000000000000ab0100000000000006000000, 0, 0.950684, 0, 0.308838, 0, 2.39844, 180),
|
||||
(429, 'lobby', 'oa_sit_point', 0x1005000002a1066d020000000000000000000000400000e42c000000ffffffff29000000010000002b00000001000000320000000100000034000000020000000900000000000000000000000000000000000000ab0100000000000006000000, 0, 0.950684, 0, 0.308838, 0, 2.39844, 180),
|
||||
(430, 'lobby', 'ob_0102_0101', 0x10050000000e0400020000000000000000000000400100b62c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, -0.950684, 0, 0.308838, 0, 2.39844, 180),
|
||||
(431, 'lobby', 'oa_sit_point', 0x1005000002a1066d020000000000000000000000400000e42c000000ffffffff29000000010000002b00000001000000320000000100000034000000010000000900000000000000000000000000000000000000ae0100000000000006000000, 0, -0.950684, 0, 0.308838, 0, 2.39844, 180),
|
||||
(432, 'lobby', 'oa_sit_point', 0x1005000002a1066d020000000000000000000000400000e42c000000ffffffff29000000010000002b00000001000000320000000100000034000000020000000900000000000000000000000000000000000000ae0100000000000006000000, 0, -0.950684, 0, 0.308838, 0, 2.39844, 180),
|
||||
(433, 'lobby', 'oa_transfer_machine', 0x100a010000000000020000000000000000000000000000072c0000000000000029000000010000002b000000010000002e0000000000000033000000010000003b0000000000000034000000ffffffff320000000000000037000000000000003a000000010000003800000000008040, 0, 0, 0, 1, 18, 1, -153),
|
||||
(434, 'lobby', 'oa_transfer_machine', 0x100a010000000000020000000000000000000000000000072c0000000000000029000000010000002b000000010000002e0000000000000033000000010000003b0000000100000034000000ffffffff320000000000000037000000000000003a000000010000003800000000000040, 0, -0.923828, 0, 0.382568, 9.5, 0, -144.5),
|
||||
(435, 'lobby', 'oa_transfer_machine', 0x100a010000000000020000000000000000000000000000072c0000000000000029000000010000002b000000010000002e0000000000000033000000010000003b0000000000000034000000ffffffff320000000000000037000000000000003a000000010000003800000000008040, 0, 0, 0, 1, -18, 1, -153),
|
||||
(436, 'lobby', 'oa_transfer_machine', 0x100a010000000000020000000000000000000000000000072c0000000000000029000000010000002b000000010000002e0000000000000033000000010000003b0000000100000034000000ffffffff320000000000000037000000000000003a000000010000003800000000000040, 0, -0.382568, 0, 0.923828, -9.5, 0, -144.5),
|
||||
(437, 'lobby', 'oa_transfer_machine', 0x100a010000000000020000000000000000000000000000072c0000000000000029000000010000002b000000010000002e0000000000000033000000010000003b0000000000000034000000ffffffff320000000000000037000000000000003a000000010000003800000000008040, 0, 0, 0, 1, 0, 15, -180.5),
|
||||
(438, 'lobby', 'oa_transfer_machine', 0x100a010000000000020000000000000000000000000000072c0000000000000029000000010000002b000000010000002e0000000000000033000000010000003b0000000100000034000000ffffffff320000000000000037000000000000003a000000010000003800000000000040, 0, -0.707031, 0, 0.707031, 0, 14.1953, -169),
|
||||
(439, 'lobby', 'oa_transfer_machine', 0x100a010000000000020000000000000000000000000000072c0000000000000029000000010000002b000000010000002e0000000000000033000000010000003b00000000000000340000000c000000320000000200000037000000000000003a000000010000003800000000000040, 0, -0.707031, 0, 0.707031, 57.75, 0, -100.812),
|
||||
(440, 'lobby', 'oa_transfer_machine', 0x100a010000000000020000000000000000000000000000072c0000000000000029000000010000002b000000010000002e0000000000000033000000010000003b00000000000000340000000e000000320000000200000037000000000000003a000000010000003800000000000040, 0, -0.707031, 0, 0.707031, -57.75, 0, -100.812),
|
||||
(441, 'lobby', 'oa_transfer_machine', 0x100a010000000000020000000000000000000000000000072c0000000100000029000000010000002b000000010000002e0000000000000033000000010000003b0000000000000034000000ffffffff320000000000000037000000000000003a000000010000003800000000008040, 0, 0, 0, 1, 0, 2.59961, 156.375),
|
||||
(442, 'lobby', 'oa_transfer_machine', 0x100a010000000000020000000000000000000000000000072c0000000100000029000000010000002b000000010000002e0000000000000033000000010000003b0000000100000034000000ffffffff320000000000000037000000000000003a000000010000003800000000000040, 0, 0.707031, 0, 0.707031, 0, 0, 140),
|
||||
(443, 'lobby', 'oa_transfer_machine', 0x100a010000000000020000000000000000000000000000072c0000000100000029000000010000002b000000010000002e0000000000000033000000010000003b0000000000000034000000ffffffff320000000000000037000000000000003a000000010000003800000000008040, 0, 0, 0, 1, 34, 0.399902, 163.125),
|
||||
(444, 'lobby', 'oa_transfer_machine', 0x100a010000000000020000000000000000000000000000072c0000000100000029000000010000002b000000010000002e0000000000000033000000010000003b0000000100000034000000ffffffff320000000000000037000000000000003a000000010000003800000000000040, 0, 0.865723, 0, 0.5, 29.5, 0, 150.5),
|
||||
(445, 'lobby', 'oa_transfer_machine', 0x100a010000000000020000000000000000000000000000072c0000000100000029000000010000002b000000010000002e0000000000000033000000010000003b0000000100000034000000ffffffff320000000000000037000000000000003a000000010000003800000000000040, 0, 0.499756, 0, 0.865723, -29.5, 0, 150.5),
|
||||
(446, 'lobby', 'oa_transfer_machine', 0x100a010000000000020000000000000000000000000000072c0000000100000029000000010000002b000000010000002e0000000000000033000000010000003b0000000000000034000000ffffffff320000000000000037000000000000003a000000010000003800000000008040, 0, 0, 0, 1, -34, 0.399902, 163.125),
|
||||
(447, 'lobby', 'oa_transfer_machine', 0x100a010000000000020000000000000000000000000000072c0000000100000029000000010000002b000000010000002e0000000000000033000000010000003b0000000000000034000000ffffffff320000000100000037000000000000003a000000010000003800000000008040, 0, 0, 0, 1, 0, 0, 100),
|
||||
(448, 'lobby', 'oa_transfer_machine', 0x100a010000000000020000000000000000000000000000072c0000000100000029000000010000002b000000010000002e0000000000000033000000010000003b00000000000000340000000b000000320000000200000037000000000000003a000000010000003800000000000040, 0, 0, 0, 1, 50.5312, 0.299805, 120),
|
||||
(449, 'lobby', 'oa_transfer_machine', 0x100a010000000000020000000000000000000000000000072c0000000100000029000000010000002b000000010000002e0000000000000033000000010000003b00000000000000340000000d000000320000000200000037000000000000003a000000010000003800000000000040, 0, 0, 0, 1, -50.5312, 0.299805, 120),
|
||||
(545, 'lobby', 'oa_jump_stand', 0x10030000009fbba6000000000000000000000000400000472c000000ffffffff29000000010000002b00000000000000, 0, -0.0435791, 0, 0.999023, -5.69922, -2.39844, -73.5),
|
||||
(546, 'lobby', 'ob_9900_0399', 0x1003010002a1066d000000000000000000000000400000e42c000000ffffffff29000000010000002b000000000000003a0000000000b8410200000023020000000000000600000001000000210200000000000006000000, 0, -0.0435791, 0, 0.999023, -5.69922, -2.39844, -73.5),
|
||||
(547, 'lobby', 'ob_9900_0399', 0x1003010002a1066d000000000000000000000000400000e42c000000ffffffff29000000020000002b000000000000003a0000000000b8410200000022020000000000000600000001000000210200000000000006000000, 0, -0.0435791, 0, 0.999023, -23.5156, 10.2969, -108.5),
|
||||
(548, 'lobby', 'oa_jump_stand', 0x10030000009fbba6000000000000000000000000400000472c000000ffffffff29000000010000002b00000000000000, 0, 0.0435791, 0, 0.999023, 5.69922, -2.39844, -73.5),
|
||||
(549, 'lobby', 'ob_9900_0399', 0x1003010002a1066d000000000000000000000000400000e42c000000ffffffff29000000010000002b000000000000003a0000000000b8410200000026020000000000000600000001000000240200000000000006000000, 0, 0.0435791, 0, 0.999023, 5.69922, -2.39844, -73.5),
|
||||
(550, 'lobby', 'ob_9900_0399', 0x1003010002a1066d000000000000000000000000400000e42c000000ffffffff29000000020000002b000000000000003a0000000000b8410200000025020000000000000600000001000000240200000000000006000000, 0, 0.0435791, 0, 0.999023, 23.7344, 10.2969, -108.312),
|
||||
(551, 'lobby', 'oa_jump_stand', 0x10030000009fbba6000000000000000000000000400000472c000000ffffffff29000000010000002b00000000000000, 0, 0.0435791, 0, 0.999023, 5.69922, -2.39844, -73.5),
|
||||
(552, 'lobby', 'ob_0100_0118', 0x1003010002a1066d000000000000000000000000400000e42c000000ffffffff29000000010000002b000000000000003a0000000000b8410200000029020000000000000600000001000000270200000000000006000000, 0, 0.0435791, 0, 0.999023, 5.69922, -2.39844, -73.5),
|
||||
(553, 'lobby', 'ob_0100_0118', 0x1003010002a1066d000000000000000000000000400000e42c000000ffffffff29000000020000002b000000000000003a0000000000b8410200000028020000000000000600000001000000270200000000000006000000, 0, 0.0435791, 0, 0.999023, 23.7344, 10.2969, -108.312),
|
||||
(554, 'lobby', 'oa_jump_stand', 0x10030000009fbba6000000000000000000000000400000472c000000ffffffff29000000010000002b00000000000000, 0, -0.0435791, 0, 0.999023, -5.69922, -2.39844, -73.5),
|
||||
(555, 'lobby', 'ob_0100_0118', 0x1003010002a1066d000000000000000000000000400000e42c000000ffffffff29000000010000002b000000000000003a0000000000b841020000002c0200000000000006000000010000002a0200000000000006000000, 0, -0.0435791, 0, 0.999023, -5.69922, -2.39844, -73.5),
|
||||
(556, 'lobby', 'ob_0100_0118', 0x1003010002a1066d000000000000000000000000400000e42c000000ffffffff29000000020000002b000000000000003a0000000000b841020000002b0200000000000006000000010000002a0200000000000006000000, 0, -0.0435791, 0, 0.999023, -23.5156, 10.2969, -108.5),
|
||||
(557, 'lobby', 'oa_jump_stand', 0x10030000009fbba6000000000000000000000000400000472c000000ffffffff29000000010000002b00000000000000, 0, -0.0435791, 0, 0.999023, -5.69922, -2.39844, -73.5),
|
||||
(558, 'lobby', 'ob_9900_0399', 0x1003010002a1066d000000000000000000000000400000e42c000000ffffffff29000000010000002b000000000000003a0000000000b841020000002f0200000000000006000000010000002d0200000000000006000000, 0, -0.0435791, 0, 0.999023, -5.69922, -2.39844, -73.5),
|
||||
(559, 'lobby', 'ob_9900_0399', 0x1003010002a1066d000000000000000000000000400000e42c000000ffffffff29000000020000002b000000000000003a0000000000b841020000002e0200000000000006000000010000002d0200000000000006000000, 0, -0.0435791, 0, 0.999023, -23.5156, 10.2969, -108.5),
|
||||
(560, 'lobby', 'oa_jump_stand', 0x10030000009fbba6000000000000000000000000400000472c000000ffffffff29000000010000002b00000000000000, 0, 0.0435791, 0, 0.999023, 5.69922, -2.39844, -73.5),
|
||||
(561, 'lobby', 'ob_9900_0399', 0x1003010002a1066d000000000000000000000000400000e42c000000ffffffff29000000010000002b000000000000003a0000000000b8410200000032020000000000000600000001000000300200000000000006000000, 0, 0.0435791, 0, 0.999023, 5.69922, -2.39844, -73.5),
|
||||
(562, 'lobby', 'ob_9900_0399', 0x1003010002a1066d000000000000000000000000400000e42c000000ffffffff29000000020000002b000000000000003a0000000000b8410200000031020000000000000600000001000000300200000000000006000000, 0, 0.0435791, 0, 0.999023, 23.7344, 10.2969, -108.312),
|
||||
(563, 'lobby', 'oa_jump_stand', 0x10030000009fbba6000000000000000000000000400000472c000000ffffffff29000000010000002b00000000000000, 0, -0.0435791, 0, 0.999023, -5.69922, -2.39844, -73.5),
|
||||
(564, 'lobby', 'ob_9900_0399', 0x1003010002a1066d000000000000000000000000400000e42c000000ffffffff29000000010000002b000000000000003a0000000000b8410200000035020000000000000600000001000000330200000000000006000000, 0, -0.0435791, 0, 0.999023, -5.69922, -2.39844, -73.5),
|
||||
(565, 'lobby', 'ob_9900_0399', 0x1003010002a1066d000000000000000000000000400000e42c000000ffffffff29000000020000002b000000000000003a0000000000b8410200000034020000000000000600000001000000330200000000000006000000, 0, -0.0435791, 0, 0.999023, -23.5156, 10.2969, -108.5),
|
||||
(566, 'lobby', 'oa_jump_stand', 0x10030000009fbba6000000000000000000000000400000472c000000ffffffff29000000010000002b00000000000000, 0, 0.0435791, 0, 0.999023, 5.69922, -2.39844, -73.5),
|
||||
(567, 'lobby', 'ob_9900_0399', 0x1003010002a1066d000000000000000000000000400000e42c000000ffffffff29000000010000002b000000000000003a0000000000b8410200000038020000000000000600000001000000360200000000000006000000, 0, 0.0435791, 0, 0.999023, 5.69922, -2.39844, -73.5),
|
||||
(568, 'lobby', 'ob_9900_0399', 0x1003010002a1066d000000000000000000000000400000e42c000000ffffffff29000000020000002b000000000000003a0000000000b8410200000037020000000000000600000001000000360200000000000006000000, 0, 0.0435791, 0, 0.999023, 23.7344, 10.2969, -108.312),
|
||||
(569, 'lobby', 'oa_jump_stand', 0x10030000000e0400000000000000000000000000400000352c000000ffffffff29000000010000002b00000000000000, 0, -0.0435791, 0, 0.999023, -5.69922, -2.39844, -73.5),
|
||||
(570, 'lobby', 'ob_9900_0399', 0x1003010002a1066d000000000000000000000000400000e42c000000ffffffff29000000010000002b000000000000003a0000000000b841020000003b020000000000000600000001000000390200000000000006000000, 0, -0.0435791, 0, 0.999023, -5.69922, -2.39844, -73.5),
|
||||
(571, 'lobby', 'ob_9900_0399', 0x1003010002a1066d000000000000000000000000400000e42c000000ffffffff29000000020000002b000000000000003a0000000000b841020000003a020000000000000600000001000000390200000000000006000000, 0, -0.0435791, 0, 0.999023, -23.5156, 10.2969, -108.5),
|
||||
(572, 'lobby', 'oa_jump_stand', 0x10030000000e0400000000000000000000000000400000352c000000ffffffff29000000010000002b00000000000000, 0, 0.0435791, 0, 0.999023, 5.69922, -2.39844, -73.5),
|
||||
(573, 'lobby', 'ob_9900_0399', 0x1003010002a1066d000000000000000000000000400000e42c000000ffffffff29000000010000002b000000000000003a0000000000b841020000003e0200000000000006000000010000003c0200000000000006000000, 0, 0.0435791, 0, 0.999023, 5.69922, -2.39844, -73.5),
|
||||
(574, 'lobby', 'ob_9900_0399', 0x1003010002a1066d000000000000000000000000400000e42c000000ffffffff29000000020000002b000000000000003a0000000000b841020000003d0200000000000006000000010000003c0200000000000006000000, 0, 0.0435791, 0, 0.999023, 23.7344, 10.2969, -108.312),
|
||||
(575, 'lobby', 'oa_jump_stand', 0x10030000000e0400000000000000000000000000400000352c000000ffffffff29000000010000002b00000000000000, 0, -0.0435791, 0, 0.999023, -5.69922, -2.39844, -73.5),
|
||||
(576, 'lobby', 'ob_9900_0399', 0x1003010002a1066d000000000000000000000000400000e42c000000ffffffff29000000010000002b000000000000003a0000000000b84102000000410200000000000006000000010000003f0200000000000006000000, 0, -0.0435791, 0, 0.999023, -5.69922, -2.39844, -73.5),
|
||||
(577, 'lobby', 'ob_9900_0399', 0x1003010002a1066d000000000000000000000000400000e42c000000ffffffff29000000020000002b000000000000003a0000000000b84102000000400200000000000006000000010000003f0200000000000006000000, 0, -0.0435791, 0, 0.999023, -23.5156, 10.2969, -108.5),
|
||||
(578, 'lobby', 'oa_jump_stand', 0x10030000000e0400000000000000000000000000400000352c000000ffffffff29000000010000002b00000000000000, 0, 0.0435791, 0, 0.999023, 5.69922, -2.39844, -73.5),
|
||||
(579, 'lobby', 'ob_9900_0399', 0x1003010002a1066d000000000000000000000000400000e42c000000ffffffff29000000010000002b000000000000003a0000000000b8410200000044020000000000000600000001000000420200000000000006000000, 0, 0.0435791, 0, 0.999023, 5.69922, -2.39844, -73.5),
|
||||
(580, 'lobby', 'ob_9900_0399', 0x1003010002a1066d000000000000000000000000400000e42c000000ffffffff29000000020000002b000000000000003a0000000000b8410200000043020000000000000600000001000000420200000000000006000000, 0, 0.0435791, 0, 0.999023, 23.7344, 10.2969, -108.312),
|
||||
(581, 'lobby', 'oa_jump_stand', 0x10030000000e0400000000000000000000000000400000352c000000ffffffff29000000010000002b00000000000000, 0, -0.0435791, 0, 0.999023, -5.69922, -2.39844, -73.5),
|
||||
(582, 'lobby', 'ob_9900_0399', 0x1003010002a1066d000000000000000000000000400000e42c000000ffffffff29000000010000002b000000000000003a0000000000b8410200000047020000000000000600000001000000450200000000000006000000, 0, -0.0435791, 0, 0.999023, -5.69922, -2.39844, -73.5),
|
||||
(583, 'lobby', 'ob_9900_0399', 0x1003010002a1066d000000000000000000000000400000e42c000000ffffffff29000000020000002b000000000000003a0000000000b8410200000046020000000000000600000001000000450200000000000006000000, 0, -0.0435791, 0, 0.999023, -23.5156, 10.2969, -108.5),
|
||||
(584, 'lobby', 'oa_jump_stand', 0x10030000000e0400000000000000000000000000400000352c000000ffffffff29000000010000002b00000000000000, 0, 0.0435791, 0, 0.999023, 5.69922, -2.39844, -73.5),
|
||||
(585, 'lobby', 'ob_9900_0399', 0x1003010002a1066d000000000000000000000000400000e42c000000ffffffff29000000010000002b000000000000003a0000000000b841020000004a020000000000000600000001000000480200000000000006000000, 0, 0.0435791, 0, 0.999023, 5.69922, -2.39844, -73.5),
|
||||
(586, 'lobby', 'ob_9900_0399', 0x1003010002a1066d000000000000000000000000400000e42c000000ffffffff29000000020000002b000000000000003a0000000000b8410200000049020000000000000600000001000000480200000000000006000000, 0, 0.0435791, 0, 0.999023, 23.7344, 10.2969, -108.312),
|
||||
(587, 'lobby', 'oa_jump_stand', 0x10030000000e0400000000000000000000000000400000352c000000ffffffff29000000010000002b00000000000000, 0, -0.0435791, 0, 0.999023, -5.69922, -2.39844, -73.5),
|
||||
(588, 'lobby', 'ob_9900_0399', 0x1003010002a1066d000000000000000000000000400000e42c000000ffffffff29000000010000002b000000000000003a0000000000b841020000004d0200000000000006000000010000004b0200000000000006000000, 0, -0.0435791, 0, 0.999023, -5.69922, -2.39844, -73.5),
|
||||
(589, 'lobby', 'ob_9900_0399', 0x1003010002a1066d000000000000000000000000400000e42c000000ffffffff29000000020000002b000000000000003a0000000000b841020000004c0200000000000006000000010000004b0200000000000006000000, 0, -0.0435791, 0, 0.999023, -23.5156, 10.2969, -108.5),
|
||||
(590, 'lobby', 'oa_jump_stand', 0x10030000000e0400000000000000000000000000400000352c000000ffffffff29000000010000002b00000000000000, 0, 0.0435791, 0, 0.999023, 5.69922, -2.39844, -73.5),
|
||||
(591, 'lobby', 'ob_9900_0399', 0x1003010002a1066d000000000000000000000000400000e42c000000ffffffff29000000010000002b000000000000003a0000000000b84102000000500200000000000006000000010000004e0200000000000006000000, 0, 0.0435791, 0, 0.999023, 5.69922, -2.39844, -73.5),
|
||||
(592, 'lobby', 'ob_9900_0399', 0x1003010002a1066d000000000000000000000000400000e42c000000ffffffff29000000020000002b000000000000003a0000000000b841020000004f0200000000000006000000010000004e0200000000000006000000, 0, 0.0435791, 0, 0.999023, 23.7344, 10.2969, -108.312),
|
||||
(593, 'lobby', 'oa_jump_stand', 0x10030000000e0400000000000000000000000000400000352c000000ffffffff29000000010000002b00000000000000, 0, -0.0435791, 0, 0.999023, -5.69922, -2.39844, -73.5),
|
||||
(594, 'lobby', 'ob_9900_0399', 0x1003010002a1066d000000000000000000000000400000e42c000000ffffffff29000000010000002b000000000000003a0000000000b8410200000053020000000000000600000001000000510200000000000006000000, 0, -0.0435791, 0, 0.999023, -5.69922, -2.39844, -73.5),
|
||||
(595, 'lobby', 'ob_9900_0399', 0x1003010002a1066d000000000000000000000000400000e42c000000ffffffff29000000020000002b000000000000003a0000000000b8410200000052020000000000000600000001000000510200000000000006000000, 0, -0.0435791, 0, 0.999023, -23.5156, 10.2969, -108.5),
|
||||
(596, 'lobby', 'oa_jump_stand', 0x10030000000e0400000000000000000000000000400000352c000000ffffffff29000000010000002b00000000000000, 0, 0.0435791, 0, 0.999023, 5.69922, -2.39844, -73.5),
|
||||
(597, 'lobby', 'ob_9900_0399', 0x1003010002a1066d000000000000000000000000400000e42c000000ffffffff29000000010000002b000000000000003a0000000000b8410200000056020000000000000600000001000000540200000000000006000000, 0, 0.0435791, 0, 0.999023, 5.69922, -2.39844, -73.5),
|
||||
(598, 'lobby', 'ob_9900_0399', 0x1003010002a1066d000000000000000000000000400000e42c000000ffffffff29000000020000002b000000000000003a0000000000b8410200000055020000000000000600000001000000540200000000000006000000, 0, 0.0435791, 0, 0.999023, 23.7344, 10.2969, -108.312),
|
||||
(599, 'lobby', 'oa_jump_stand', 0x10030000000e0400000000000000000000000000400000352c000000ffffffff29000000010000002b00000000000000, 0, -0.0435791, 0, 0.999023, -5.69922, -2.39844, -73.5),
|
||||
(600, 'lobby', 'ob_9900_0399', 0x1003010002a1066d000000000000000000000000400000e42c000000ffffffff29000000010000002b000000000000003a0000000000b8410200000059020000000000000600000001000000570200000000000006000000, 0, -0.0435791, 0, 0.999023, -5.69922, -2.39844, -73.5),
|
||||
(601, 'lobby', 'ob_9900_0399', 0x1003010002a1066d000000000000000000000000400000e42c000000ffffffff29000000020000002b000000000000003a0000000000b8410200000058020000000000000600000001000000570200000000000006000000, 0, -0.0435791, 0, 0.999023, -23.5156, 10.2969, -108.5),
|
||||
(602, 'lobby', 'oa_jump_stand', 0x1003000000b1dbe50000000000000000000000004000000d2c000000ffffffff29000000010000002b00000000000000, 0, 0.0435791, 0, 0.999023, 5.69922, -2.39844, -73.5),
|
||||
(603, 'lobby', 'ob_9900_0399', 0x1003010002a1066d000000000000000000000000400000e42c000000ffffffff29000000010000002b000000000000003a0000000000b841020000005c0200000000000006000000010000005a0200000000000006000000, 0, 0.0435791, 0, 0.999023, 5.69922, -2.39844, -73.5),
|
||||
(604, 'lobby', 'ob_9900_0399', 0x1003010002a1066d000000000000000000000000400000e42c000000ffffffff29000000020000002b000000000000003a0000000000b841020000005b0200000000000006000000010000005a0200000000000006000000, 0, 0.0435791, 0, 0.999023, 23.7344, 10.2969, -108.312),
|
||||
(605, 'lobby', 'oa_jump_stand', 0x1003000000b1dbe50000000000000000000000004000000d2c000000ffffffff29000000010000002b00000000000000, 0, -0.0435791, 0, 0.999023, -5.69922, -2.39844, -73.5),
|
||||
(606, 'lobby', 'ob_9900_0399', 0x1003010002a1066d000000000000000000000000400000e42c000000ffffffff29000000010000002b000000000000003a0000000000b841020000005f0200000000000006000000010000005d0200000000000006000000, 0, -0.0435791, 0, 0.999023, -5.69922, -2.39844, -73.5),
|
||||
(607, 'lobby', 'ob_9900_0399', 0x1003010002a1066d000000000000000000000000400000e42c000000ffffffff29000000020000002b000000000000003a0000000000b841020000005e0200000000000006000000010000005d0200000000000006000000, 0, -0.0435791, 0, 0.999023, -23.5156, 10.2969, -108.5),
|
||||
(608, 'lobby', 'oa_jump_stand', 0x1003000000b1dbe50000000000000000000000004000000d2c000000ffffffff29000000010000002b00000000000000, 0, 0.0435791, 0, 0.999023, 5.69922, -2.39844, -73.5),
|
||||
(609, 'lobby', 'ob_9900_0399', 0x1003010002a1066d000000000000000000000000400000e42c000000ffffffff29000000010000002b000000000000003a0000000000b8410200000062020000000000000600000001000000600200000000000006000000, 0, 0.0435791, 0, 0.999023, 5.69922, -2.39844, -73.5),
|
||||
(610, 'lobby', 'ob_9900_0399', 0x1003010002a1066d000000000000000000000000400000e42c000000ffffffff29000000020000002b000000000000003a0000000000b8410200000061020000000000000600000001000000600200000000000006000000, 0, 0.0435791, 0, 0.999023, 23.7344, 10.2969, -108.312),
|
||||
(611, 'lobby', 'oa_jump_stand', 0x1003000000b1dbe50000000000000000000000004000000d2c000000ffffffff29000000010000002b00000000000000, 0, -0.0435791, 0, 0.999023, -5.69922, -2.39844, -73.5),
|
||||
(612, 'lobby', 'ob_9900_0399', 0x1003010002a1066d000000000000000000000000400000e42c000000ffffffff29000000010000002b000000000000003a0000000000b8410200000065020000000000000600000001000000630200000000000006000000, 0, -0.0435791, 0, 0.999023, -5.69922, -2.39844, -73.5),
|
||||
(613, 'lobby', 'ob_9900_0399', 0x1003010002a1066d000000000000000000000000400000e42c000000ffffffff29000000020000002b000000000000003a0000000000b8410200000064020000000000000600000001000000630200000000000006000000, 0, -0.0435791, 0, 0.999023, -23.5156, 10.2969, -108.5),
|
||||
(614, 'lobby', 'oa_jump_stand', 0x1003000000b1dbe50000000000000000000000004000000d2c000000ffffffff29000000010000002b00000000000000, 0, 0.0435791, 0, 0.999023, 5.69922, -2.39844, -73.5),
|
||||
(615, 'lobby', 'ob_9900_0399', 0x1003010002a1066d000000000000000000000000400000e42c000000ffffffff29000000010000002b000000000000003a0000000000b8410200000068020000000000000600000001000000660200000000000006000000, 0, 0.0435791, 0, 0.999023, 5.69922, -2.39844, -73.5),
|
||||
(616, 'lobby', 'ob_9900_0399', 0x1003010002a1066d000000000000000000000000400000e42c000000ffffffff29000000020000002b000000000000003a0000000000b8410200000067020000000000000600000001000000660200000000000006000000, 0, 0.0435791, 0, 0.999023, 23.7344, 10.2969, -108.312),
|
||||
(617, 'lobby', 'oa_jump_stand', 0x1003000000b1dbe50000000000000000000000004000000d2c000000ffffffff29000000010000002b00000000000000, 0, -0.0435791, 0, 0.999023, -5.69922, -2.39844, -73.5),
|
||||
(618, 'lobby', 'ob_9900_0399', 0x1003010002a1066d000000000000000000000000400000e42c000000ffffffff29000000010000002b000000000000003a0000000000b841020000006b020000000000000600000001000000690200000000000006000000, 0, -0.0435791, 0, 0.999023, -5.69922, -2.39844, -73.5),
|
||||
(619, 'lobby', 'ob_9900_0399', 0x1003010002a1066d000000000000000000000000400000e42c000000ffffffff29000000020000002b000000000000003a0000000000b841020000006a020000000000000600000001000000690200000000000006000000, 0, -0.0435791, 0, 0.999023, -23.5156, 10.2969, -108.5),
|
||||
(620, 'lobby', 'oa_jump_stand', 0x1003000000b1dbe50000000000000000000000004000000d2c000000ffffffff29000000010000002b00000000000000, 0, 0.0435791, 0, 0.999023, 5.69922, -2.39844, -73.5),
|
||||
(621, 'lobby', 'ob_9900_0399', 0x1003010002a1066d000000000000000000000000400000e42c000000ffffffff29000000010000002b000000000000003a0000000000b841020000006e0200000000000006000000010000006c0200000000000006000000, 0, 0.0435791, 0, 0.999023, 5.69922, -2.39844, -73.5),
|
||||
(622, 'lobby', 'ob_9900_0399', 0x1003010002a1066d000000000000000000000000400000e42c000000ffffffff29000000020000002b000000000000003a0000000000b841020000006d0200000000000006000000010000006c0200000000000006000000, 0, 0.0435791, 0, 0.999023, 23.7344, 10.2969, -108.312),
|
||||
(623, 'lobby', 'oa_jump_stand', 0x1003000000126dca000000000000000000000000400000aa2c000000ffffffff29000000010000002b00000000000000, 0, -0.0435791, 0, 0.999023, -5.69922, -2.39844, -73.5),
|
||||
(624, 'lobby', 'ob_9900_0399', 0x1003010002a1066d000000000000000000000000400000e42c000000ffffffff29000000010000002b000000000000003a0000000000b84102000000710200000000000006000000010000006f0200000000000006000000, 0, -0.0435791, 0, 0.999023, -5.69922, -2.39844, -73.5),
|
||||
(625, 'lobby', 'ob_9900_0399', 0x1003010002a1066d000000000000000000000000400000e42c000000ffffffff29000000020000002b000000000000003a0000000000b84102000000700200000000000006000000010000006f0200000000000006000000, 0, -0.0435791, 0, 0.999023, -23.5156, 10.2969, -108.5),
|
||||
(626, 'lobby', 'oa_jump_stand', 0x1003000000126dca000000000000000000000000400000aa2c000000ffffffff29000000010000002b00000000000000, 0, 0.0435791, 0, 0.999023, 5.69922, -2.39844, -73.5),
|
||||
(627, 'lobby', 'ob_9900_0399', 0x1003010002a1066d000000000000000000000000400000e42c000000ffffffff29000000010000002b000000000000003a0000000000b8410200000074020000000000000600000001000000720200000000000006000000, 0, 0.0435791, 0, 0.999023, 5.69922, -2.39844, -73.5),
|
||||
(628, 'lobby', 'ob_9900_0399', 0x1003010002a1066d000000000000000000000000400000e42c000000ffffffff29000000020000002b000000000000003a0000000000b8410200000073020000000000000600000001000000720200000000000006000000, 0, 0.0435791, 0, 0.999023, 23.7344, 10.2969, -108.312),
|
||||
(629, 'lobby', 'oa_jump_stand', 0x1003000000126dca000000000000000000000000400000aa2c000000ffffffff29000000010000002b00000000000000, 0, -0.0435791, 0, 0.999023, -5.69922, -2.39844, -73.5),
|
||||
(630, 'lobby', 'ob_9900_0399', 0x1003010002a1066d000000000000000000000000400000e42c000000ffffffff29000000010000002b000000000000003a0000000000b8410200000077020000000000000600000001000000750200000000000006000000, 0, -0.0435791, 0, 0.999023, -5.69922, -2.39844, -73.5),
|
||||
(631, 'lobby', 'ob_9900_0399', 0x1003010002a1066d000000000000000000000000400000e42c000000ffffffff29000000020000002b000000000000003a0000000000b8410200000076020000000000000600000001000000750200000000000006000000, 0, -0.0435791, 0, 0.999023, -23.5156, 10.2969, -108.5),
|
||||
(632, 'lobby', 'oa_jump_stand', 0x1003000000126dca000000000000000000000000400000aa2c000000ffffffff29000000010000002b00000000000000, 0, 0.0435791, 0, 0.999023, 5.69922, -2.39844, -73.5),
|
||||
(633, 'lobby', 'ob_9900_0399', 0x1003010002a1066d000000000000000000000000400000e42c000000ffffffff29000000010000002b000000000000003a0000000000b841020000007a020000000000000600000001000000780200000000000006000000, 0, 0.0435791, 0, 0.999023, 5.69922, -2.39844, -73.5),
|
||||
(634, 'lobby', 'ob_9900_0399', 0x1003010002a1066d000000000000000000000000400000e42c000000ffffffff29000000020000002b000000000000003a0000000000b8410200000079020000000000000600000001000000780200000000000006000000, 0, 0.0435791, 0, 0.999023, 23.7344, 10.2969, -108.312),
|
||||
(635, 'lobby', 'oa_jump_stand', 0x1003000000126dca020000000000000000000000400000aa2c000000ffffffff29000000010000002b00000000000000, 0, -0.0435791, 0, 0.999023, -5.69922, -2.39844, -73.5);
|
||||
INSERT IGNORE INTO `GameObjects` (`ObjectID`, `ZoneName`, `ObjectName`, `ObjectFlags`, `RotX`, `RotY`, `RotZ`, `RotW`, `PosX`, `PosY`, `PosZ`) VALUES
|
||||
(636, 'lobby', 'ob_9900_0399', 0x1003010002a1066d020000000000000000000000400000e42c000000ffffffff29000000010000002b000000000000003a0000000000b841020000007d0200000000000006000000010000007b0200000000000006000000, 0, -0.0435791, 0, 0.999023, -5.69922, -2.39844, -73.5),
|
||||
(637, 'lobby', 'ob_9900_0399', 0x1003010002a1066d020000000000000000000000400000e42c000000ffffffff29000000020000002b000000000000003a0000000000b841020000007c0200000000000006000000010000007b0200000000000006000000, 0, -0.0435791, 0, 0.999023, -23.5156, 10.2969, -108.5),
|
||||
(638, 'lobby', 'oa_jump_stand', 0x1003000000126dca020000000000000000000000400000aa2c000000ffffffff29000000010000002b00000000000000, 0, 0.0435791, 0, 0.999023, 5.69922, -2.39844, -73.5),
|
||||
(639, 'lobby', 'ob_9900_0399', 0x1003010002a1066d020000000000000000000000400000e42c000000ffffffff29000000010000002b000000000000003a0000000000b84102000000800200000000000006000000010000007e0200000000000006000000, 0, 0.0435791, 0, 0.999023, 5.69922, -2.39844, -73.5),
|
||||
(640, 'lobby', 'ob_9900_0399', 0x1003010002a1066d020000000000000000000000400000e42c000000ffffffff29000000020000002b000000000000003a0000000000b841020000007f0200000000000006000000010000007e0200000000000006000000, 0, 0.0435791, 0, 0.999023, 23.7344, 10.2969, -108.312),
|
||||
(641, 'lobby', 'oa_jump_stand', 0x1003000000126dca000000000000000000000000400000aa2c000000ffffffff29000000010000002b00000000000000, 0, -0.0435791, 0, 0.999023, -5.69922, -2.39844, -73.5),
|
||||
(642, 'lobby', 'ob_9900_0399', 0x1003010002a1066d000000000000000000000000400000e42c000000ffffffff29000000010000002b000000000000003a0000000000b8410200000083020000000000000600000001000000810200000000000006000000, 0, -0.0435791, 0, 0.999023, -5.69922, -2.39844, -73.5),
|
||||
(643, 'lobby', 'ob_9900_0399', 0x1003010002a1066d000000000000000000000000400000e42c000000ffffffff29000000020000002b000000000000003a0000000000b8410200000082020000000000000600000001000000810200000000000006000000, 0, -0.0435791, 0, 0.999023, -23.5156, 10.2969, -108.5),
|
||||
(644, 'lobby', 'oa_jump_stand', 0x1003000000126dca000000000000000000000000400000aa2c000000ffffffff29000000010000002b00000000000000, 0, 0.0435791, 0, 0.999023, 5.69922, -2.39844, -73.5),
|
||||
(645, 'lobby', 'ob_9900_0399', 0x1003010002a1066d000000000000000000000000400000e42c000000ffffffff29000000010000002b000000000000003a0000000000b8410200000086020000000000000600000001000000840200000000000006000000, 0, 0.0435791, 0, 0.999023, 5.69922, -2.39844, -73.5),
|
||||
(646, 'lobby', 'ob_9900_0399', 0x1003010002a1066d000000000000000000000000400000e42c000000ffffffff29000000020000002b000000000000003a0000000000b8410200000085020000000000000600000001000000840200000000000006000000, 0, 0.0435791, 0, 0.999023, 23.7344, 10.2969, -108.312),
|
||||
(647, 'lobby', 'oa_jump_stand', 0x1003000000126dca020000000000000000000000400000aa2c000000ffffffff29000000010000002b00000000000000, 0, 0, 0, 1, 0.039978, 2.5, 180),
|
||||
(648, 'lobby', 'ob_9900_0399', 0x1003010002a1066d020000000000000000000000400000e42c000000ffffffff29000000010000002b000000000000003a0000000000a0410200000089020000000000000600000001000000870200000000000006000000, 0, 0, 0, 1, 0.039978, 2.5, 180),
|
||||
(649, 'lobby', 'ob_9900_0399', 0x1003010002a1066d020000000000000000000000400000e42c000000ffffffff29000000020000002b000000000000003a0000000000a0410200000088020000000000000600000001000000870200000000000006000000, 0, 0, 0, 1, 0.0199738, 15, 210.375),
|
||||
(650, 'lobby', 'oa_body_collision', 0x1007000100a1066d020000000000000000000000400000e42c000000ffffffff29000000010000002b000000010000002a000000000000003c0000000000000032000000000000002d000000010000001200000000490051003c0000, 0, 0, 0, 1, -47, 0, -186.25),
|
||||
(651, 'lobby', 'oa_body_collision', 0x1007000100a1066d020000000000000000000000400000e42c000000ffffffff29000000010000002b000000010000002a000000000000003c0000000000000032000000000000002d000000010000001200000000490051003c0000, 0, 0, 0, 1, 47, 0, -186.25),
|
||||
(652, 'lobby', 'oa_body_collision', 0x1007000100a1066d020000000000000000000000400000e42c000000ffffffff29000000010000002b000000010000002a000000000000003c0000000000000032000000000000002d000000010000001200000000490051003c0000, 0, 0, 0, 1, 64, 0, -186.25),
|
||||
(653, 'lobby', 'oa_body_collision', 0x1007000100a1066d020000000000000000000000400000e42c000000ffffffff29000000010000002b000000010000002a000000000000003c0000000000000032000000000000002d000000010000001200000000490051003c0000, 0, 0, 0, 1, -64, 0, -186.25),
|
||||
(654, 'lobby', 'oa_body_collision', 0x1007000100a1066d020000000000000000000000400000e42c000000ffffffff29000000010000002b000000010000002a000000000000003c0000000000000032000000000000002d0000000100000012000000663c004c00490000, 0, 0.0784302, 0, 0.996582, -22.5, 0, 113.562),
|
||||
(655, 'lobby', 'oa_body_collision', 0x1007000100a1066d020000000000000000000000400000e42c000000ffffffff29000000010000002b000000010000002a000000000000003c0000000000000032000000000000002d0000000100000012000000333d004c00490000, 0, -0.0784302, 0, 0.996582, 22.5, 0, 113.562),
|
||||
(656, 'lobby', 'oa_bonus_collision', 0x1006000100a1066d020000000000000000000000400000e42c000000ffffffff29000000010000002b000000010000002a000000000000003c000000000000002d0000000100000012000000b058405600450000, 0, 0, 0, 1, -0.697754, -5.79688, 7.05078),
|
||||
(657, 'lobby', 'oa_bonus_collision', 0x1006000100a1066d020000000000000000000000400000e42c000000ffffffff29000000010000002b000000010000002a000000000000003c000000000000002d00000001000000120000004052405600450000, 0, 0, 0, 1, -0.697754, -5.79688, -192.875),
|
||||
(658, 'lobby', 'oa_bonus_collision', 0x1006000100a1066d020000000000000000000000400000e42c000000ffffffff29000000010000002b000000010000002a000000000000003c000000000000002d00000001000000120000004052405600450000, 0, 0.923828, 0, 0.382568, 88.875, -5.79688, -87.875),
|
||||
(659, 'lobby', 'oa_bonus_collision', 0x1006000100a1066d020000000000000000000000400000e42c000000ffffffff29000000010000002b000000010000002a000000000000003c000000000000002d00000001000000120000006054405600450000, 0, 0.707031, 0, 0.707031, 74.25, -5.79688, -137.875),
|
||||
(660, 'lobby', 'oa_bonus_collision', 0x1006000100a1066d020000000000000000000000400000e42c000000ffffffff29000000010000002b000000010000002a000000000000003c000000000000002d00000001000000120000004052405600450000, 0, 0.707031, 0, 0.707031, 74.25, -5.79688, -17.9375),
|
||||
(661, 'lobby', 'oa_bonus_collision', 0x1006000100a1066d020000000000000000000000400000e42c000000ffffffff29000000010000002b000000010000002a000000000000003c000000000000002d0000000100000012000000804b405600450000, 0, 0, 0, 1, 79.25, -5.79688, -172.875),
|
||||
(662, 'lobby', 'oa_bonus_collision', 0x1006000100a1066d020000000000000000000000400000e42c000000ffffffff29000000010000002b000000010000002a000000000000003c000000000000002d00000001000000120000008053405600450000, 0, 0, 0, 1, 54.2812, -5.79688, -242.875),
|
||||
(663, 'lobby', 'oa_bonus_collision', 0x1006000100a1066d020000000000000000000000400000e42c000000ffffffff29000000010000002b000000010000002a000000000000003c000000000000002d00000001000000120000004052405600450000, 0, 0.707031, 0, 0.707031, 24.2969, -5.79688, -217.875),
|
||||
(664, 'lobby', 'oa_bonus_collision', 0x1006000100a1066d020000000000000000000000400000e42c000000ffffffff29000000010000002b000000010000002a000000000000003c000000000000002d00000001000000120000006054405600450000, 0, 0.707031, 0, 0.707031, 84.25, -5.79688, -207.875),
|
||||
(665, 'lobby', 'oa_bonus_collision', 0x1006000100a1066d020000000000000000000000400000e42c000000ffffffff29000000010000002b000000010000002a000000000000003c000000000000002d0000000100000012000000a051405600450000, 0, 0.382568, 0, 0.923828, 89.4375, -5.79688, -57.0938),
|
||||
(666, 'lobby', 'oa_bonus_collision', 0x1006000100a1066d020000000000000000000000400000e42c000000ffffffff29000000010000002b000000010000002a000000000000003c000000000000002d0000000100000012000000804b405600450000, 0, 0, 0, 1, -80.6875, -5.79688, -172.875),
|
||||
(667, 'lobby', 'oa_bonus_collision', 0x1006000100a1066d020000000000000000000000400000e42c000000ffffffff29000000010000002b000000010000002a000000000000003c000000000000002d00000001000000120000006054405600450000, 0, 0.707031, 0, 0.707031, -85.6875, -5.79688, -207.875),
|
||||
(668, 'lobby', 'oa_bonus_collision', 0x1006000100a1066d020000000000000000000000400000e42c000000ffffffff29000000010000002b000000010000002a000000000000003c000000000000002d00000001000000120000006054405600450000, 0, 0.707031, 0, 0.707031, -75.6875, -5.79688, -137.875),
|
||||
(669, 'lobby', 'oa_bonus_collision', 0x1006000100a1066d020000000000000000000000400000e42c000000ffffffff29000000010000002b000000010000002a000000000000003c000000000000002d0000000100000012000000a051405600450000, 0, 0.923828, 0, 0.382568, -90.875, -5.79688, -57.0938),
|
||||
(670, 'lobby', 'oa_bonus_collision', 0x1006000100a1066d020000000000000000000000400000e42c000000ffffffff29000000010000002b000000010000002a000000000000003c000000000000002d00000001000000120000004052405600450000, 0, 0.382568, 0, 0.923828, -90.25, -5.79688, -87.875),
|
||||
(671, 'lobby', 'oa_bonus_collision', 0x1006000100a1066d020000000000000000000000400000e42c000000ffffffff29000000010000002b000000010000002a000000000000003c000000000000002d00000001000000120000008053405600450000, 0, 0, 0, 1, -55.6875, -5.79688, -242.875),
|
||||
(672, 'lobby', 'oa_bonus_collision', 0x1006000100a1066d020000000000000000000000400000e42c000000ffffffff29000000010000002b000000010000002a000000000000003c000000000000002d00000001000000120000004052405600450000, 0, 0.707031, 0, 0.707031, -75.6875, -5.79688, -17.9375),
|
||||
(673, 'lobby', 'oa_bonus_collision', 0x1006000100a1066d020000000000000000000000400000e42c000000ffffffff29000000010000002b000000010000002a000000000000003c000000000000002d00000001000000120000004052405600450000, 0, 0.707031, 0, 0.707031, -25.6875, -5.79688, -217.875),
|
||||
(674, 'lobby', 'oa_bonus_collision', 0x1006000100a1066d020000000000000000000000400000e42c000000ffffffff29000000010000002b000000010000002a000000000000003c000000000000002d0000000100000012000000d05b0045b05c0000, 0, 0, 0, 1, -0.697754, 39.1875, -7.94531),
|
||||
(675, 'lobby', 'oa_bonus_collision', 0x1006000100a1066d020000000000000000000000400000e42c000000ffffffff29000000010000002b000000010000002a000000000000003c000000000000002d0000000100000012000000d05b0045b05c0000, 0, 0, 0, 1, -0.697754, -20.7969, -7.94531),
|
||||
(676, 'lobby', 'oa_bonus_collision', 0x1006000100a1066d020000000000000000000000400000e42c000000ffffffff29000000010000002b000000010000002a000000000000003c000000000000002d0000000100000012000000404e0047404e0000, 0, 0, 0, 1, -51.0938, 12, -16.1875),
|
||||
(677, 'lobby', 'oa_bonus_collision', 0x1006000100a1066d020000000000000000000000400000e42c000000ffffffff29000000010000002b000000010000002a000000000000003c000000000000002d0000000100000012000000404e0047404e0000, 0, 0, 0, 1, 51.0938, 12, -16.1875),
|
||||
(678, 'lobby', 'oa_bonus_collision', 0x1006000100a1066d020000000000000000000000400000e42c000000ffffffff29000000010000002b000000010000002a000000000000003c000000000000002d0000000100000012000000004d004540520000, 0, 0.300537, 0, 0.953613, -75.25, -8, -47.7188),
|
||||
(679, 'lobby', 'oa_bonus_collision', 0x1006000100a1066d020000000000000000000000400000e42c000000ffffffff29000000010000002b000000010000002a000000000000003c000000000000002d0000000100000012000000004d004540520000, 0, -0.300537, 0, 0.953613, 75.25, -8, -47.7188),
|
||||
(680, 'lobby', 'oa_bonus_collision', 0x1006000100a1066d020000000000000000000000400000e42c000000ffffffff29000000010000002b000000010000002a000000000000003c000000000000002d0000000100000012000000004d804b404e0000, 0, 0, 0, 1, 0, 37, -175),
|
||||
(681, 'lobby', 'oa_bonus_collision', 0x1006000100a1066d020000000000000000000000400000e42c000000ffffffff29000000010000002b000000010000002a000000000000003c000000020000002d00000001000000120000000044205000440000, 0, 0, 0, 1, -18, 30, -153),
|
||||
(682, 'lobby', 'oa_bonus_collision', 0x1006000100a1066d020000000000000000000000400000e42c000000ffffffff29000000010000002b000000010000002a000000000000003c000000020000002d00000001000000120000000044205000440000, 0, 0, 0, 1, 18, 30, -153),
|
||||
(683, 'lobby', 'oa_bonus_collision', 0x1006000100a1066d020000000000000000000000400000e42c000000ffffffff29000000010000002b000000010000002a000000000000003c000000000000002d00000001000000120000000042004c00470000, 0, 0, 0, 1, -65, 9, -153),
|
||||
(684, 'lobby', 'oa_bonus_collision', 0x1006000100a1066d020000000000000000000000400000e42c000000ffffffff29000000010000002b000000010000002a000000000000003c000000000000002d00000001000000120000000042004c00470000, 0, 0, 0, 1, 65, 9, -153),
|
||||
(685, 'lobby', 'oa_bonus_collision', 0x1006000100a1066d020000000000000000000000400000e42c000000ffffffff29000000010000002b000000010000002a000000000000003c000000000000002d00000001000000120000004056405600450000, 0, 0, 0, 1, 0, 0, 226),
|
||||
(686, 'lobby', 'oa_bonus_collision', 0x1006000100a1066d020000000000000000000000400000e42c000000ffffffff29000000010000002b000000010000002a000000000000003c000000000000002d00000001000000120000008053405600450000, 0, 0, 0, 1, 0, 0, 70),
|
||||
(687, 'lobby', 'oa_bonus_collision', 0x1006000100a1066d020000000000000000000000400000e42c000000ffffffff29000000010000002b000000010000002a000000000000003c000000000000002d00000001000000120000006054405600450000, 0, 0.765625, 0, 0.642578, -53, 0, 193),
|
||||
(688, 'lobby', 'oa_bonus_collision', 0x1006000100a1066d020000000000000000000000400000e42c000000ffffffff29000000010000002b000000010000002a000000000000003c000000000000002d00000001000000120000001054405600450000, 0, 0.865723, 0, 0.5, -75.0625, 0, 131.125),
|
||||
(689, 'lobby', 'oa_bonus_collision', 0x1006000100a1066d020000000000000000000000400000e42c000000ffffffff29000000010000002b000000010000002a000000000000003c000000000000002d0000000100000012000000b054405600450000, 0, 0.258545, 0, 0.96582, -61.1875, 0, 88.375),
|
||||
(690, 'lobby', 'oa_bonus_collision', 0x1006000100a1066d020000000000000000000000400000e42c000000ffffffff29000000010000002b000000010000002a000000000000003c000000000000002d0000000100000012000000b054405600450000, 0, -0.258545, 0, 0.96582, 61.1875, 0, 88.375),
|
||||
(691, 'lobby', 'oa_bonus_collision', 0x1006000100a1066d020000000000000000000000400000e42c000000ffffffff29000000010000002b000000010000002a000000000000003c000000000000002d00000001000000120000001054405600450000, 0, -0.865723, 0, 0.5, 75.0625, 0, 131.125),
|
||||
(692, 'lobby', 'oa_bonus_collision', 0x1006000100a1066d020000000000000000000000400000e42c000000ffffffff29000000010000002b000000010000002a000000000000003c000000000000002d00000001000000120000006054405600450000, 0, -0.765625, 0, 0.642578, 53, 0, 193),
|
||||
(693, 'lobby', 'oa_bonus_collision', 0x1006000100a1066d020000000000000000000000400000e42c000000ffffffff29000000010000002b000000010000002a000000000000003c000000000000002d0000000100000012000000e05a0045f0590000, 0, 0, 0, 1, 0, -10, 145),
|
||||
(694, 'lobby', 'oa_bonus_collision', 0x1006000100a1066d020000000000000000000000400000e42c000000ffffffff29000000010000002b000000010000002a000000000000003c000000000000002d0000000100000012000000e05a0045f0590000, 0, 0, 0, 1, 0, 45, 145),
|
||||
(695, 'lobby', 'oa_bonus_collision', 0x1006000100a1066d020000000000000000000000400000e42c000000ffffffff29000000010000002b000000010000002a000000000000003c000000000000002d0000000100000012000000804b404e804b0000, 0, 0, 0, 1, 0, 45, 180),
|
||||
(696, 'lobby', 'oa_bonus_collision', 0x1006000100a1066d020000000000000000000000400000e42c000000ffffffff29000000010000002b000000010000002a000000000000003c000000000000002d0000000100000012000000004c0045804b0000, 0, 0, 0, 1, 0, 10, 105),
|
||||
(697, 'lobby', 'oa_bonus_collision', 0x1006000100a1066d020000000000000000000000400000e42c000000ffffffff29000000010000002b000000010000002a000000000000003c000000000000002d0000000100000012000000004d804f804b0000, 0, -0.113159, 0, 0.993164, 34.3125, 0, 110.875),
|
||||
(698, 'lobby', 'oa_bonus_collision', 0x1006000100a1066d020000000000000000000000400000e42c000000ffffffff29000000010000002b000000010000002a000000000000003c000000000000002d0000000100000012000000004d804f804b0000, 0, 0.113159, 0, 0.993164, -34.3125, 0, 110.875),
|
||||
(699, 'lobby', 'oa_bonus_collision', 0x1006000100a1066d020000000000000000000000400000e42c000000ffffffff29000000010000002b000000010000002a000000000000003c000000000000002d0000000100000012000000804c804f00460000, 0, 0.0348816, 0, 0.999023, -17, 0, 104),
|
||||
(700, 'lobby', 'oa_bonus_collision', 0x1006000100a1066d020000000000000000000000400000e42c000000ffffffff29000000010000002b000000010000002a000000000000003c000000000000002d0000000100000012000000804c804f00460000, 0, -0.0348816, 0, 0.999023, 17, 0, 104),
|
||||
(701, 'lobby', 'oa_bonus_collision', 0x1006000100a1066d020000000000000000000000400000e42c000000ffffffff29000000010000002b000000010000002a000000000000003c000000000000002d00000001000000120000004056404e804b0000, 0, 0, 0, 1, 0, 0, 223.5),
|
||||
(702, 'lobby', 'oa_bonus_collision', 0x1006000100a1066d020000000000000000000000400000e42c000000ffffffff29000000010000002b000000010000002a000000000000003c000000000000002d0000000100000012000000404e404e804b0000, 0, 0.190674, 0, 0.981445, 20.2344, 0, 207.875),
|
||||
(703, 'lobby', 'oa_bonus_collision', 0x1006000100a1066d020000000000000000000000400000e42c000000ffffffff29000000010000002b000000010000002a000000000000003c000000000000002d0000000100000012000000404e404e804b0000, 0, -0.190674, 0, 0.981445, -20.2344, 0, 207.875),
|
||||
(704, 'lobby', 'oa_bonus_collision', 0x1006000100a1066d020000000000000000000000400000e42c000000ffffffff29000000010000002b000000010000002a000000000000003c000000010000002d00000001000000120000000046004600460000, 0, 0, 0, 1, 0, 35, 180),
|
||||
(791, 'lobby', 'oa_forced_move', 0x10040101000e0400020000000000000000000000400000b82c000000ffffffff29000000010000002b0000000100000032000000000000003800000000007041110000000049005100490000, 0, 0, 0, 1, 0, 0, 90),
|
||||
(792, 'lobby', 'oa_movie_object', 0x10050200000e0400020000000000000000000000400000bb2c000000ffffffff29000000010000002b000000010000003d00000021000000320000000000000038000000000070423700000000008c42, 0, 0, 0, 1, 0, -5, 15),
|
||||
(793, 'lobby', 'oa_movie_object', 0x10050200000e0400020000000000000000000000400000bb2c000000ffffffff29000000010000002b000000010000003d000000210000003200000000000000380000000000c0403700000000000041, 0, 0, 0, 1, -40, 0, -173),
|
||||
(794, 'lobby', 'oa_movie_object', 0x10050200000e0400020000000000000000000000400000bb2c000000ffffffff29000000010000002b000000010000003d000000210000003200000000000000380000000000c0403700000000000041, 0, 0, 0, 1, -40, 7, -173),
|
||||
(795, 'lobby', 'oa_movie_object', 0x10050200000e0400020000000000000000000000400000bb2c000000ffffffff29000000010000002b000000010000003d000000210000003200000000000000380000000000c0403700000000000041, 0, 0, 0, 1, 40, 0, -173),
|
||||
(796, 'lobby', 'oa_movie_object', 0x10050200000e0400020000000000000000000000400000bb2c000000ffffffff29000000010000002b000000010000003d000000210000003200000000000000380000000000c0403700000000000041, 0, 0, 0, 1, 40, 7, -173),
|
||||
(797, 'lobby', 'oa_movie_object', 0x10050200000e0400020000000000000000000000400000bb2c000000ffffffff29000000010000002b000000010000003d0000002100000032000000000000003800000000007041370000000000a041, 0, 0, 0, 1, -55.5, -2, -238),
|
||||
(798, 'lobby', 'oa_movie_object', 0x10050200000e0400020000000000000000000000400000bb2c000000ffffffff29000000010000002b000000010000003d0000002100000032000000000000003800000000007041370000000000a041, 0, 0, 0, 1, 55.5, -2, -238),
|
||||
(800, 'lobby', 'ob_0102_0001', 0x1006010200000000020000000000000000000000400000072c000000ffffffff29000000010000002b000000010000002a000000000000002d000000010000003c00000001000000380000000000c040140000000048004900490000110000000000000000460000, 0, -0.87207, 0, 0.488525, 57.75, 0, -100.812),
|
||||
(801, 'lobby', 'ob_0102_0001', 0x1006010200000000020000000000000000000000400000072c000000ffffffff29000000010000002b000000010000002a000000000000002d000000010000003c00000001000000380000000000c040140000000048004900490000110000000000000000460000, 0, 0.87207, 0, 0.488525, -57.75, 0, -100.812),
|
||||
(802, 'lobby', 'ob_0102_0001', 0x1006010200000000020000000000000000000000400000072c000000ffffffff29000000010000002b000000010000002a000000000000002d000000010000003c00000001000000380000000000003f140000000046004900480000110000000000000080440000, 0, 0, 0, 1, -55.5, 0, -188.375),
|
||||
(803, 'lobby', 'ob_0102_0001', 0x1006010200000000020000000000000000000000400000072c000000ffffffff29000000010000002b000000010000002a000000000000002d000000010000003c00000001000000380000000000003f140000000046004900480000110000000000000080440000, 0, 0, 0, 1, 55.5, 0, -188.375),
|
||||
(804, 'lobby', 'ob_0102_0000', 0x1006010200000000020000000000000000000000400000072c000000ffffffff29000000010000002b000000010000002a000000000000002d000000010000003c000000010000003800000000008040140000000047004500460000110000000000004100450000, 0, -0.382568, 0, 0.923828, 18, 1, -153),
|
||||
(805, 'lobby', 'ob_0102_0000', 0x1006010200000000020000000000000000000000400000072c000000ffffffff29000000010000002b000000010000002a000000000000002d000000010000003c000000010000003800000000008040140000000047004500460000110000000000004100450000, 0, 0.382568, 0, 0.923828, -18, 1, -153),
|
||||
(806, 'lobby', 'ob_0102_0000', 0x1006010200000000020000000000000000000000400000072c000000ffffffff29000000010000002b000000010000002a000000000000002d000000010000003c00000001000000380000000000a040140000000047004500460000110000000000004100450000, 0, 0, 0, 1, 0, 15, -180.5),
|
||||
(807, 'lobby', 'ob_0102_0000', 0x1006010200000000020000000000000000000000400000072c000000ffffffff29000000010000002b000000010000002a000000000000002d000000010000003c00000001000000380000000000a040140000000048004900460000110000000000000000450000, 0, 1, 0, 0, 0, 2.59961, 156.5),
|
||||
(808, 'lobby', 'ob_0102_0000', 0x1006010200000000020000000000000000000000400000072c000000ffffffff29000000010000002b000000010000002a000000000000002d000000010000003c00000001000000380000000000a040140000000048004900460000110000000000000000450000, 0, 0.987305, 0, -0.156372, 34, 0.399902, 163.25),
|
||||
(809, 'lobby', 'ob_0102_0000', 0x1006010200000000020000000000000000000000400000072c000000ffffffff29000000010000002b000000010000002a000000000000002d000000010000003c00000001000000380000000000a040140000000048004900460000110000000000000000450000, 0, -0.987305, 0, -0.156372, -34, 0.399902, 163.25),
|
||||
(810, 'lobby', 'ob_0102_0001', 0x1006010200000000020000000000000000000000400000072c000000ffffffff29000000010000002b000000010000002a000000000000002d000000010000003c00000001000000380000000000a040140000000049004900480000110000000000000000460000, 0, -0.195068, 0, 0.980469, 50.5312, 0.299805, 120),
|
||||
(811, 'lobby', 'ob_0102_0001', 0x1006010200000000020000000000000000000000400000072c000000ffffffff29000000010000002b000000010000002a000000000000002d000000010000003c00000001000000380000000000a040140000000049004900480000110000000000000000460000, 0, 0.195068, 0, 0.980469, -50.5312, 0.299805, 120),
|
||||
(812, 'lobby', 'ob_0102_0001', 0x1006010200000000020000000000000000000000400000072c000000ffffffff29000000010000002b000000010000002a000000000000002d000000010000003c00000001000000380000000000a040140000000049004900480000110000000000000000460000, 0, 1, 0, 0, 0.119995, 2.69922, 210.25),
|
||||
(855, 'casino', 'ob_0104_0016', 0x1005000000074000020000000000000000000000400000002c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, 0, 6.52734, 116.062),
|
||||
(856, 'casino', 'ob_0100_0002', 0x1005000000074000020000000000000000000000400000002c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, -0.499756, 0, 0.865723, 26.7969, 6.5, 69.1875),
|
||||
(857, 'casino', 'ob_0150_0001', 0x1005000000074000020000000000000000000000400000002c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, -0.499756, 0, 0.865723, 28.7969, 6.5, 72.6875),
|
||||
(858, 'casino', 'ob_0104_0015', 0x1005000000074000020000000000000000000000400000002c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 1, 0, 0, -2.5, 8.79688, 79),
|
||||
(859, 'casino', 'ob_0104_0015', 0x1005000000074000020000000000000000000000400000002c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0.0325317, 0.938965, 0.122375, 0.318359, 16, 18.2969, -7.39844),
|
||||
(860, 'casino', 'ob_0104_0015', 0x1005000000074000020000000000000000000000400000002c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0.174561, 0.519043, -0.102905, 0.830078, -38.0938, 28.3906, -22),
|
||||
(861, 'casino', 'ob_0104_0015', 0x1005000000074000020000000000000000000000400000002c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0.136108, -0.989746, 0.0136337, -0.0374451, 2.79883, 22, 63),
|
||||
(862, 'casino', 'ob_0104_0015', 0x1005000000074000020000000000000000000000400000002c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, -0.0059166, 0.198364, 0.00119877, 0.97998, -32.375, 4.89844, -45.375),
|
||||
(863, 'casino', 'ob_0104_0018', 0x1005000000074000020000000000000000000000400000002c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.818848, 0, 0.573242, -47.2812, 3, 12.25),
|
||||
(864, 'casino', 'ob_0104_0018', 0x1005000000074000020000000000000000000000400000002c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, -0.792969, 0, 0.608398, -47.375, 3.09961, -12),
|
||||
(865, 'casino', 'ob_0104_0018', 0x1005000000074000020000000000000000000000400000002c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.608398, 0, 0.792969, 46.7812, 2.89844, 12.2969),
|
||||
(866, 'casino', 'ob_0104_0018', 0x1005000000074000020000000000000000000000400000002c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.792969, 0, 0.608398, 47, 3, -12.0938),
|
||||
(867, 'casino', 'ob_0104_0018', 0x1005000000074000020000000000000000000000400000002c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, -0.173584, 0, 0.984375, 11.5938, 0.349854, -34.1875),
|
||||
(868, 'casino', 'ob_0104_0018', 0x1005000000074000020000000000000000000000400000002c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, -11.5938, 0.349854, -34.375),
|
||||
(869, 'casino', 'ob_0104_0018', 0x1005000000074000020000000000000000000000400000002c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.0870972, 0, 0.996094, 11.5938, 0.349854, 34.375),
|
||||
(870, 'casino', 'ob_0104_0018', 0x1005000000074000020000000000000000000000400000002c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, -0.258545, 0, 0.96582, -11.5938, 0.349854, 34.375),
|
||||
(871, 'casino', 'ob_0104_0014', 0x1005000000074000020000000000000000000000400100002c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, -0.573242, 0, 0.818848, 59, 6.5, -21.5938),
|
||||
(872, 'casino', 'oa_sit_point', 0x100500000296f9d4020000000000000000000000400000a22c000000ffffffff29000000010000002b00000001000000320000000100000034000000010000000900000000000000000000000000000000000000670300000000000006000000, 0, -0.573242, 0, 0.818848, 59, 6.5, -21.5938),
|
||||
(873, 'casino', 'ob_0104_0014', 0x1005000000074000020000000000000000000000400100002c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, -0.818848, 0, 0.573242, 59, 6.5, 21.2969),
|
||||
(874, 'casino', 'oa_sit_point', 0x100500000296f9d4020000000000000000000000400000a22c000000ffffffff29000000010000002b00000001000000320000000100000034000000010000000900000000000000000000000000000000000000690300000000000006000000, 0, -0.818848, 0, 0.573242, 59, 6.5, 21.2969),
|
||||
(875, 'casino', 'ob_0104_0014', 0x1005000000074000020000000000000000000000400100002c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.818848, 0, 0.573242, -59, 6.5, 21.2969),
|
||||
(876, 'casino', 'oa_sit_point', 0x100500000296f9d4020000000000000000000000400000a22c000000ffffffff29000000010000002b000000010000003200000001000000340000000100000009000000000000000000000000000000000000006b0300000000000006000000, 0, 0.818848, 0, 0.573242, -59, 6.5, 21.2969),
|
||||
(877, 'casino', 'ob_0104_0014', 0x1005000000074000020000000000000000000000400100002c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.573242, 0, 0.818848, -59, 6.5, -21.5938),
|
||||
(878, 'casino', 'oa_sit_point', 0x100500000296f9d4020000000000000000000000400000a22c000000ffffffff29000000010000002b000000010000003200000001000000340000000100000009000000000000000000000000000000000000006d0300000000000006000000, 0, 0.573242, 0, 0.818848, -59, 6.5, -21.5938),
|
||||
(879, 'casino', 'ob_0104_0014', 0x1005000000074000020000000000000000000000400100002c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.0870972, 0, 0.996094, -12.0938, 6.5, -61.5938),
|
||||
(880, 'casino', 'oa_sit_point', 0x100500000296f9d4020000000000000000000000400000a22c000000ffffffff29000000010000002b000000010000003200000001000000340000000100000009000000000000000000000000000000000000006f0300000000000006000000, 0, 0.0870972, 0, 0.996094, -12.0938, 6.5, -61.5938),
|
||||
(881, 'casino', 'ob_0104_0014', 0x1005000000074000020000000000000000000000400100002c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.0870972, 0, 0.996094, -9.69531, 6.5, -62),
|
||||
(882, 'casino', 'oa_sit_point', 0x100500000296f9d4020000000000000000000000400000a22c000000ffffffff29000000010000002b00000001000000320000000100000034000000010000000900000000000000000000000000000000000000710300000000000006000000, 0, 0.0870972, 0, 0.996094, -9.69531, 6.5, -62),
|
||||
(883, 'casino', 'ob_0104_0014', 0x1005000000074000020000000000000000000000400100002c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, -0.0870972, 0, 0.996094, 9.59375, 6.5, -62.1875),
|
||||
(884, 'casino', 'oa_sit_point', 0x100500000296f9d4020000000000000000000000400000a22c000000ffffffff29000000010000002b00000001000000320000000100000034000000010000000900000000000000000000000000000000000000730300000000000006000000, 0, -0.0870972, 0, 0.996094, 9.59375, 6.5, -62.1875),
|
||||
(885, 'casino', 'ob_0104_0014', 0x1005000000074000020000000000000000000000400100002c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, -0.0870972, 0, 0.996094, 12.1953, 6.5, -61.6875),
|
||||
(886, 'casino', 'oa_sit_point', 0x100500000296f9d4020000000000000000000000400000a22c000000ffffffff29000000010000002b00000001000000320000000100000034000000010000000900000000000000000000000000000000000000750300000000000006000000, 0, -0.0870972, 0, 0.996094, 12.1953, 6.5, -61.6875),
|
||||
(887, 'casino', 'ob_0104_0017', 0x1005000000074000020000000000000000000000400000002c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, 0, 0, 0),
|
||||
(888, 'casino', 'ob_0104_0001', 0x1005000000074000020000000000000000000000400000002c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, -0.258545, 0, 0.96582, -14, 6.5, 72),
|
||||
(889, 'casino', 'ob_0104_0001', 0x1005000000074000020000000000000000000000400000002c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.258545, 0, 0.96582, 14, 6.5, 72),
|
||||
(890, 'casino', 'ob_0104_0024', 0x1005000000074000020000000000000000000000400000002c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, -0.341797, 0, 0.939453, 28.9062, 0, -34.4688),
|
||||
(891, 'casino', 'ob_0104_0006', 0x1005000000074000020000000000000000000000400000002c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.642578, 0, 0.765625, 0, 0, 0),
|
||||
(892, 'casino', 'ob_0104_0006', 0x1005000000074000020000000000000000000000400000002c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.765625, 0, -0.642578, 0, 0, 0),
|
||||
(893, 'casino', 'ob_0104_0006', 0x1005000000074000020000000000000000000000400000002c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.0000957251, 0, -1, 0, 0, 0),
|
||||
(894, 'casino', 'ob_0104_0020', 0x1005000000074000020000000000000000000000400000002c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, -42.375, 0.349854, 0),
|
||||
(895, 'casino', 'oa_am_cardgame_dealer001', 0x1005000000074000020000000000000000000000400000002c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.765625, 0, 0.642578, -38.875, 0.399902, 5.29688),
|
||||
(896, 'casino', 'oa_am_cardgame_dealer001', 0x1005000000074000020000000000000000000000400000002c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.765625, 0, 0.642578, -45.1875, 0.399902, 3.19922),
|
||||
(897, 'casino', 'oa_am_cardgame_dealer001', 0x1005000000074000020000000000000000000000400000002c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.765625, 0, 0.642578, -51.1875, 0.399902, 6),
|
||||
(898, 'casino', 'oa_am_cardgame_dealer001', 0x1005000000074000020000000000000000000000400000002c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.642578, 0, 0.765625, -51.0938, 0.399902, -6),
|
||||
(899, 'casino', 'oa_am_cardgame_dealer001', 0x1005000000074000020000000000000000000000400000002c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.642578, 0, 0.765625, -45.1875, 0.399902, -3.16797),
|
||||
(900, 'casino', 'oa_am_cardgame_dealer001', 0x1005000000074000020000000000000000000000400000002c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.642578, 0, 0.765625, -39, 0.399902, -5.29688),
|
||||
(901, 'casino', 'ob_0180_0014', 0x1005000000074000020000000000000000000000400100002c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, -0.499756, 0, 0.865723, -19.7969, 6.5, 97.875),
|
||||
(902, 'casino', 'oa_sit_point', 0x100500000296f9d4020000000000000000000000400000a22c000000ffffffff29000000010000002b00000001000000320000000100000034000000010000000900000000000000000000000000000000000000850300000000000006000000, 0, -0.499756, 0, 0.865723, -19.7969, 6.5, 97.875),
|
||||
(903, 'casino', 'ob_0180_0014', 0x1005000000074000020000000000000000000000400100002c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, -0.499756, 0, 0.865723, -20.6406, 6.5, 96.375),
|
||||
(904, 'casino', 'oa_sit_point', 0x100500000296f9d4020000000000000000000000400000a22c000000ffffffff29000000010000002b00000001000000320000000100000034000000010000000900000000000000000000000000000000000000870300000000000006000000, 0, -0.499756, 0, 0.865723, -20.6406, 6.5, 96.375),
|
||||
(905, 'casino', 'ob_0180_0014', 0x1005000000074000020000000000000000000000400100002c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, -0.499756, 0, 0.865723, -21.5, 6.5, 95),
|
||||
(906, 'casino', 'oa_sit_point', 0x100500000296f9d4020000000000000000000000400000a22c000000ffffffff29000000010000002b00000001000000320000000100000034000000010000000900000000000000000000000000000000000000890300000000000006000000, 0, -0.499756, 0, 0.865723, -21.5, 6.5, 95),
|
||||
(907, 'casino', 'ob_0180_0014', 0x1005000000074000020000000000000000000000400100002c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, -0.499756, 0, 0.865723, -22.3906, 6.5, 93.5),
|
||||
(908, 'casino', 'oa_sit_point', 0x100500000296f9d4020000000000000000000000400000a22c000000ffffffff29000000010000002b000000010000003200000001000000340000000100000009000000000000000000000000000000000000008b0300000000000006000000, 0, -0.499756, 0, 0.865723, -22.3906, 6.5, 93.5),
|
||||
(909, 'casino', 'ob_0180_0014', 0x1005000000074000020000000000000000000000400100002c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, -0.499756, 0, 0.865723, -23.1875, 6.5, 92),
|
||||
(910, 'casino', 'oa_sit_point', 0x100500000296f9d4020000000000000000000000400000a22c000000ffffffff29000000010000002b000000010000003200000001000000340000000100000009000000000000000000000000000000000000008d0300000000000006000000, 0, -0.499756, 0, 0.865723, -23.1875, 6.5, 92),
|
||||
(911, 'casino', 'oa_transfer_machine', 0x100a010000f8ffff020000000000000000000000000000002c0000000000000029000000010000002b000000010000002e0000000000000033000000010000003b0000000000000034000000ffffffff320000000100000037000000000000003a000000010000003800000000004040, 0, -0.96582, 0, 0.258789, 17.6875, 6.59766, 113.562),
|
||||
(912, 'casino', 'oa_transfer_machine', 0x100a010000f8ffff020000000000000000000000000000002c0000000000000029000000010000002b000000010000002e0000000000000033000000010000003b00000000000000340000001e000000320000000200000037000000000000003a000000010000003800000000000040, 0, 0, 0, 1, -18.6875, 6.29688, 115.062),
|
||||
(931, 'casino', 'ob_0102_0001', 0x1006010200f8ffff020000000000000000000000400000002c000000ffffffff29000000010000002b000000010000002a000000000000002d000000010000003c00000001000000380000000000a040140000000049004900480000110000000000000000460000, 0, 0.96582, 0, 0.258789, -18.6875, 6.29688, 115.5),
|
||||
(932, 'casino', 'ob_0104_0002', 0x1005000000074000020000000000000000000000400000002c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.993164, 0, 0.11322, -3.77344, 1, 16.3594),
|
||||
(933, 'casino', 'ob_0104_0002', 0x1005000000074000020000000000000000000000400000002c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.999023, 0, 0.0392761, -1.28418, 1, 16.75),
|
||||
(934, 'casino', 'ob_0104_0002', 0x1005000000074000020000000000000000000000400000002c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.999023, 0, -0.0391846, 1.2666, 1, 16.75),
|
||||
(935, 'casino', 'ob_0104_0002', 0x1005000000074000020000000000000000000000400000002c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.993164, 0, -0.113159, 3.78516, 1, 16.3594),
|
||||
(936, 'casino', 'ob_0104_0002', 0x1005000000074000020000000000000000000000400000002c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, -0.960938, 0, 0.275635, 8.90625, 1, 14.2422),
|
||||
(937, 'casino', 'ob_0104_0002', 0x1005000000074000020000000000000000000000400000002c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, -0.937988, 0, 0.345947, 10.9297, 1, 12.75),
|
||||
(938, 'casino', 'ob_0104_0002', 0x1005000000074000020000000000000000000000400000002c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, -0.909668, 0, 0.414551, 12.7422, 1, 10.9453),
|
||||
(939, 'casino', 'ob_0104_0002', 0x1005000000074000020000000000000000000000400000002c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, -0.874512, 0, 0.484863, 14.25, 1, 8.89062),
|
||||
(940, 'casino', 'ob_0104_0002', 0x1005000000074000020000000000000000000000400000002c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, -0.782227, 0, 0.62207, 16.3594, 1, 3.77344),
|
||||
(941, 'casino', 'ob_0104_0002', 0x1005000000074000020000000000000000000000400000002c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, -0.733887, 0, 0.678711, 16.75, 1, 1.28418),
|
||||
(942, 'casino', 'ob_0104_0002', 0x1005000000074000020000000000000000000000400000002c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, -0.681641, 0, 0.730957, 16.75, 1, -1.2666),
|
||||
(943, 'casino', 'ob_0104_0002', 0x1005000000074000020000000000000000000000400000002c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, -0.62207, 0, 0.782227, 16.3594, 1, -3.78516),
|
||||
(944, 'casino', 'ob_0104_0002', 0x1005000000074000020000000000000000000000400000002c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, -0.484619, 0, 0.874512, 14.2422, 1, -8.90625),
|
||||
(945, 'casino', 'ob_0104_0002', 0x1005000000074000020000000000000000000000400000002c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, -0.418457, 0, 0.907715, 12.75, 1, -10.9297),
|
||||
(946, 'casino', 'ob_0104_0002', 0x1005000000074000020000000000000000000000400000002c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, -0.350098, 0, 0.936523, 10.9453, 1, -12.7422),
|
||||
(947, 'casino', 'ob_0104_0002', 0x1005000000074000020000000000000000000000400000002c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, -0.275391, 0, 0.960938, 8.89062, 1, -14.25),
|
||||
(948, 'casino', 'ob_0104_0002', 0x1005000000074000020000000000000000000000400000002c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, -0.113159, 0, 0.993164, 3.77344, 1, -16.3594),
|
||||
(949, 'casino', 'ob_0104_0002', 0x1005000000074000020000000000000000000000400000002c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, -0.0391846, 0, 0.999023, 1.28418, 1, -16.75),
|
||||
(950, 'casino', 'ob_0104_0002', 0x1005000000074000020000000000000000000000400000002c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.0391846, 0, 0.999023, -1.2666, 1, -16.75),
|
||||
(951, 'casino', 'ob_0104_0002', 0x1005000000074000020000000000000000000000400000002c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.113159, 0, 0.993164, -3.78516, 1, -16.3594),
|
||||
(952, 'casino', 'ob_0104_0002', 0x1005000000074000020000000000000000000000400000002c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.275391, 0, 0.960938, -8.90625, 1, -14.2422),
|
||||
(953, 'casino', 'ob_0104_0002', 0x1005000000074000020000000000000000000000400000002c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.345947, 0, 0.937988, -10.9297, 1, -12.75),
|
||||
(954, 'casino', 'ob_0104_0002', 0x1005000000074000020000000000000000000000400000002c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.414551, 0, 0.909668, -12.7422, 1, -10.9453),
|
||||
(955, 'casino', 'ob_0104_0002', 0x1005000000074000020000000000000000000000400000002c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.484619, 0, 0.874512, -14.25, 1, -8.89062),
|
||||
(956, 'casino', 'ob_0104_0002', 0x1005000000074000020000000000000000000000400000002c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.62207, 0, 0.782227, -16.3594, 1, -3.77344),
|
||||
(957, 'casino', 'ob_0104_0002', 0x1005000000074000020000000000000000000000400000002c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.678711, 0, 0.733887, -16.75, 1, -1.28418),
|
||||
(958, 'casino', 'ob_0104_0002', 0x1005000000074000020000000000000000000000400000002c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.730957, 0, 0.681641, -16.75, 1, 1.2666),
|
||||
(959, 'casino', 'ob_0104_0002', 0x1005000000074000020000000000000000000000400000002c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.782227, 0, 0.62207, -16.3594, 1, 3.78516),
|
||||
(960, 'casino', 'ob_0104_0002', 0x1005000000074000020000000000000000000000400000002c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.874512, 0, 0.484863, -14.2422, 1, 8.90625),
|
||||
(961, 'casino', 'ob_0104_0002', 0x1005000000074000020000000000000000000000400000002c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.907715, 0, 0.418457, -12.75, 1, 10.9297),
|
||||
(962, 'casino', 'ob_0104_0002', 0x1005000000074000020000000000000000000000400000002c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.936523, 0, 0.350098, -10.9453, 1, 12.7422),
|
||||
(963, 'casino', 'ob_0104_0002', 0x1005000000074000020000000000000000000000400000002c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.960938, 0, 0.275635, -8.89062, 1, 14.25),
|
||||
(964, 'casino', 'ob_0104_0000', 0x100600000196f9d4020000000000000000000000400000a22c000000ffffffff29000000010000002b0000000100000031000000000000002a000000000000002d0000000100000009000000000000000000000000000000, 0, 0.333496, 0, 0.942383, 28.5938, 1.11914, 35.6875),
|
||||
(965, 'casino', 'ob_0104_0000', 0x100600000196f9d4020000000000000000000000400000a22c000000ffffffff29000000010000002b0000000100000031000000000000002a000000000000002d0000000100000009000000000000000000000000000000, 0, 0.26709, 0, 0.963379, 22.8906, 1.11914, 39.5938),
|
||||
(966, 'casino', 'ob_0104_0000', 0x100600000196f9d4020000000000000000000000400000a22c000000ffffffff29000000010000002b0000000100000031000000000000002a000000000000002d0000000100000009000000000000000000000000000000, 0, 0.283936, 0, 0.958496, 24.5938, 1.11914, 38.5938),
|
||||
(967, 'casino', 'ob_0104_0000', 0x100600000196f9d4020000000000000000000000400000a22c000000ffffffff29000000010000002b0000000100000031000000000000002a000000000000002d0000000100000009000000000000000000000000000000, 0, 0.241821, 0, 0.970215, 21.0938, 1.11914, 40.5938),
|
||||
(968, 'casino', 'ob_0104_0000', 0x100600000196f9d4020000000000000000000000400000a22c000000ffffffff29000000010000002b0000000100000031000000000000002a000000000000002d0000000100000009000000000000000000000000000000, 0, 0.350098, 0, 0.936523, 30.1875, 1.11914, 34.375),
|
||||
(969, 'casino', 'ob_0104_0000', 0x100600000196f9d4020000000000000000000000400000a22c000000ffffffff29000000010000002b0000000100000031000000000000002a000000000000002d0000000100000009000000000000000000000000000000, 0, 0.398682, 0, 0.916992, 33.6875, 1.11914, 30.8906),
|
||||
(970, 'casino', 'ob_0104_0000', 0x100600000196f9d4020000000000000000000000400000a22c000000ffffffff29000000010000002b0000000100000031000000000000002a000000000000002d0000000100000009000000000000000000000000000000, 0, 0.422607, 0, 0.90625, 35.0938, 1.11914, 29.3906),
|
||||
(971, 'casino', 'ob_0104_0000', 0x100600000196f9d4020000000000000000000000400000a22c000000ffffffff29000000010000002b0000000100000031000000000000002a000000000000002d0000000100000009000000000000000000000000000000, 0, 0.446045, 0, 0.894531, 36.2812, 1.11914, 27.8906),
|
||||
(972, 'casino', 'ob_0104_0000', 0x100600000196f9d4020000000000000000000000400000a22c000000ffffffff29000000010000002b0000000100000031000000000000002a000000000000002d0000000100000009000000000000000000000000000000, 0, 0.241821, 0, 0.970215, 22.8906, 2.25, 42.5938),
|
||||
(973, 'casino', 'ob_0104_0000', 0x100600000196f9d4020000000000000000000000400000a22c000000ffffffff29000000010000002b0000000100000031000000000000002a000000000000002d0000000100000009000000000000000000000000000000, 0, 0.26709, 0, 0.963379, 24.7969, 2.25, 41.5),
|
||||
(974, 'casino', 'ob_0104_0000', 0x100600000196f9d4020000000000000000000000400000a22c000000ffffffff29000000010000002b0000000100000031000000000000002a000000000000002d0000000100000009000000000000000000000000000000, 0, 0.325439, 0, 0.945312, 29.2969, 2.25, 38.5),
|
||||
(975, 'casino', 'ob_0104_0000', 0x100600000196f9d4020000000000000000000000400000a22c000000ffffffff29000000010000002b0000000100000031000000000000002a000000000000002d0000000100000009000000000000000000000000000000, 0, 0.341797, 0, 0.939453, 31, 2.25, 37.1875),
|
||||
(976, 'casino', 'ob_0104_0000', 0x100600000196f9d4020000000000000000000000400000a22c000000ffffffff29000000010000002b0000000100000031000000000000002a000000000000002d0000000100000009000000000000000000000000000000, 0, 0.366211, 0, 0.930176, 32.5938, 2.25, 35.7812),
|
||||
(977, 'casino', 'ob_0104_0000', 0x100600000196f9d4020000000000000000000000400000a22c000000ffffffff29000000010000002b0000000100000031000000000000002a000000000000002d0000000100000009000000000000000000000000000000, 0, 0.414551, 0, 0.909668, 36.375, 2.25, 31.8906),
|
||||
(978, 'casino', 'ob_0104_0000', 0x100600000196f9d4020000000000000000000000400000a22c000000ffffffff29000000010000002b0000000100000031000000000000002a000000000000002d0000000100000009000000000000000000000000000000, 0, 0.43042, 0, 0.902344, 37.7812, 2.25, 30.1875),
|
||||
(979, 'casino', 'ob_0104_0000', 0x100600000196f9d4020000000000000000000000400000a22c000000ffffffff29000000010000002b0000000100000031000000000000002a000000000000002d0000000100000009000000000000000000000000000000, 0, 0.250244, 0, 0.967773, 23.3906, 3.57812, 45.7812),
|
||||
(980, 'casino', 'ob_0104_0000', 0x100600000196f9d4020000000000000000000000400000a22c000000ffffffff29000000010000002b0000000100000031000000000000002a000000000000002d0000000100000009000000000000000000000000000000, 0, 0.258545, 0, 0.96582, 25.3906, 3.57812, 44.6875),
|
||||
(981, 'casino', 'ob_0104_0000', 0x100600000196f9d4020000000000000000000000400000a22c000000ffffffff29000000010000002b0000000100000031000000000000002a000000000000002d0000000100000009000000000000000000000000000000, 0, 0.275391, 0, 0.960938, 27.3906, 3.57812, 43.5938),
|
||||
(982, 'casino', 'ob_0104_0000', 0x100600000196f9d4020000000000000000000000400000a22c000000ffffffff29000000010000002b0000000100000031000000000000002a000000000000002d0000000100000009000000000000000000000000000000, 0, 0.333496, 0, 0.942383, 32.1875, 3.57812, 40.1875),
|
||||
(983, 'casino', 'ob_0104_0000', 0x100600000196f9d4020000000000000000000000400000a22c000000ffffffff29000000010000002b0000000100000031000000000000002a000000000000002d0000000100000009000000000000000000000000000000, 0, 0.350098, 0, 0.936523, 33.875, 3.57812, 38.6875),
|
||||
(984, 'casino', 'ob_0104_0000', 0x100600000196f9d4020000000000000000000000400000a22c000000ffffffff29000000010000002b0000000100000031000000000000002a000000000000002d0000000100000009000000000000000000000000000000, 0, 0.406494, 0, 0.913086, 38.0938, 3.57812, 34.5938),
|
||||
(985, 'casino', 'ob_0104_0000', 0x100600000196f9d4020000000000000000000000400000a22c000000ffffffff29000000010000002b0000000100000031000000000000002a000000000000002d0000000100000009000000000000000000000000000000, 0, 0.422607, 0, 0.90625, 39.5938, 3.57812, 32.875),
|
||||
(986, 'casino', 'ob_0104_0000', 0x100600000196f9d4020000000000000000000000400000a22c000000ffffffff29000000010000002b0000000100000031000000000000002a000000000000002d0000000100000009000000000000000000000000000000, 0, 0.446045, 0, 0.894531, 41.0938, 3.57812, 31),
|
||||
(987, 'casino', 'ob_0104_0000', 0x100600000196f9d4020000000000000000000000400000a22c000000ffffffff29000000010000002b0000000100000031000000000000002a000000000000002d0000000100000009000000000000000000000000000000, 0, 0.960938, 0, -0.275391, -27.3906, 3.57812, -43.5938),
|
||||
(988, 'casino', 'ob_0104_0000', 0x100600000196f9d4020000000000000000000000400000a22c000000ffffffff29000000010000002b0000000100000031000000000000002a000000000000002d0000000100000009000000000000000000000000000000, 0, 0.942383, 0, -0.333496, -28.5938, 1.11914, -35.6875),
|
||||
(989, 'casino', 'ob_0104_0000', 0x100600000196f9d4020000000000000000000000400000a22c000000ffffffff29000000010000002b0000000100000031000000000000002a000000000000002d0000000100000009000000000000000000000000000000, 0, 0.963379, 0, -0.26709, -22.8906, 1.11914, -39.5938);
|
||||
INSERT IGNORE INTO `GameObjects` (`ObjectID`, `ZoneName`, `ObjectName`, `ObjectFlags`, `RotX`, `RotY`, `RotZ`, `RotW`, `PosX`, `PosY`, `PosZ`) VALUES
|
||||
(990, 'casino', 'ob_0104_0000', 0x100600000196f9d4020000000000000000000000400000a22c000000ffffffff29000000010000002b0000000100000031000000000000002a000000000000002d0000000100000009000000000000000000000000000000, 0, 0.930176, 0, -0.366211, -32.5938, 2.25, -35.7812),
|
||||
(991, 'casino', 'ob_0104_0000', 0x100600000196f9d4020000000000000000000000400000a22c000000ffffffff29000000010000002b0000000100000031000000000000002a000000000000002d0000000100000009000000000000000000000000000000, 0, 0.90625, 0, -0.422607, -39.5938, 3.57812, -32.875),
|
||||
(992, 'casino', 'ob_0104_0000', 0x100600000196f9d4020000000000000000000000400000a22c000000ffffffff29000000010000002b0000000100000031000000000000002a000000000000002d0000000100000009000000000000000000000000000000, 0, 0.970215, 0, -0.241821, -21.0938, 1.11914, -40.5938),
|
||||
(993, 'casino', 'ob_0104_0000', 0x100600000196f9d4020000000000000000000000400000a22c000000ffffffff29000000010000002b0000000100000031000000000000002a000000000000002d0000000100000009000000000000000000000000000000, 0, 0.96582, 0, -0.258545, -25.3906, 3.57812, -44.6875),
|
||||
(994, 'casino', 'ob_0104_0000', 0x100600000196f9d4020000000000000000000000400000a22c000000ffffffff29000000010000002b0000000100000031000000000000002a000000000000002d0000000100000009000000000000000000000000000000, 0, 0.894531, 0, -0.446045, -36.2812, 1.11914, -27.8906),
|
||||
(995, 'casino', 'ob_0104_0000', 0x100600000196f9d4020000000000000000000000400000a22c000000ffffffff29000000010000002b0000000100000031000000000000002a000000000000002d0000000100000009000000000000000000000000000000, 0, 0.939453, 0, -0.341797, -31, 2.25, -37.1875),
|
||||
(996, 'casino', 'ob_0104_0000', 0x100600000196f9d4020000000000000000000000400000a22c000000ffffffff29000000010000002b0000000100000031000000000000002a000000000000002d0000000100000009000000000000000000000000000000, 0, 0.963379, 0, -0.26709, -24.7969, 2.25, -41.4688),
|
||||
(997, 'casino', 'ob_0104_0000', 0x100600000196f9d4020000000000000000000000400000a22c000000ffffffff29000000010000002b0000000100000031000000000000002a000000000000002d0000000100000009000000000000000000000000000000, 0, 0.970215, 0, -0.241821, -22.8906, 2.25, -42.5938),
|
||||
(998, 'casino', 'ob_0104_0000', 0x100600000196f9d4020000000000000000000000400000a22c000000ffffffff29000000010000002b0000000100000031000000000000002a000000000000002d0000000100000009000000000000000000000000000000, 0, 0.942383, 0, -0.333496, -32.1875, 3.57812, -40.1875),
|
||||
(999, 'casino', 'ob_0104_0000', 0x100600000196f9d4020000000000000000000000400000a22c000000ffffffff29000000010000002b0000000100000031000000000000002a000000000000002d0000000100000009000000000000000000000000000000, 0, 0.945312, 0, -0.325439, -29.2969, 2.25, -38.4688),
|
||||
(1000, 'casino', 'ob_0104_0000', 0x100600000196f9d4020000000000000000000000400000a22c000000ffffffff29000000010000002b0000000100000031000000000000002a000000000000002d0000000100000009000000000000000000000000000000, 0, 0.958496, 0, -0.283936, -24.5938, 1.11914, -38.5938),
|
||||
(1001, 'casino', 'ob_0104_0000', 0x100600000196f9d4020000000000000000000000400000a22c000000ffffffff29000000010000002b0000000100000031000000000000002a000000000000002d0000000100000009000000000000000000000000000000, 0, 0.913086, 0, -0.406494, -38.0938, 3.57812, -34.5938),
|
||||
(1002, 'casino', 'ob_0104_0000', 0x100600000196f9d4020000000000000000000000400000a22c000000ffffffff29000000010000002b0000000100000031000000000000002a000000000000002d0000000100000009000000000000000000000000000000, 0, 0.967773, 0, -0.250244, -23.3906, 3.57812, -45.7812),
|
||||
(1003, 'casino', 'ob_0104_0000', 0x100600000196f9d4020000000000000000000000400000a22c000000ffffffff29000000010000002b0000000100000031000000000000002a000000000000002d0000000100000009000000000000000000000000000000, 0, 0.902344, 0, -0.43042, -37.7812, 2.25, -30.1875),
|
||||
(1004, 'casino', 'ob_0104_0000', 0x100600000196f9d4020000000000000000000000400000a22c000000ffffffff29000000010000002b0000000100000031000000000000002a000000000000002d0000000100000009000000000000000000000000000000, 0, 0.909668, 0, -0.414551, -36.375, 2.25, -31.8906),
|
||||
(1005, 'casino', 'ob_0104_0000', 0x100600000196f9d4020000000000000000000000400000a22c000000ffffffff29000000010000002b0000000100000031000000000000002a000000000000002d0000000100000009000000000000000000000000000000, 0, 0.90625, 0, -0.422607, -35.0938, 1.11914, -29.3906),
|
||||
(1006, 'casino', 'ob_0104_0000', 0x100600000196f9d4020000000000000000000000400000a22c000000ffffffff29000000010000002b0000000100000031000000000000002a000000000000002d0000000100000009000000000000000000000000000000, 0, 0.894531, 0, -0.446045, -41.0938, 3.57812, -30.9844),
|
||||
(1007, 'casino', 'ob_0104_0000', 0x100600000196f9d4020000000000000000000000400000a22c000000ffffffff29000000010000002b0000000100000031000000000000002a000000000000002d0000000100000009000000000000000000000000000000, 0, 0.936523, 0, -0.350098, -33.875, 3.57812, -38.6875),
|
||||
(1008, 'casino', 'ob_0104_0000', 0x100600000196f9d4020000000000000000000000400000a22c000000ffffffff29000000010000002b0000000100000031000000000000002a000000000000002d0000000100000009000000000000000000000000000000, 0, 0.936523, 0, -0.350098, -30.1875, 1.11914, -34.375),
|
||||
(1009, 'casino', 'ob_0104_0000', 0x100600000196f9d4020000000000000000000000400000a22c000000ffffffff29000000010000002b0000000100000031000000000000002a000000000000002d0000000100000009000000000000000000000000000000, 0, 0.916992, 0, -0.398682, -33.6875, 1.11914, -30.8906),
|
||||
(1010, 'casino', 'ob_0104_0000', 0x100600000196f9d4020000000000000000000000400000a22c000000ffffffff29000000010000002b0000000100000031000000000000002a000000000000002d0000000100000009000000000000000000000000000000, 0, 0.275635, 0, -0.960938, -27.4531, 3.57812, 43.5),
|
||||
(1011, 'casino', 'ob_0104_0000', 0x100600000196f9d4020000000000000000000000400000a22c000000ffffffff29000000010000002b0000000100000031000000000000002a000000000000002d0000000100000009000000000000000000000000000000, 0, 0.414551, 0, -0.909668, -36.5625, 2.25, 31.625),
|
||||
(1012, 'casino', 'ob_0104_0000', 0x100600000196f9d4020000000000000000000000400000a22c000000ffffffff29000000010000002b0000000100000031000000000000002a000000000000002d0000000100000009000000000000000000000000000000, 0, 0.406738, 0, -0.913086, -38.1562, 3.57812, 34.5312),
|
||||
(1013, 'casino', 'ob_0104_0000', 0x100600000196f9d4020000000000000000000000400000a22c000000ffffffff29000000010000002b0000000100000031000000000000002a000000000000002d0000000100000009000000000000000000000000000000, 0, 0.350098, 0, -0.936523, -33.9688, 3.57812, 38.6875),
|
||||
(1014, 'casino', 'ob_0104_0000', 0x100600000196f9d4020000000000000000000000400000a22c000000ffffffff29000000010000002b0000000100000031000000000000002a000000000000002d0000000100000009000000000000000000000000000000, 0, 0.250244, 0, -0.967773, -23.1719, 2.25, 42.4688),
|
||||
(1015, 'casino', 'ob_0104_0000', 0x100600000196f9d4020000000000000000000000400000a22c000000ffffffff29000000010000002b0000000100000031000000000000002a000000000000002d0000000100000009000000000000000000000000000000, 0, 0.398682, 0, -0.916992, -33.7188, 1.11914, 30.9219),
|
||||
(1016, 'casino', 'ob_0104_0000', 0x100600000196f9d4020000000000000000000000400000a22c000000ffffffff29000000010000002b0000000100000031000000000000002a000000000000002d0000000100000009000000000000000000000000000000, 0, 0.350098, 0, -0.936523, -30.1875, 1.11914, 34.3438),
|
||||
(1017, 'casino', 'ob_0104_0000', 0x100600000196f9d4020000000000000000000000400000a22c000000ffffffff29000000010000002b0000000100000031000000000000002a000000000000002d0000000100000009000000000000000000000000000000, 0, 0.342041, 0, -0.939453, -31.25, 2.25, 36.9688),
|
||||
(1018, 'casino', 'ob_0104_0000', 0x100600000196f9d4020000000000000000000000400000a22c000000ffffffff29000000010000002b0000000100000031000000000000002a000000000000002d0000000100000009000000000000000000000000000000, 0, 0.26709, 0, -0.963379, -25.0938, 2.25, 41.375),
|
||||
(1019, 'casino', 'ob_0104_0000', 0x100600000196f9d4020000000000000000000000400000a22c000000ffffffff29000000010000002b0000000100000031000000000000002a000000000000002d0000000100000009000000000000000000000000000000, 0, 0.258789, 0, -0.96582, -22.8594, 1.11914, 39.6562),
|
||||
(1020, 'casino', 'ob_0104_0000', 0x100600000196f9d4020000000000000000000000400000a22c000000ffffffff29000000010000002b0000000100000031000000000000002a000000000000002d0000000100000009000000000000000000000000000000, 0, 0.438232, 0, -0.898438, -36.3125, 1.11914, 27.8125),
|
||||
(1021, 'casino', 'ob_0104_0000', 0x100600000196f9d4020000000000000000000000400000a22c000000ffffffff29000000010000002b0000000100000031000000000000002a000000000000002d0000000100000009000000000000000000000000000000, 0, 0.258789, 0, -0.96582, -25.5156, 3.57812, 44.6875),
|
||||
(1022, 'casino', 'ob_0104_0000', 0x100600000196f9d4020000000000000000000000400000a22c000000ffffffff29000000010000002b0000000100000031000000000000002a000000000000002d0000000100000009000000000000000000000000000000, 0, 0.414551, 0, -0.909668, -35, 1.11914, 29.4219),
|
||||
(1023, 'casino', 'ob_0104_0000', 0x100600000196f9d4020000000000000000000000400000a22c000000ffffffff29000000010000002b0000000100000031000000000000002a000000000000002d0000000100000009000000000000000000000000000000, 0, 0.358398, 0, -0.933105, -32.8125, 2.25, 35.5312),
|
||||
(1024, 'casino', 'ob_0104_0000', 0x100600000196f9d4020000000000000000000000400000a22c000000ffffffff29000000010000002b0000000100000031000000000000002a000000000000002d0000000100000009000000000000000000000000000000, 0, 0.283936, 0, -0.958496, -24.5781, 1.11914, 38.5312),
|
||||
(1025, 'casino', 'ob_0104_0000', 0x100600000196f9d4020000000000000000000000400000a22c000000ffffffff29000000010000002b0000000100000031000000000000002a000000000000002d0000000100000009000000000000000000000000000000, 0, 0.438232, 0, -0.898438, -37.9688, 2.25, 29.9375),
|
||||
(1026, 'casino', 'ob_0104_0000', 0x100600000196f9d4020000000000000000000000400000a22c000000ffffffff29000000010000002b0000000100000031000000000000002a000000000000002d0000000100000009000000000000000000000000000000, 0, 0.233398, 0, -0.972168, -21.1719, 1.11914, 40.5625),
|
||||
(1027, 'casino', 'ob_0104_0000', 0x100600000196f9d4020000000000000000000000400000a22c000000ffffffff29000000010000002b0000000100000031000000000000002a000000000000002d0000000100000009000000000000000000000000000000, 0, 0.43042, 0, -0.902344, -41.0312, 3.57812, 30.9844),
|
||||
(1028, 'casino', 'ob_0104_0000', 0x100600000196f9d4020000000000000000000000400000a22c000000ffffffff29000000010000002b0000000100000031000000000000002a000000000000002d0000000100000009000000000000000000000000000000, 0, 0.33374, 0, -0.942383, -32.2188, 3.57812, 40.0938),
|
||||
(1029, 'casino', 'ob_0104_0000', 0x100600000196f9d4020000000000000000000000400000a22c000000ffffffff29000000010000002b0000000100000031000000000000002a000000000000002d0000000100000009000000000000000000000000000000, 0, 0.317383, 0, -0.948242, -29.5938, 2.25, 38.3125),
|
||||
(1030, 'casino', 'ob_0104_0000', 0x100600000196f9d4020000000000000000000000400000a22c000000ffffffff29000000010000002b0000000100000031000000000000002a000000000000002d0000000100000009000000000000000000000000000000, 0, 0.233398, 0, -0.972168, -23.3906, 3.57812, 45.8438),
|
||||
(1031, 'casino', 'ob_0104_0000', 0x100600000196f9d4020000000000000000000000400000a22c000000ffffffff29000000010000002b0000000100000031000000000000002a000000000000002d0000000100000009000000000000000000000000000000, 0, 0.33374, 0, -0.942383, -28.625, 1.11914, 35.6875),
|
||||
(1032, 'casino', 'ob_0104_0000', 0x100600000196f9d4020000000000000000000000400000a22c000000ffffffff29000000010000002b0000000100000031000000000000002a000000000000002d0000000100000009000000000000000000000000000000, 0, 0.422607, 0, -0.90625, -39.5938, 3.57812, 32.75),
|
||||
(1033, 'casino', 'ob_0104_0021', 0x1008000001f8ffff020000000000000000000000400000002c000000ffffffff29000000010000002b000000010000003d00000000000000340000000000000038000000000502002a000000000000002d0000000100000009000000000000000000000000000000, 0, -0.173584, 0, 0.984375, -38, 0.910645, 3.22266),
|
||||
(1034, 'casino', 'ob_0104_0021', 0x1008000001f8ffff020000000000000000000000400000002c000000ffffffff29000000010000002b000000010000003d00000001000000340000000100000038000000010502002a000000000000002d0000000100000009000000000000000000000000000000, 0, -0.422607, 0, 0.90625, -37.125, 0.910645, 3.9082),
|
||||
(1035, 'casino', 'ob_0104_0021', 0x1008000001f8ffff020000000000000000000000400000002c000000ffffffff29000000010000002b000000010000003d00000002000000340000000200000038000000020502002a000000000000002d0000000100000009000000000000000000000000000000, 0, -0.642578, 0, 0.765625, -36.6562, 0.910645, 4.92188),
|
||||
(1036, 'casino', 'ob_0104_0021', 0x1008000001f8ffff020000000000000000000000400000002c000000ffffffff29000000010000002b000000010000003d00000003000000340000000300000038000000030502002a000000000000002d0000000100000009000000000000000000000000000000, 0, -0.818848, 0, 0.573242, -36.75, 0.910645, 6.02734),
|
||||
(1037, 'casino', 'ob_0104_0021', 0x1008000001f8ffff020000000000000000000000400000002c000000ffffffff29000000010000002b000000010000003d00000004000000340000000400000038000000040502002a000000000000002d0000000100000009000000000000000000000000000000, 0, -0.939453, 0, 0.341797, -37.3438, 0.910645, 6.96875),
|
||||
(1038, 'casino', 'ob_0104_0021', 0x1008000001f8ffff020000000000000000000000400000002c000000ffffffff29000000010000002b000000010000003d00000064000000340000000000000038000000060502002a000000000000002d0000000100000009000000000000000000000000000000, 0, -0.216309, 0, 0.976074, -44.2188, 0.910645, 1.0752),
|
||||
(1039, 'casino', 'ob_0104_0021', 0x1008000001f8ffff020000000000000000000000400000002c000000ffffffff29000000010000002b000000010000003d00000065000000340000000100000038000000070502002a000000000000002d0000000100000009000000000000000000000000000000, 0, -0.422607, 0, 0.90625, -43.375, 0.910645, 1.76074),
|
||||
(1040, 'casino', 'ob_0104_0021', 0x1008000001f8ffff020000000000000000000000400000002c000000ffffffff29000000010000002b000000010000003d00000066000000340000000200000038000000080502002a000000000000002d0000000100000009000000000000000000000000000000, 0, -0.642578, 0, 0.765625, -42.9062, 0.910645, 2.77344),
|
||||
(1041, 'casino', 'ob_0104_0021', 0x1008000001f8ffff020000000000000000000000400000002c000000ffffffff29000000010000002b000000010000003d00000067000000340000000300000038000000090502002a000000000000002d0000000100000009000000000000000000000000000000, 0, -0.818848, 0, 0.573242, -43, 0.910645, 3.87891),
|
||||
(1042, 'casino', 'ob_0104_0021', 0x1008000001f8ffff020000000000000000000000400000002c000000ffffffff29000000010000002b000000010000003d000000680000003400000004000000380000000a0502002a000000000000002d0000000100000009000000000000000000000000000000, 0, -0.939453, 0, 0.341797, -43.5625, 0.910645, 4.82031),
|
||||
(1043, 'casino', 'ob_0104_0021', 0x1008000001f8ffff020000000000000000000000400000002c000000ffffffff29000000010000002b000000010000003d000000c80000003400000000000000380000000c0502002a000000000000002d0000000100000009000000000000000000000000000000, 0, -0.173584, 0, 0.984375, -50.1875, 0.910645, 3.91602),
|
||||
(1044, 'casino', 'ob_0104_0021', 0x1008000001f8ffff020000000000000000000000400000002c000000ffffffff29000000010000002b000000010000003d000000c90000003400000001000000380000000d0502002a000000000000002d0000000100000009000000000000000000000000000000, 0, -0.46167, 0, 0.886719, -49.3125, 0.910645, 4.60156),
|
||||
(1045, 'casino', 'ob_0104_0021', 0x1008000001f8ffff020000000000000000000000400000002c000000ffffffff29000000010000002b000000010000003d000000ca0000003400000002000000380000000e0502002a000000000000002d0000000100000009000000000000000000000000000000, 0, -0.642578, 0, 0.765625, -48.875, 0.910645, 5.61328),
|
||||
(1046, 'casino', 'ob_0104_0021', 0x1008000001f8ffff020000000000000000000000400000002c000000ffffffff29000000010000002b000000010000003d000000cb0000003400000003000000380000000f0502002a000000000000002d0000000100000009000000000000000000000000000000, 0, -0.792969, 0, 0.608398, -48.9375, 0.910645, 6.71875),
|
||||
(1047, 'casino', 'ob_0104_0021', 0x1008000001f8ffff020000000000000000000000400000002c000000ffffffff29000000010000002b000000010000003d000000cc000000340000000400000038000000100502002a000000000000002d0000000100000009000000000000000000000000000000, 0, -0.923828, 0, 0.382568, -49.5312, 0.910645, 7.66016),
|
||||
(1048, 'casino', 'ob_0104_0021', 0x1008000001f8ffff020000000000000000000000400000002c000000ffffffff29000000010000002b000000010000003d0000002c010000340000000000000038000000120502002a000000000000002d0000000100000009000000000000000000000000000000, 0, -0.382568, 0, 0.923828, -49.5312, 0.910645, -7.66016),
|
||||
(1049, 'casino', 'ob_0104_0021', 0x1008000001f8ffff020000000000000000000000400000002c000000ffffffff29000000010000002b000000010000003d0000002d010000340000000100000038000000130502002a000000000000002d0000000100000009000000000000000000000000000000, 0, -0.573242, 0, 0.818848, -48.9375, 0.910645, -6.71875),
|
||||
(1050, 'casino', 'ob_0104_0021', 0x1008000001f8ffff020000000000000000000000400000002c000000ffffffff29000000010000002b000000010000003d0000002e010000340000000200000038000000140502002a000000000000002d0000000100000009000000000000000000000000000000, 0, -0.765625, 0, 0.642578, -48.875, 0.910645, -5.61328),
|
||||
(1051, 'casino', 'ob_0104_0021', 0x1008000001f8ffff020000000000000000000000400000002c000000ffffffff29000000010000002b000000010000003d0000002f010000340000000300000038000000150502002a000000000000002d0000000100000009000000000000000000000000000000, 0, -0.90625, 0, 0.422607, -49.3125, 0.910645, -4.60156),
|
||||
(1052, 'casino', 'ob_0104_0021', 0x1008000001f8ffff020000000000000000000000400000002c000000ffffffff29000000010000002b000000010000003d00000030010000340000000400000038000000160502002a000000000000002d0000000100000009000000000000000000000000000000, 0, -0.984375, 0, 0.173584, -50.1875, 0.910645, -3.91602),
|
||||
(1053, 'casino', 'ob_0104_0021', 0x1008000001f8ffff020000000000000000000000400000002c000000ffffffff29000000010000002b000000010000003d00000090010000340000000000000038000000180502002a000000000000002d0000000100000009000000000000000000000000000000, 0, -0.382568, 0, 0.923828, -43.5625, 0.910645, -4.82031),
|
||||
(1054, 'casino', 'ob_0104_0021', 0x1008000001f8ffff020000000000000000000000400000002c000000ffffffff29000000010000002b000000010000003d00000091010000340000000100000038000000190502002a000000000000002d0000000100000009000000000000000000000000000000, 0, -0.573242, 0, 0.818848, -43, 0.910645, -3.87891),
|
||||
(1055, 'casino', 'ob_0104_0021', 0x1008000001f8ffff020000000000000000000000400000002c000000ffffffff29000000010000002b000000010000003d000000920100003400000002000000380000001a0502002a000000000000002d0000000100000009000000000000000000000000000000, 0, -0.765625, 0, 0.642578, -42.9062, 0.910645, -2.77344),
|
||||
(1056, 'casino', 'ob_0104_0021', 0x1008000001f8ffff020000000000000000000000400000002c000000ffffffff29000000010000002b000000010000003d000000930100003400000003000000380000001b0502002a000000000000002d0000000100000009000000000000000000000000000000, 0, -0.886719, 0, 0.46167, -43.375, 0.910645, -1.76074),
|
||||
(1057, 'casino', 'ob_0104_0021', 0x1008000001f8ffff020000000000000000000000400000002c000000ffffffff29000000010000002b000000010000003d000000940100003400000004000000380000001c0502002a000000000000002d0000000100000009000000000000000000000000000000, 0, -0.976074, 0, 0.216431, -44.2188, 0.910645, -1.0752),
|
||||
(1058, 'casino', 'ob_0104_0021', 0x1008000001f8ffff020000000000000000000000400000002c000000ffffffff29000000010000002b000000010000003d000000f40100003400000000000000380000001e0502002a000000000000002d0000000100000009000000000000000000000000000000, 0, -0.374512, 0, 0.926758, -37.3438, 0.910645, -6.96875),
|
||||
(1059, 'casino', 'ob_0104_0021', 0x1008000001f8ffff020000000000000000000000400000002c000000ffffffff29000000010000002b000000010000003d000000f50100003400000001000000380000001f0502002a000000000000002d0000000100000009000000000000000000000000000000, 0, -0.573242, 0, 0.818848, -36.75, 0.910645, -6.02734),
|
||||
(1060, 'casino', 'ob_0104_0021', 0x1008000001f8ffff020000000000000000000000400000002c000000ffffffff29000000010000002b000000010000003d000000f6010000340000000200000038000000200502002a000000000000002d0000000100000009000000000000000000000000000000, 0, -0.765625, 0, 0.642578, -36.6562, 0.910645, -4.92188),
|
||||
(1061, 'casino', 'ob_0104_0021', 0x1008000001f8ffff020000000000000000000000400000002c000000ffffffff29000000010000002b000000010000003d000000f7010000340000000300000038000000210502002a000000000000002d0000000100000009000000000000000000000000000000, 0, -0.90625, 0, 0.422607, -37.125, 0.910645, -3.9082),
|
||||
(1062, 'casino', 'ob_0104_0021', 0x1008000001f8ffff020000000000000000000000400000002c000000ffffffff29000000010000002b000000010000003d000000f8010000340000000400000038000000220502002a000000000000002d0000000100000009000000000000000000000000000000, 0, -0.976074, 0, 0.216431, -38, 0.910645, -3.22266),
|
||||
(1063, 'casino', 'oa_0104_0025_0', 0x10060000005f7dd20200000000000000000000004000003e2c000000ffffffff29000000010000002b000000010000002a0000000000000042000000000000002d00000001000000, 0, -0.341797, 0, 0.939453, 24.5, 8.5, -43.5),
|
||||
(1064, 'casino', 'oa_0104_0025_1', 0x10060000005f7dd20200000000000000000000004000003e2c000000ffffffff29000000010000002b000000010000002a0000000000000042000000010000002d00000001000000, 0, -0.341797, 0, 0.939453, 25.5, 5.69922, -41),
|
||||
(1065, 'casino', 'oa_0104_0025_2', 0x10060000005f7dd20200000000000000000000004000003e2c000000ffffffff29000000010000002b000000010000002a0000000000000042000000020000002d00000001000000, 0, -0.341797, 0, 0.939453, 27, 2.89844, -39),
|
||||
(2, 'campship', 'ob_0150_0001', 0x10050000000b0400020000000000000000000000000100002c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.923828, 0, 0.382568, -4.55469, 0.0726318, 9.04688),
|
||||
(3, 'campship', 'oa_campship_exit', 0x10050000000b0400020000000000000000000000000100002c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0, 0, 1, 0, 0, -13.5),
|
||||
(4, 'campship', 'ob_0150_0004', 0x1006000000000000020000000000000000000000000100002c000000ffffffff29000000010000002b0000000100000038000000030000002a000000000000002d00000001000000, 0, 0.923828, 0, -0.382568, 4.59375, 0.0726318, 9.09375),
|
||||
(5, 'campship', 'ob_0150_0006', 0x10050000000b0400020000000000000000000000000100002c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.382568, 0, 0.923828, -4.55469, 0.172607, -7.77734),
|
||||
(6, 'campship', 'ob_0150_0009', 0x10050000000b0400020000000000000000000000000100002c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 1, 0, 0, 0, -5, 26),
|
||||
(7, 'campship', 'oa_start_sync', 0x10040000000b0400020000000000000000000000000100002c000000ffffffff29000000010000002b000000010000003200000010c09a5e, 0, 0, 0, 1, 0, 3.69922, 14.3984),
|
||||
(8, 'campship', 'ob_0150_0008', 0x10050000000b0400020000000000000000000000000100002c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, 0.707031, 0, -0.707031, 6.84375, 0, 0.625),
|
||||
(9, 'campship', 'ob_0150_0007', 0x10050000000b0400020000000000000000000000000100002c000000ffffffff29000000010000002b000000010000002a000000000000002d00000001000000, 0, -0.382568, 0, 0.923828, 4.75391, 0.172607, -7.97656);
|
991
PSO2SERVER/Resources/sql/scripts/psoserver2 2024.9.9.sql
Normal file
991
PSO2SERVER/Resources/sql/scripts/psoserver2 2024.9.9.sql
Normal file
@ -0,0 +1,991 @@
|
||||
/*
|
||||
Navicat Premium Data Transfer
|
||||
|
||||
Source Server : sanc.top3307
|
||||
Source Server Type : MySQL
|
||||
Source Server Version : 80019 (8.0.19)
|
||||
Source Host : sanc.top:3307
|
||||
Source Schema : psoserver2
|
||||
|
||||
Target Server Type : MySQL
|
||||
Target Server Version : 80019 (8.0.19)
|
||||
File Encoding : 65001
|
||||
|
||||
Date: 09/09/2024 13:14:06
|
||||
*/
|
||||
|
||||
SET NAMES utf8mb4;
|
||||
SET FOREIGN_KEY_CHECKS = 0;
|
||||
|
||||
-- ----------------------------
|
||||
-- Table structure for characters
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS `characters`;
|
||||
CREATE TABLE `characters` (
|
||||
`CharacterID` int NOT NULL AUTO_INCREMENT,
|
||||
`Name` longtext CHARACTER SET latin1 COLLATE latin1_swedish_ci NULL,
|
||||
`LooksBinary` longblob NULL,
|
||||
`JobsBinary` longblob NULL,
|
||||
`Player_PlayerID` int NULL DEFAULT NULL,
|
||||
PRIMARY KEY (`CharacterID`) USING BTREE,
|
||||
INDEX `IX_Player_PlayerID`(`Player_PlayerID` ASC) USING BTREE,
|
||||
CONSTRAINT `characters_ibfk_1` FOREIGN KEY (`Player_PlayerID`) REFERENCES `players` (`PlayerID`) ON DELETE RESTRICT ON UPDATE RESTRICT
|
||||
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = latin1 COLLATE = latin1_swedish_ci ROW_FORMAT = Dynamic;
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of characters
|
||||
-- ----------------------------
|
||||
|
||||
-- ----------------------------
|
||||
-- Table structure for gameobjects
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS `gameobjects`;
|
||||
CREATE TABLE `gameobjects` (
|
||||
`ObjectID` int NOT NULL,
|
||||
`ZoneName` varchar(225) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL,
|
||||
`ObjectName` varchar(225) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL,
|
||||
`ObjectFlags` blob NOT NULL,
|
||||
`RotX` float NOT NULL,
|
||||
`RotY` float NOT NULL,
|
||||
`RotZ` float NOT NULL,
|
||||
`RotW` float NOT NULL,
|
||||
`PosX` float NOT NULL,
|
||||
`PosY` float NOT NULL,
|
||||
`PosZ` float NOT NULL,
|
||||
PRIMARY KEY (`ObjectID`, `ZoneName`) USING BTREE
|
||||
) ENGINE = MyISAM AUTO_INCREMENT = 1 CHARACTER SET = latin1 COLLATE = latin1_swedish_ci ROW_FORMAT = Dynamic;
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of gameobjects
|
||||
-- ----------------------------
|
||||
INSERT INTO `gameobjects` VALUES (1, 'lobby', 'oa_live_object', 0x1008000000A1066D020000000000000000000000400000E42C000000FFFFFFFF29000000010000002B000000020000003300000000000000310000000100000039000000000000002A000000000000002D00000001000000, 0, 0, 0, 1, 0, 0, 0);
|
||||
INSERT INTO `gameobjects` VALUES (91, 'lobby', 'ob_0102_0127', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, 0, 0, -135);
|
||||
INSERT INTO `gameobjects` VALUES (92, 'lobby', 'ob_0102_0034', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, -0.980469, 0, 0.195068, 24.5938, -6, -65.1875);
|
||||
INSERT INTO `gameobjects` VALUES (93, 'lobby', 'ob_0102_0034', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.980469, 0, 0.195068, -24.5938, -6, -65.1875);
|
||||
INSERT INTO `gameobjects` VALUES (94, 'lobby', 'ob_0100_0200', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, 0, -5.77734, -22.5);
|
||||
INSERT INTO `gameobjects` VALUES (95, 'lobby', 'ob_0100_0101', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, 0, -1.29785, -99.375);
|
||||
INSERT INTO `gameobjects` VALUES (96, 'lobby', 'ob_0102_0119', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, 0, 0, -135);
|
||||
INSERT INTO `gameobjects` VALUES (97, 'lobby', 'ob_0102_0128', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, 0, 0, -135);
|
||||
INSERT INTO `gameobjects` VALUES (98, 'lobby', 'ob_0100_0121', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, 0, 0, -135);
|
||||
INSERT INTO `gameobjects` VALUES (99, 'lobby', 'ob_0100_0016', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, -0.980469, 0, 0.195068, 24.5938, -6, -65.1875);
|
||||
INSERT INTO `gameobjects` VALUES (100, 'lobby', 'ob_0100_0018', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.980469, 0, 0.195068, -24.5938, -6, -65.1875);
|
||||
INSERT INTO `gameobjects` VALUES (101, 'lobby', 'ob_0100_0200', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, 0, -5.77734, -22.5);
|
||||
INSERT INTO `gameobjects` VALUES (102, 'lobby', 'ob_0100_0101', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, 0, -1.29785, -99.375);
|
||||
INSERT INTO `gameobjects` VALUES (103, 'lobby', 'ob_0100_0119', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, 0, 0, -135);
|
||||
INSERT INTO `gameobjects` VALUES (104, 'lobby', 'ob_0102_0128', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, 0, 0, -135);
|
||||
INSERT INTO `gameobjects` VALUES (105, 'lobby', 'oa_sonic_manager', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, 0, 0, -135);
|
||||
INSERT INTO `gameobjects` VALUES (106, 'lobby', 'ob_0100_0112', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, 0, 0, -135);
|
||||
INSERT INTO `gameobjects` VALUES (107, 'lobby', 'ob_0100_0115', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, -0.980469, 0, 0.195068, 24.5938, -6, -65.1875);
|
||||
INSERT INTO `gameobjects` VALUES (108, 'lobby', 'ob_0100_0115', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.980469, 0, 0.195068, -24.5938, -6, -65.1875);
|
||||
INSERT INTO `gameobjects` VALUES (109, 'lobby', 'ob_0100_0200', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, 0, -5.77734, -22.5);
|
||||
INSERT INTO `gameobjects` VALUES (110, 'lobby', 'ob_0100_0101', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, 0, -1.29785, -99.375);
|
||||
INSERT INTO `gameobjects` VALUES (111, 'lobby', 'ob_0100_0114', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0.0279388, 0.887207, -0.0542297, 0.457031, 22.3906, 8.79688, -104.688);
|
||||
INSERT INTO `gameobjects` VALUES (112, 'lobby', 'ob_0100_0114', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0.0296021, 0.733398, -0.0320129, 0.677734, 25.0938, 4.89844, -136.5);
|
||||
INSERT INTO `gameobjects` VALUES (113, 'lobby', 'ob_0100_0113', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 1, 0, 0, 0, 0, -109.5);
|
||||
INSERT INTO `gameobjects` VALUES (114, 'lobby', 'ob_0100_0114', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.976074, 0, 0.216431, 48.1875, -0.5, -84.25);
|
||||
INSERT INTO `gameobjects` VALUES (115, 'lobby', 'ob_0100_0114', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.886719, 0, 0.46167, 67.375, -0.5, -69.75);
|
||||
INSERT INTO `gameobjects` VALUES (116, 'lobby', 'ob_0100_0114', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0.0279388, -0.887207, 0.0542297, 0.457031, -22.3906, 8.79688, -104.688);
|
||||
INSERT INTO `gameobjects` VALUES (117, 'lobby', 'ob_0100_0114', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0.0296021, -0.733398, 0.0320129, 0.677734, -25.0938, 4.89844, -136.5);
|
||||
INSERT INTO `gameobjects` VALUES (118, 'lobby', 'ob_0100_0114', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.525879, 0, 0.850098, 50.5938, 13.5, -105.188);
|
||||
INSERT INTO `gameobjects` VALUES (119, 'lobby', 'ob_0100_0114', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, -0.525879, 0, 0.850098, -50.5938, 13.5, -105.188);
|
||||
INSERT INTO `gameobjects` VALUES (120, 'lobby', 'ob_0100_0117', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, 0, 0, -135);
|
||||
INSERT INTO `gameobjects` VALUES (121, 'lobby', 'ob_0102_0128', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, 0, 0, -135);
|
||||
INSERT INTO `gameobjects` VALUES (122, 'lobby', 'ob_0100_0028', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, -0.422607, 0, 0.90625, -59, 18.2969, -149);
|
||||
INSERT INTO `gameobjects` VALUES (123, 'lobby', 'ob_0100_0027', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.382568, 0, 0.923828, 2.29883, 16.1875, -160);
|
||||
INSERT INTO `gameobjects` VALUES (124, 'lobby', 'ob_0100_0027', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, -0.382568, 0, 0.923828, -2.29883, 18.1875, -155);
|
||||
INSERT INTO `gameobjects` VALUES (125, 'lobby', 'ob_0100_0028', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, -53.6875, 18.3438, -128.625);
|
||||
INSERT INTO `gameobjects` VALUES (126, 'lobby', 'ob_0100_0027', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, 53.6875, 18.3438, -128.625);
|
||||
INSERT INTO `gameobjects` VALUES (127, 'lobby', 'ob_0100_0028', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, -0.382568, 0, 0.923828, 2.29883, 18.1875, -155);
|
||||
INSERT INTO `gameobjects` VALUES (128, 'lobby', 'ob_0100_0028', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, -0.422607, 0, 0.90625, 50, 18.2969, -125.688);
|
||||
INSERT INTO `gameobjects` VALUES (129, 'lobby', 'ob_0100_0028', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, 55.125, 18.3438, -152.25);
|
||||
INSERT INTO `gameobjects` VALUES (130, 'lobby', 'ob_0100_0028', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.382568, 0, 0.923828, -2.29883, 16.1875, -160);
|
||||
INSERT INTO `gameobjects` VALUES (131, 'lobby', 'ob_0100_0027', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, 20, 18.1875, -132.5);
|
||||
INSERT INTO `gameobjects` VALUES (132, 'lobby', 'ob_0100_0028', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, -0.422607, 0, 0.90625, 58, 18.2969, -132);
|
||||
INSERT INTO `gameobjects` VALUES (133, 'lobby', 'ob_0100_0027', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.422607, 0, 0.90625, 59, 18.2969, -149);
|
||||
INSERT INTO `gameobjects` VALUES (134, 'lobby', 'ob_0100_0028', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, -20, 18.1875, -132.5);
|
||||
INSERT INTO `gameobjects` VALUES (135, 'lobby', 'ob_0100_0028', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.382568, 0, 0.923828, -2.29883, 19.7969, -150);
|
||||
INSERT INTO `gameobjects` VALUES (136, 'lobby', 'ob_0100_0027', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, -55.125, 18.3438, -152.25);
|
||||
INSERT INTO `gameobjects` VALUES (137, 'lobby', 'ob_0100_0027', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.422607, 0, 0.90625, -50, 18.2969, -125.688);
|
||||
INSERT INTO `gameobjects` VALUES (138, 'lobby', 'ob_0100_0028', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, -0.422607, 0, 0.90625, -51.5, 18.2969, -155.5);
|
||||
INSERT INTO `gameobjects` VALUES (139, 'lobby', 'ob_0100_0028', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, 25, 16.1875, -132.5);
|
||||
INSERT INTO `gameobjects` VALUES (140, 'lobby', 'ob_0100_0027', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, -25, 16.1875, -132.5);
|
||||
INSERT INTO `gameobjects` VALUES (141, 'lobby', 'ob_0100_0027', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.382568, 0, 0.923828, 2.29883, 19.7969, -150);
|
||||
INSERT INTO `gameobjects` VALUES (142, 'lobby', 'ob_0100_0027', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.422607, 0, 0.90625, -58, 18.2969, -132);
|
||||
INSERT INTO `gameobjects` VALUES (143, 'lobby', 'ob_0100_0027', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.422607, 0, 0.90625, 51.5, 18.2969, -155.5);
|
||||
INSERT INTO `gameobjects` VALUES (144, 'lobby', 'ob_0100_0200', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, 0, -5.77734, -22.5);
|
||||
INSERT INTO `gameobjects` VALUES (145, 'lobby', 'ob_0100_0101', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, 0, -1.2998, -99.375);
|
||||
INSERT INTO `gameobjects` VALUES (146, 'lobby', 'ob_0100_0021', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.707031, 0, 0.707031, 47, 21.5, -107.5);
|
||||
INSERT INTO `gameobjects` VALUES (147, 'lobby', 'ob_0100_0021', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.707031, 0, 0.707031, 55, 18, -140.5);
|
||||
INSERT INTO `gameobjects` VALUES (148, 'lobby', 'ob_0100_0021', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.707031, 0, 0.707031, -15, 19.7969, -132.5);
|
||||
INSERT INTO `gameobjects` VALUES (149, 'lobby', 'ob_0100_0021', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, 15, 19.7969, -132.5);
|
||||
INSERT INTO `gameobjects` VALUES (150, 'lobby', 'ob_0100_0021', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.707031, 0, 0.707031, -47, 21.5, -107.5);
|
||||
INSERT INTO `gameobjects` VALUES (151, 'lobby', 'ob_0100_0021', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.707031, 0, 0.707031, -55, 18, -140.5);
|
||||
INSERT INTO `gameobjects` VALUES (152, 'lobby', 'ob_0100_0021', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.707031, 0, 0.707031, 55, 18, -140.5);
|
||||
INSERT INTO `gameobjects` VALUES (153, 'lobby', 'ob_0100_0006', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.980469, 0, 0.195068, -24.5938, -6, -65.1875);
|
||||
INSERT INTO `gameobjects` VALUES (154, 'lobby', 'ob_0100_0006', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, -0.980469, 0, 0.195068, 24.5938, -6, -65.1875);
|
||||
INSERT INTO `gameobjects` VALUES (155, 'lobby', 'ob_0100_0005', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, 0, 0, -135);
|
||||
INSERT INTO `gameobjects` VALUES (156, 'lobby', 'ob_0100_0025', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.948242, 0, 0.317139, 63.5, -5.5, -52.5);
|
||||
INSERT INTO `gameobjects` VALUES (157, 'lobby', 'ob_0100_0025', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.199219, 0, 0.979492, 30.5, 14.2969, -150);
|
||||
INSERT INTO `gameobjects` VALUES (158, 'lobby', 'ob_0100_0025', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.130493, 0, 0.991211, 33, 14.2969, -144);
|
||||
INSERT INTO `gameobjects` VALUES (159, 'lobby', 'ob_0100_0025', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.948242, 0, 0.317139, 58, -5.5, -45);
|
||||
INSERT INTO `gameobjects` VALUES (160, 'lobby', 'ob_0100_0025', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.446045, 0, 0.894531, 40, -5.79688, -39.5);
|
||||
INSERT INTO `gameobjects` VALUES (161, 'lobby', 'ob_0100_0025', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, -0.130493, 0, 0.991211, 33, 14.2969, -126);
|
||||
INSERT INTO `gameobjects` VALUES (162, 'lobby', 'ob_0100_0025', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.446045, 0, 0.894531, 35, -5.79688, -43.5);
|
||||
INSERT INTO `gameobjects` VALUES (163, 'lobby', 'ob_0100_0025', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, -0.199219, 0, 0.979492, 30.5, 14.2969, -120);
|
||||
INSERT INTO `gameobjects` VALUES (164, 'lobby', 'ob_0100_0025', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.707031, 0, 0.707031, 5, 0, -110);
|
||||
INSERT INTO `gameobjects` VALUES (165, 'lobby', 'ob_0100_0025', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, -0.948242, 0, 0.317139, -58, -5.5, -45);
|
||||
INSERT INTO `gameobjects` VALUES (166, 'lobby', 'ob_0100_0025', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, -0.948242, 0, 0.317139, -63.5, -5.5, -52.5);
|
||||
INSERT INTO `gameobjects` VALUES (167, 'lobby', 'ob_0100_0025', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.130493, 0, 0.991211, -33, 14.2969, -126);
|
||||
INSERT INTO `gameobjects` VALUES (168, 'lobby', 'ob_0100_0025', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, -0.130493, 0, 0.991211, -33, 14.2969, -144);
|
||||
INSERT INTO `gameobjects` VALUES (169, 'lobby', 'ob_0100_0025', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.199219, 0, 0.979492, -30.5, 14.2969, -120);
|
||||
INSERT INTO `gameobjects` VALUES (170, 'lobby', 'ob_0100_0025', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, -0.446045, 0, 0.894531, -40, -5.79688, -39.5);
|
||||
INSERT INTO `gameobjects` VALUES (171, 'lobby', 'ob_0100_0025', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, -0.446045, 0, 0.894531, -35, -5.79688, -43.5);
|
||||
INSERT INTO `gameobjects` VALUES (172, 'lobby', 'ob_0100_0025', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, -0.199219, 0, 0.979492, -30.5, 14.2969, -150);
|
||||
INSERT INTO `gameobjects` VALUES (173, 'lobby', 'ob_0100_0025', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, -0.707031, 0, 0.707031, -5, 0, -110);
|
||||
INSERT INTO `gameobjects` VALUES (174, 'lobby', 'ob_0100_0120', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, 0, 0, -135);
|
||||
INSERT INTO `gameobjects` VALUES (175, 'lobby', 'ob_0102_0136', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, 0, 0, -135);
|
||||
INSERT INTO `gameobjects` VALUES (176, 'lobby', 'oa_tanabata', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, 0.199951, 3.5, -135);
|
||||
INSERT INTO `gameobjects` VALUES (177, 'lobby', 'oa_tanabata', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, -11.1953, 2, -107.75);
|
||||
INSERT INTO `gameobjects` VALUES (178, 'lobby', 'oa_tanabata', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, -0.300537, 0, 0.953613, -14.5, 2, -100.25);
|
||||
INSERT INTO `gameobjects` VALUES (179, 'lobby', 'oa_tanabata', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, -17.5, 2, -92.6875);
|
||||
INSERT INTO `gameobjects` VALUES (180, 'lobby', 'oa_tanabata', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.499756, 0, 0.865723, 11.2969, 2, -107.562);
|
||||
INSERT INTO `gameobjects` VALUES (181, 'lobby', 'oa_tanabata', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, 14.6953, 2, -100.25);
|
||||
INSERT INTO `gameobjects` VALUES (182, 'lobby', 'oa_tanabata', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, -0.216309, 0, 0.976074, 17.6875, 2, -92.6875);
|
||||
INSERT INTO `gameobjects` VALUES (183, 'lobby', 'ob_0100_0007', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, 0, 0, -135);
|
||||
INSERT INTO `gameobjects` VALUES (184, 'lobby', 'ob_0100_0009', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, -0.980469, 0, 0.195068, 24.5938, -6, -65.1875);
|
||||
INSERT INTO `gameobjects` VALUES (185, 'lobby', 'ob_0100_0009', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.980469, 0, 0.195068, -24.5938, -6, -65.1875);
|
||||
INSERT INTO `gameobjects` VALUES (186, 'lobby', 'ob_0100_0200', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, 0, -5.77734, -22.5);
|
||||
INSERT INTO `gameobjects` VALUES (187, 'lobby', 'ob_0100_0101', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, 0, -1.29785, -99.375);
|
||||
INSERT INTO `gameobjects` VALUES (188, 'lobby', 'ob_0102_0119', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, 0, 0, -135);
|
||||
INSERT INTO `gameobjects` VALUES (189, 'lobby', 'ob_0102_0128', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, 0, 0, -135);
|
||||
INSERT INTO `gameobjects` VALUES (190, 'lobby', 'ob_0100_0010', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, 0, 0, -135);
|
||||
INSERT INTO `gameobjects` VALUES (191, 'lobby', 'ob_0100_0011', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, -0.980469, 0, 0.195068, 24.5938, -6, -65.1875);
|
||||
INSERT INTO `gameobjects` VALUES (192, 'lobby', 'ob_0100_0011', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.980469, 0, 0.195068, -24.5938, -6, -65.1875);
|
||||
INSERT INTO `gameobjects` VALUES (193, 'lobby', 'ob_0100_0101', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, 0, -1.29785, -99.375);
|
||||
INSERT INTO `gameobjects` VALUES (194, 'lobby', 'ob_0100_0200', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, 0, -5.77734, -22.5);
|
||||
INSERT INTO `gameobjects` VALUES (195, 'lobby', 'ob_0102_0128', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, 0, 0, -135);
|
||||
INSERT INTO `gameobjects` VALUES (196, 'lobby', 'ob_0100_0036', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, 15, 19, -135);
|
||||
INSERT INTO `gameobjects` VALUES (197, 'lobby', 'ob_0100_0036', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, -15, 19, -135);
|
||||
INSERT INTO `gameobjects` VALUES (198, 'lobby', 'ob_0100_0036', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, -55, 17.5, -140.5);
|
||||
INSERT INTO `gameobjects` VALUES (199, 'lobby', 'ob_0100_0036', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, -55, 17.5, -163.5);
|
||||
INSERT INTO `gameobjects` VALUES (200, 'lobby', 'ob_0100_0036', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, 55, 17.5, -140.5);
|
||||
INSERT INTO `gameobjects` VALUES (201, 'lobby', 'ob_0100_0036', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, -0.707031, 0, 0.707031, 47, 20.6875, -107.5);
|
||||
INSERT INTO `gameobjects` VALUES (202, 'lobby', 'ob_0100_0036', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.707031, 0, 0.707031, -47, 20.6875, -107.5);
|
||||
INSERT INTO `gameobjects` VALUES (203, 'lobby', 'ob_0100_0036', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, 55, 17.5, -163.5);
|
||||
INSERT INTO `gameobjects` VALUES (204, 'lobby', 'ob_0100_0036', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, 0, 19, -150);
|
||||
INSERT INTO `gameobjects` VALUES (205, 'lobby', 'ob_0100_0101', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, 0, -1.29785, -99.375);
|
||||
INSERT INTO `gameobjects` VALUES (206, 'lobby', 'ob_0100_0035', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 1, 0, 0, 0, -5.77734, -22.5);
|
||||
INSERT INTO `gameobjects` VALUES (207, 'lobby', 'ob_0102_0128', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, 0, 0, -135);
|
||||
INSERT INTO `gameobjects` VALUES (208, 'lobby', 'ob_0100_0034', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, -0.980469, 0, 0.195068, 24.5938, -6, -65.1875);
|
||||
INSERT INTO `gameobjects` VALUES (209, 'lobby', 'ob_0100_0034', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.980469, 0, 0.195068, -24.5938, -6, -65.1875);
|
||||
INSERT INTO `gameobjects` VALUES (210, 'lobby', 'ob_0100_0033', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, 0, 0, -135);
|
||||
INSERT INTO `gameobjects` VALUES (211, 'lobby', 'ob_0100_0012', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, 0, 0, -135);
|
||||
INSERT INTO `gameobjects` VALUES (212, 'lobby', 'ob_0100_0013', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, -0.980469, 0, 0.195068, 24.5938, -6, -65.1875);
|
||||
INSERT INTO `gameobjects` VALUES (213, 'lobby', 'ob_0100_0013', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.980469, 0, 0.195068, -24.5938, -6, -65.1875);
|
||||
INSERT INTO `gameobjects` VALUES (214, 'lobby', 'ob_0100_0200', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, 0, -5.77734, -22.5);
|
||||
INSERT INTO `gameobjects` VALUES (215, 'lobby', 'ob_0100_0101', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, 0, -1.29785, -99.375);
|
||||
INSERT INTO `gameobjects` VALUES (216, 'lobby', 'ob_0102_0128', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, 0, 0, -135);
|
||||
INSERT INTO `gameobjects` VALUES (217, 'lobby', 'ob_0100_0041', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, 0, 0, -135);
|
||||
INSERT INTO `gameobjects` VALUES (218, 'lobby', 'ob_0100_0042', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, -0.980469, 0, 0.195068, 24.5938, -6, -65.1875);
|
||||
INSERT INTO `gameobjects` VALUES (219, 'lobby', 'ob_0100_0042', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.980469, 0, 0.195068, -24.5938, -6, -65.1875);
|
||||
INSERT INTO `gameobjects` VALUES (220, 'lobby', 'ob_0100_0101', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, 0, -1.29785, -99.375);
|
||||
INSERT INTO `gameobjects` VALUES (221, 'lobby', 'ob_0100_0200', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, 0, -5.77734, -22.5);
|
||||
INSERT INTO `gameobjects` VALUES (222, 'lobby', 'ob_0100_0102', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, 0, 0, -135);
|
||||
INSERT INTO `gameobjects` VALUES (223, 'lobby', 'ob_0100_0103', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, 0, 0, -135);
|
||||
INSERT INTO `gameobjects` VALUES (224, 'lobby', 'ob_0100_0045', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, 0, 0, -135);
|
||||
INSERT INTO `gameobjects` VALUES (225, 'lobby', 'ob_0100_0046', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, -0.980469, 0, 0.195068, 24.5938, -6, -65.1875);
|
||||
INSERT INTO `gameobjects` VALUES (226, 'lobby', 'ob_0100_0046', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.980469, 0, 0.195068, -24.5938, -6, -65.1875);
|
||||
INSERT INTO `gameobjects` VALUES (227, 'lobby', 'ob_0100_0200', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, 0, -5.77734, -22.5);
|
||||
INSERT INTO `gameobjects` VALUES (228, 'lobby', 'ob_0100_0101', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, 0, -1.29785, -99.375);
|
||||
INSERT INTO `gameobjects` VALUES (229, 'lobby', 'ob_0100_0104', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, 0, 0, -135);
|
||||
INSERT INTO `gameobjects` VALUES (230, 'lobby', 'ob_0100_0103', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, 0, 0, -135);
|
||||
INSERT INTO `gameobjects` VALUES (231, 'lobby', 'ob_0100_0060', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, 0, 0, -135);
|
||||
INSERT INTO `gameobjects` VALUES (232, 'lobby', 'ob_0100_0061', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, -0.980469, 0, 0.195068, 24.5938, -6, -65.1875);
|
||||
INSERT INTO `gameobjects` VALUES (233, 'lobby', 'ob_0100_0061', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.980469, 0, 0.195068, -24.5938, -6, -65.1875);
|
||||
INSERT INTO `gameobjects` VALUES (234, 'lobby', 'ob_0100_0200', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, 0, -5.77734, -22.5);
|
||||
INSERT INTO `gameobjects` VALUES (235, 'lobby', 'ob_0100_0101', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, 0, -1.29785, -99.375);
|
||||
INSERT INTO `gameobjects` VALUES (236, 'lobby', 'ob_0100_0111', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, 0, 0, -135);
|
||||
INSERT INTO `gameobjects` VALUES (237, 'lobby', 'ob_0102_0128', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, 0, 0, -135);
|
||||
INSERT INTO `gameobjects` VALUES (238, 'lobby', 'ob_0100_0050', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, 0, 0, -135);
|
||||
INSERT INTO `gameobjects` VALUES (239, 'lobby', 'ob_0100_0051', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, -0.980469, 0, 0.195068, 24.5938, -6, -65.1875);
|
||||
INSERT INTO `gameobjects` VALUES (240, 'lobby', 'ob_0100_0051', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.980469, 0, 0.195068, -24.5938, -6, -65.1875);
|
||||
INSERT INTO `gameobjects` VALUES (241, 'lobby', 'ob_0100_0200', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, 0, -5.77734, -22.5);
|
||||
INSERT INTO `gameobjects` VALUES (242, 'lobby', 'ob_0100_0101', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, 0, -1.29785, -99.375);
|
||||
INSERT INTO `gameobjects` VALUES (243, 'lobby', 'ob_0100_0052', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, -55, 17.5, -140.5);
|
||||
INSERT INTO `gameobjects` VALUES (244, 'lobby', 'ob_0100_0052', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.865723, 0, 0.5, -55, 17.5, -163.5);
|
||||
INSERT INTO `gameobjects` VALUES (245, 'lobby', 'ob_0100_0052', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.707031, 0, 0.707031, -47, 16, -107.5);
|
||||
INSERT INTO `gameobjects` VALUES (246, 'lobby', 'ob_0100_0052', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.707031, 0, 0.707031, 0, 19, -150);
|
||||
INSERT INTO `gameobjects` VALUES (247, 'lobby', 'ob_0100_0052', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.865723, 0, 0.5, 55, 17.5, -163.5);
|
||||
INSERT INTO `gameobjects` VALUES (248, 'lobby', 'ob_0100_0052', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, 15, 19, -135);
|
||||
INSERT INTO `gameobjects` VALUES (249, 'lobby', 'ob_0100_0052', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 1, 0, 0, -15, 19, -135);
|
||||
INSERT INTO `gameobjects` VALUES (250, 'lobby', 'ob_0100_0052', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, 55, 17.5, -140.5);
|
||||
INSERT INTO `gameobjects` VALUES (251, 'lobby', 'ob_0100_0052', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, -0.707031, 0, 0.707031, 47, 16, -107.5);
|
||||
INSERT INTO `gameobjects` VALUES (252, 'lobby', 'ob_0100_0052', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.499756, 0, 0.865723, -55, 15.5, -152);
|
||||
INSERT INTO `gameobjects` VALUES (253, 'lobby', 'ob_0100_0052', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.499756, 0, 0.865723, 55, 15.5, -152);
|
||||
INSERT INTO `gameobjects` VALUES (254, 'lobby', 'ob_0100_0105', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, 0, 0, -135);
|
||||
INSERT INTO `gameobjects` VALUES (255, 'lobby', 'ob_0102_0128', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, 0, 0, -135);
|
||||
INSERT INTO `gameobjects` VALUES (256, 'lobby', 'ob_0100_0053', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, 0, 0, -135);
|
||||
INSERT INTO `gameobjects` VALUES (257, 'lobby', 'ob_0100_0054', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, -0.980469, 0, 0.195068, 24.5938, -6, -65.1875);
|
||||
INSERT INTO `gameobjects` VALUES (258, 'lobby', 'ob_0100_0054', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.980469, 0, 0.195068, -24.5938, -6, -65.1875);
|
||||
INSERT INTO `gameobjects` VALUES (259, 'lobby', 'ob_0100_0200', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, 0, -5.77734, -22.5);
|
||||
INSERT INTO `gameobjects` VALUES (260, 'lobby', 'ob_0100_0101', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, 0, -1.29785, -99.375);
|
||||
INSERT INTO `gameobjects` VALUES (261, 'lobby', 'ob_0100_0055', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, -55, 17.5, -140.5);
|
||||
INSERT INTO `gameobjects` VALUES (262, 'lobby', 'ob_0100_0055', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.865723, 0, 0.5, -55, 17.5, -163.5);
|
||||
INSERT INTO `gameobjects` VALUES (263, 'lobby', 'ob_0100_0055', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.707031, 0, 0.707031, -47, 16, -107.5);
|
||||
INSERT INTO `gameobjects` VALUES (264, 'lobby', 'ob_0100_0055', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.707031, 0, 0.707031, 0, 19, -150);
|
||||
INSERT INTO `gameobjects` VALUES (265, 'lobby', 'ob_0100_0055', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.865723, 0, 0.5, 55, 17.5, -163.5);
|
||||
INSERT INTO `gameobjects` VALUES (266, 'lobby', 'ob_0100_0055', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, 15, 19, -135);
|
||||
INSERT INTO `gameobjects` VALUES (267, 'lobby', 'ob_0100_0055', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 1, 0, 0, -15, 19, -135);
|
||||
INSERT INTO `gameobjects` VALUES (268, 'lobby', 'ob_0100_0055', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, 55, 17.5, -140.5);
|
||||
INSERT INTO `gameobjects` VALUES (269, 'lobby', 'ob_0100_0055', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, -0.707031, 0, 0.707031, 47, 16, -107.5);
|
||||
INSERT INTO `gameobjects` VALUES (270, 'lobby', 'ob_0100_0055', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.499756, 0, 0.865723, -55, 15.5, -152);
|
||||
INSERT INTO `gameobjects` VALUES (271, 'lobby', 'ob_0100_0055', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.499756, 0, 0.865723, 55, 15.5, -152);
|
||||
INSERT INTO `gameobjects` VALUES (272, 'lobby', 'ob_0100_0107', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, 0, 0, -135);
|
||||
INSERT INTO `gameobjects` VALUES (273, 'lobby', 'ob_0102_0128', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, 0, 0, -135);
|
||||
INSERT INTO `gameobjects` VALUES (274, 'lobby', 'ob_0100_0056', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, 0, 0, -135);
|
||||
INSERT INTO `gameobjects` VALUES (275, 'lobby', 'ob_0100_0057', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, -0.980469, 0, 0.195068, 24.5938, -6, -65.1875);
|
||||
INSERT INTO `gameobjects` VALUES (276, 'lobby', 'ob_0100_0057', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.980469, 0, 0.195068, -24.5938, -6, -65.1875);
|
||||
INSERT INTO `gameobjects` VALUES (277, 'lobby', 'ob_0100_0101', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, 0, -1.29785, -99.375);
|
||||
INSERT INTO `gameobjects` VALUES (278, 'lobby', 'ob_0100_0200', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, 0, -5.77734, -22.5);
|
||||
INSERT INTO `gameobjects` VALUES (279, 'lobby', 'ob_0102_0119', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, 0, 0, -135);
|
||||
INSERT INTO `gameobjects` VALUES (280, 'lobby', 'ob_0102_0128', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, 0, 0, -135);
|
||||
INSERT INTO `gameobjects` VALUES (281, 'lobby', 'ob_0100_0008', 0x10050000000E0400020000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.707031, 0, 0.707031, -73.0625, -1, -220);
|
||||
INSERT INTO `gameobjects` VALUES (282, 'lobby', 'ob_0100_0008', 0x10050000000E0400020000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.754395, 0, 0.655762, 31.3906, 0, -140.375);
|
||||
INSERT INTO `gameobjects` VALUES (283, 'lobby', 'ob_0100_0008', 0x10050000000E0400020000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, -0.707031, 0, 0.707031, 73.0625, -1, -220);
|
||||
INSERT INTO `gameobjects` VALUES (284, 'lobby', 'ob_0100_0008', 0x10050000000E0400020000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, -0.190674, 0, 0.981445, -16.5, -3, -89.5);
|
||||
INSERT INTO `gameobjects` VALUES (285, 'lobby', 'ob_0100_0008', 0x10050000000E0400020000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, -0.62207, 0, 0.782227, -31.1875, 0, -128.375);
|
||||
INSERT INTO `gameobjects` VALUES (286, 'lobby', 'ob_0100_0008', 0x10050000000E0400020000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, -0.808594, 0, 0.587402, -30.2969, 0, -144.75);
|
||||
INSERT INTO `gameobjects` VALUES (287, 'lobby', 'ob_0100_0008', 0x10050000000E0400020000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.808594, 0, 0.587402, 30.2969, 0, -144.75);
|
||||
INSERT INTO `gameobjects` VALUES (288, 'lobby', 'ob_0100_0008', 0x10050000000E0400020000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.687988, 0, 0.725098, 31.8906, 0, -133.5);
|
||||
INSERT INTO `gameobjects` VALUES (289, 'lobby', 'ob_0100_0008', 0x10050000000E0400020000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.62207, 0, 0.782227, 31.1875, 0, -128.375);
|
||||
INSERT INTO `gameobjects` VALUES (290, 'lobby', 'ob_0100_0008', 0x10050000000E0400020000000000000000000000400000B22C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, -0.687988, 0, 0.725098, -31.8906, 0, -133.5);
|
||||
INSERT INTO `gameobjects` VALUES (291, 'lobby', 'ob_0100_0008', 0x10050000000E0400020000000000000000000000400000B22C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.190674, 0, 0.981445, 16.5, -3, -89.5);
|
||||
INSERT INTO `gameobjects` VALUES (292, 'lobby', 'ob_0100_0008', 0x10050000000E0400020000000000000000000000400000B22C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, -0.754395, 0, 0.655762, -31.3906, 0, -140.375);
|
||||
INSERT INTO `gameobjects` VALUES (293, 'lobby', 'ob_0102_0127', 0x10050000000E0400000000000000000000000000400000B22C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, 0, 0, -135);
|
||||
INSERT INTO `gameobjects` VALUES (294, 'lobby', 'ob_0102_0034', 0x10050000000E0400000000000000000000000000400000B22C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, -0.980469, 0, 0.195068, 24.5938, -6, -65.1875);
|
||||
INSERT INTO `gameobjects` VALUES (295, 'lobby', 'ob_0102_0034', 0x10050000000E0400000000000000000000000000400000B22C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.980469, 0, 0.195068, -24.5938, -6, -65.1875);
|
||||
INSERT INTO `gameobjects` VALUES (296, 'lobby', 'ob_0100_0200', 0x10050000000E0400000000000000000000000000400000B22C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, 0, -5.77734, -22.5);
|
||||
INSERT INTO `gameobjects` VALUES (297, 'lobby', 'ob_0100_0101', 0x10050000000E0400000000000000000000000000400000B22C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, 0, -1.29785, -99.375);
|
||||
INSERT INTO `gameobjects` VALUES (298, 'lobby', 'ob_0102_0119', 0x10050000000E0400000000000000000000000000400000B22C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, 0, 0, -135);
|
||||
INSERT INTO `gameobjects` VALUES (299, 'lobby', 'ob_0102_0128', 0x10050000000E0400000000000000000000000000400000B22C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, 0, 0, -135);
|
||||
INSERT INTO `gameobjects` VALUES (300, 'lobby', 'ob_0100_0095', 0x10050000000E0400020000000000000000000000400000B22C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, 0, 0, -135);
|
||||
INSERT INTO `gameobjects` VALUES (301, 'lobby', 'ob_0100_0096', 0x10050000000E0400020000000000000000000000400000B22C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, -0.980469, 0, 0.195068, 24.5938, -6, -65.1875);
|
||||
INSERT INTO `gameobjects` VALUES (302, 'lobby', 'ob_0100_0123', 0x10050000000E0400020000000000000000000000400000B22C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.980469, 0, 0.195068, -24.5938, -6, -65.1875);
|
||||
INSERT INTO `gameobjects` VALUES (303, 'lobby', 'ob_0102_0119', 0x10050000000E0400020000000000000000000000400000B22C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, 0, 0, -135);
|
||||
INSERT INTO `gameobjects` VALUES (304, 'lobby', 'ob_0102_0128', 0x10050000000E0400020000000000000000000000400000B22C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, 0, 0, -135);
|
||||
INSERT INTO `gameobjects` VALUES (305, 'lobby', 'ob_0100_0200', 0x10050000000E0400020000000000000000000000400000B22C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, 0, -5.77734, -22.5);
|
||||
INSERT INTO `gameobjects` VALUES (306, 'lobby', 'ob_0100_0101', 0x10050000000E0400020000000000000000000000400000B22C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, 0, -1.29785, -99.375);
|
||||
INSERT INTO `gameobjects` VALUES (307, 'lobby', 'ob_0104_0016', 0x10050000000E0400020000000000000000000000400000B22C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, 0, 0, -182);
|
||||
INSERT INTO `gameobjects` VALUES (308, 'lobby', 'ob_0102_0127', 0x10050000000E0400000000000000000000000000400000B22C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, 0, 0, -135);
|
||||
INSERT INTO `gameobjects` VALUES (309, 'lobby', 'ob_0102_0034', 0x10050000000E0400000000000000000000000000400000B22C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, -0.980469, 0, 0.195068, 24.5938, -6, -65.1875);
|
||||
INSERT INTO `gameobjects` VALUES (310, 'lobby', 'ob_0102_0034', 0x10050000000E0400000000000000000000000000400000B22C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.980469, 0, 0.195068, -24.5938, -6, -65.1875);
|
||||
INSERT INTO `gameobjects` VALUES (311, 'lobby', 'ob_0100_0200', 0x10050000000E0400000000000000000000000000400000B22C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, 0, -5.77734, -22.5);
|
||||
INSERT INTO `gameobjects` VALUES (312, 'lobby', 'ob_0100_0101', 0x10050000000E0400000000000000000000000000400000B22C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, 0, -1.29785, -99.375);
|
||||
INSERT INTO `gameobjects` VALUES (313, 'lobby', 'ob_0102_0119', 0x10050000000E0400000000000000000000000000400000B22C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, 0, 0, -135);
|
||||
INSERT INTO `gameobjects` VALUES (314, 'lobby', 'ob_0102_0128', 0x10050000000E0400000000000000000000000000400000B22C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, 0, 0, -135);
|
||||
INSERT INTO `gameobjects` VALUES (315, 'lobby', 'ob_9900_0418', 0x1006000000028A3D020000000000000000000000400040B62C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D000000010000003400000001000000, 0, 0.250244, 0, 0.967773, -22, -6.79688, -44);
|
||||
INSERT INTO `gameobjects` VALUES (316, 'lobby', 'ob_9900_0418', 0x1006000000028A3D020000000000000000000000400040B62C000000FFFFFFFF29000000010000002B000000010000002A000000010000002D000000010000003400000003000000, 0, 0.250244, 0, 0.967773, 22, -6.79688, -44);
|
||||
INSERT INTO `gameobjects` VALUES (317, 'lobby', 'ob_9900_0416', 0x1006000100A1066D020000000000000000000000400040E42C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D000000010000003B00000000000000110000000000000000000000, 0, 0, 0, 1, 0, -6, -43);
|
||||
INSERT INTO `gameobjects` VALUES (318, 'lobby', 'ob_0102_0034', 0x10050000000E0400000000000000000000000000400000B22C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.134766, 0, 0.990723, 24.75, 2.39844, 170);
|
||||
INSERT INTO `gameobjects` VALUES (319, 'lobby', 'ob_0102_0034', 0x10050000000E0400000000000000000000000000400000B22C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, -0.134766, 0, 0.990723, -24.75, 2.39844, 170);
|
||||
INSERT INTO `gameobjects` VALUES (320, 'lobby', 'ob_0100_0017', 0x10050000000E0400000000000000000000000000400000B22C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.134766, 0, 0.990723, 24.75, 2.39844, 170);
|
||||
INSERT INTO `gameobjects` VALUES (321, 'lobby', 'ob_0100_0019', 0x10050000000E0400000000000000000000000000400000B22C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, -0.134766, 0, 0.990723, -24.75, 2.39844, 170);
|
||||
INSERT INTO `gameobjects` VALUES (322, 'lobby', 'ob_0100_0031', 0x10050000000E0400000000000000000000000000400000B22C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.134766, 0, 0.990723, 24.75, 2.39844, 170);
|
||||
INSERT INTO `gameobjects` VALUES (323, 'lobby', 'ob_0100_0031', 0x10050000000E0400000000000000000000000000400000B22C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, -0.134766, 0, 0.990723, -24.75, 2.39844, 170);
|
||||
INSERT INTO `gameobjects` VALUES (324, 'lobby', 'ob_0100_0006', 0x10050000000E0400000000000000000000000000400000B22C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.134766, 0, 0.990723, 24.75, 2.39844, 170);
|
||||
INSERT INTO `gameobjects` VALUES (325, 'lobby', 'ob_0100_0006', 0x10050000000E0400000000000000000000000000400000B22C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, -0.134766, 0, 0.990723, -24.75, 2.39844, 170);
|
||||
INSERT INTO `gameobjects` VALUES (326, 'lobby', 'ob_0100_0009', 0x10050000000E0400000000000000000000000000400000B22C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.134766, 0, 0.990723, 24.75, 2.39844, 170);
|
||||
INSERT INTO `gameobjects` VALUES (327, 'lobby', 'ob_0100_0009', 0x10050000000E0400000000000000000000000000400000B22C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, -0.134766, 0, 0.990723, -24.75, 2.39844, 170);
|
||||
INSERT INTO `gameobjects` VALUES (328, 'lobby', 'ob_0100_0011', 0x10050000000E0400000000000000000000000000400000B22C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.134766, 0, 0.990723, 24.75, 2.39844, 170);
|
||||
INSERT INTO `gameobjects` VALUES (329, 'lobby', 'ob_0100_0011', 0x10050000000E0400000000000000000000000000400000B22C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, -0.134766, 0, 0.990723, -24.75, 2.39844, 170);
|
||||
INSERT INTO `gameobjects` VALUES (330, 'lobby', 'ob_0100_0034', 0x10050000000E0400000000000000000000000000400000B22C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.134766, 0, 0.990723, 24.75, 2.39844, 170);
|
||||
INSERT INTO `gameobjects` VALUES (331, 'lobby', 'ob_0100_0034', 0x10050000000E0400000000000000000000000000400000B22C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, -0.134766, 0, 0.990723, -24.75, 2.39844, 170);
|
||||
INSERT INTO `gameobjects` VALUES (332, 'lobby', 'ob_0100_0013', 0x10050000000E0400000000000000000000000000400000B22C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.134766, 0, 0.990723, 24.75, 2.39844, 170);
|
||||
INSERT INTO `gameobjects` VALUES (333, 'lobby', 'ob_0100_0013', 0x10050000000E0400000000000000000000000000400000B22C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, -0.134766, 0, 0.990723, -24.75, 2.39844, 170);
|
||||
INSERT INTO `gameobjects` VALUES (334, 'lobby', 'ob_0100_0042', 0x10050000000E0400000000000000000000000000400000B22C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.134766, 0, 0.990723, 24.75, 2.39844, 170);
|
||||
INSERT INTO `gameobjects` VALUES (335, 'lobby', 'ob_0100_0042', 0x10050000000E0400000000000000000000000000400000B22C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, -0.134766, 0, 0.990723, -24.75, 2.39844, 170);
|
||||
INSERT INTO `gameobjects` VALUES (336, 'lobby', 'ob_0100_0046', 0x10050000000E0400000000000000000000000000400000B22C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.134766, 0, 0.990723, 24.75, 2.39844, 170);
|
||||
INSERT INTO `gameobjects` VALUES (337, 'lobby', 'ob_0100_0046', 0x10050000000E0400000000000000000000000000400000B22C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, -0.134766, 0, 0.990723, -24.75, 2.39844, 170);
|
||||
INSERT INTO `gameobjects` VALUES (338, 'lobby', 'ob_0102_0034', 0x10050000000E0400000000000000000000000000400000B22C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.134766, 0, 0.990723, 24.75, 2.39844, 170);
|
||||
INSERT INTO `gameobjects` VALUES (339, 'lobby', 'ob_0102_0034', 0x10050000000E0400000000000000000000000000400000B22C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, -0.134766, 0, 0.990723, -24.75, 2.39844, 170);
|
||||
INSERT INTO `gameobjects` VALUES (340, 'lobby', 'ob_0100_0054', 0x10050000000E0400000000000000000000000000400000B22C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.134766, 0, 0.990723, 24.75, 2.39844, 170);
|
||||
INSERT INTO `gameobjects` VALUES (341, 'lobby', 'ob_0100_0054', 0x10050000000E0400000000000000000000000000400000B22C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, -0.134766, 0, 0.990723, -24.75, 2.39844, 170);
|
||||
INSERT INTO `gameobjects` VALUES (342, 'lobby', 'ob_0100_0051', 0x10050000000E0400000000000000000000000000400000B22C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.134766, 0, 0.990723, 24.75, 2.39844, 170);
|
||||
INSERT INTO `gameobjects` VALUES (343, 'lobby', 'ob_0100_0051', 0x10050000000E0400000000000000000000000000400000B22C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, -0.134766, 0, 0.990723, -24.75, 2.39844, 170);
|
||||
INSERT INTO `gameobjects` VALUES (344, 'lobby', 'ob_0100_0057', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.134766, 0, 0.990723, 24.75, 2.39844, 170);
|
||||
INSERT INTO `gameobjects` VALUES (345, 'lobby', 'ob_0100_0057', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, -0.134766, 0, 0.990723, -24.75, 2.39844, 170);
|
||||
INSERT INTO `gameobjects` VALUES (346, 'lobby', 'ob_0102_0034', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.134766, 0, 0.990723, 24.75, 2.39844, 170);
|
||||
INSERT INTO `gameobjects` VALUES (347, 'lobby', 'ob_0102_0034', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, -0.134766, 0, 0.990723, -24.75, 2.39844, 170);
|
||||
INSERT INTO `gameobjects` VALUES (348, 'lobby', 'ob_0100_0122', 0x10050000000E0400020000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.134766, 0, 0.990723, 24.75, 2.39844, 170);
|
||||
INSERT INTO `gameobjects` VALUES (349, 'lobby', 'ob_0100_0097', 0x10050000000E0400020000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, -0.134766, 0, 0.990723, -24.75, 2.39844, 170);
|
||||
INSERT INTO `gameobjects` VALUES (350, 'lobby', 'ob_0104_0016', 0x10050000000E0400020000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, 0, 2.29883, 210.5);
|
||||
INSERT INTO `gameobjects` VALUES (351, 'lobby', 'ob_0102_0118', 0x10050000000E0400020000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, 0, 0, 135);
|
||||
INSERT INTO `gameobjects` VALUES (352, 'lobby', 'ob_0102_0034', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.134766, 0, 0.990723, 24.75, 2.39844, 170);
|
||||
INSERT INTO `gameobjects` VALUES (353, 'lobby', 'ob_0102_0034', 0x10050000000E0400000000000000000000000000400000392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, -0.134766, 0, 0.990723, -24.75, 2.39844, 170);
|
||||
INSERT INTO `gameobjects` VALUES (354, 'lobby', 'ob_0102_0004', 0x10050000000E0400020000000000000000000000400100392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, -0.27124, 0, 0.962402, -21.375, 0, -98.75);
|
||||
INSERT INTO `gameobjects` VALUES (355, 'lobby', 'oa_sit_point', 0x1005000002A1066D020000000000000000000000400000E42C000000FFFFFFFF29000000010000002B00000001000000320000000100000034000000010000000900000000000000000000000000000000000000620100000000000006000000, 0, -0.27124, 0, 0.962402, -21.375, 0, -98.75);
|
||||
INSERT INTO `gameobjects` VALUES (356, 'lobby', 'ob_0102_0004', 0x10050000000E0400020000000000000000000000400100392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, -0.27124, 0, 0.962402, -22.6562, 0, -99.5625);
|
||||
INSERT INTO `gameobjects` VALUES (357, 'lobby', 'oa_sit_point', 0x1005000002A1066D020000000000000000000000400000E42C000000FFFFFFFF29000000010000002B00000001000000320000000100000034000000010000000900000000000000000000000000000000000000640100000000000006000000, 0, -0.27124, 0, 0.962402, -22.6562, 0, -99.5625);
|
||||
INSERT INTO `gameobjects` VALUES (358, 'lobby', 'ob_0102_0006', 0x10050000000E0400020000000000000000000000400100392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, -0.27124, 0, 0.962402, -23.9219, 0, -100.312);
|
||||
INSERT INTO `gameobjects` VALUES (359, 'lobby', 'oa_sit_point', 0x1005000002A1066D020000000000000000000000400000E42C000000FFFFFFFF29000000010000002B00000001000000320000000100000034000000010000000900000000000000000000000000000000000000660100000000000006000000, 0, -0.27124, 0, 0.962402, -23.9219, 0, -100.312);
|
||||
INSERT INTO `gameobjects` VALUES (360, 'lobby', 'ob_0102_0005', 0x10050000000E0400020000000000000000000000400100392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, -0.27124, 0, 0.962402, -20.0938, 0, -98);
|
||||
INSERT INTO `gameobjects` VALUES (361, 'lobby', 'oa_sit_point', 0x1005000002A1066D020000000000000000000000400000E42C000000FFFFFFFF29000000010000002B00000001000000320000000100000034000000010000000900000000000000000000000000000000000000680100000000000006000000, 0, -0.27124, 0, 0.962402, -20.0938, 0, -98);
|
||||
INSERT INTO `gameobjects` VALUES (362, 'lobby', 'ob_0102_0004', 0x10050000000E0400020000000000000000000000400100392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.27124, 0, 0.962402, 22.6562, 0, -99.5625);
|
||||
INSERT INTO `gameobjects` VALUES (363, 'lobby', 'oa_sit_point', 0x1005000002A1066D020000000000000000000000400000E42C000000FFFFFFFF29000000010000002B000000010000003200000001000000340000000100000009000000000000000000000000000000000000006A0100000000000006000000, 0, 0.27124, 0, 0.962402, 22.6562, 0, -99.5625);
|
||||
INSERT INTO `gameobjects` VALUES (364, 'lobby', 'ob_0102_0005', 0x10050000000E0400020000000000000000000000400100392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.27124, 0, 0.962402, 23.9219, 0, -100.312);
|
||||
INSERT INTO `gameobjects` VALUES (365, 'lobby', 'oa_sit_point', 0x1005000002A1066D020000000000000000000000400000E42C000000FFFFFFFF29000000010000002B000000010000003200000001000000340000000100000009000000000000000000000000000000000000006C0100000000000006000000, 0, 0.27124, 0, 0.962402, 23.9219, 0, -100.312);
|
||||
INSERT INTO `gameobjects` VALUES (366, 'lobby', 'ob_0102_0004', 0x10050000000E0400020000000000000000000000400100392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.27124, 0, 0.962402, 21.375, 0, -98.75);
|
||||
INSERT INTO `gameobjects` VALUES (367, 'lobby', 'oa_sit_point', 0x1005000002A1066D020000000000000000000000400000E42C000000FFFFFFFF29000000010000002B000000010000003200000001000000340000000100000009000000000000000000000000000000000000006E0100000000000006000000, 0, 0.27124, 0, 0.962402, 21.375, 0, -98.75);
|
||||
INSERT INTO `gameobjects` VALUES (368, 'lobby', 'ob_0102_0006', 0x10050000000E0400020000000000000000000000400100392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.27124, 0, 0.962402, 20.0938, 0, -98);
|
||||
INSERT INTO `gameobjects` VALUES (369, 'lobby', 'oa_sit_point', 0x1005000002A1066D020000000000000000000000400000E42C000000FFFFFFFF29000000010000002B00000001000000320000000100000034000000010000000900000000000000000000000000000000000000700100000000000006000000, 0, 0.27124, 0, 0.962402, 20.0938, 0, -98);
|
||||
INSERT INTO `gameobjects` VALUES (370, 'lobby', 'ob_0102_0005', 0x10050000000E0400020000000000000000000000400100392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.707031, 0, 0.707031, 44.3438, 0, -170.75);
|
||||
INSERT INTO `gameobjects` VALUES (371, 'lobby', 'oa_sit_point', 0x1005000002A1066D020000000000000000000000400000E42C000000FFFFFFFF29000000010000002B00000001000000320000000100000034000000010000000900000000000000000000000000000000000000720100000000000006000000, 0, 0.707031, 0, 0.707031, 44.3438, 0, -170.75);
|
||||
INSERT INTO `gameobjects` VALUES (372, 'lobby', 'ob_0102_0004', 0x10050000000E0400020000000000000000000000400100392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.707031, 0, 0.707031, 44.3438, 0, -169.25);
|
||||
INSERT INTO `gameobjects` VALUES (373, 'lobby', 'oa_sit_point', 0x1005000002A1066D020000000000000000000000400000E42C000000FFFFFFFF29000000010000002B00000001000000320000000100000034000000010000000900000000000000000000000000000000000000740100000000000006000000, 0, 0.707031, 0, 0.707031, 44.3438, 0, -169.25);
|
||||
INSERT INTO `gameobjects` VALUES (374, 'lobby', 'ob_0102_0006', 0x10050000000E0400020000000000000000000000400100392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.707031, 0, 0.707031, 44.3438, 0, -167.75);
|
||||
INSERT INTO `gameobjects` VALUES (375, 'lobby', 'oa_sit_point', 0x1005000002A1066D020000000000000000000000400000E42C000000FFFFFFFF29000000010000002B00000001000000320000000100000034000000010000000900000000000000000000000000000000000000760100000000000006000000, 0, 0.707031, 0, 0.707031, 44.3438, 0, -167.75);
|
||||
INSERT INTO `gameobjects` VALUES (376, 'lobby', 'ob_0102_0005', 0x10050000000E0400020000000000000000000000400100392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.707031, 0, 0.707031, 44.3438, 7, -170.75);
|
||||
INSERT INTO `gameobjects` VALUES (377, 'lobby', 'oa_sit_point', 0x1005000002A1066D020000000000000000000000400000E42C000000FFFFFFFF29000000010000002B00000001000000320000000100000034000000010000000900000000000000000000000000000000000000780100000000000006000000, 0, 0.707031, 0, 0.707031, 44.3438, 7, -170.75);
|
||||
INSERT INTO `gameobjects` VALUES (378, 'lobby', 'ob_0102_0004', 0x10050000000E0400020000000000000000000000400100392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.707031, 0, 0.707031, 44.3438, 7, -169.25);
|
||||
INSERT INTO `gameobjects` VALUES (379, 'lobby', 'oa_sit_point', 0x1005000002A1066D020000000000000000000000400000E42C000000FFFFFFFF29000000010000002B000000010000003200000001000000340000000100000009000000000000000000000000000000000000007A0100000000000006000000, 0, 0.707031, 0, 0.707031, 44.3438, 7, -169.25);
|
||||
INSERT INTO `gameobjects` VALUES (380, 'lobby', 'ob_0102_0006', 0x10050000000E0400020000000000000000000000400100392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.707031, 0, 0.707031, 44.3438, 7, -167.75);
|
||||
INSERT INTO `gameobjects` VALUES (381, 'lobby', 'oa_sit_point', 0x1005000002A1066D020000000000000000000000400000E42C000000FFFFFFFF29000000010000002B000000010000003200000001000000340000000100000009000000000000000000000000000000000000007C0100000000000006000000, 0, 0.707031, 0, 0.707031, 44.3438, 7, -167.75);
|
||||
INSERT INTO `gameobjects` VALUES (382, 'lobby', 'ob_0102_0005', 0x10050000000E0400020000000000000000000000400100392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, -0.707031, 0, 0.707031, -44.3438, 0, -165.25);
|
||||
INSERT INTO `gameobjects` VALUES (383, 'lobby', 'oa_sit_point', 0x1005000002A1066D020000000000000000000000400000E42C000000FFFFFFFF29000000010000002B000000010000003200000001000000340000000100000009000000000000000000000000000000000000007E0100000000000006000000, 0, -0.707031, 0, 0.707031, -44.3438, 0, -165.25);
|
||||
INSERT INTO `gameobjects` VALUES (384, 'lobby', 'ob_0102_0004', 0x10050000000E0400020000000000000000000000400100392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, -0.707031, 0, 0.707031, -44.3438, 0, -166.75);
|
||||
INSERT INTO `gameobjects` VALUES (385, 'lobby', 'oa_sit_point', 0x1005000002A1066D020000000000000000000000400000E42C000000FFFFFFFF29000000010000002B00000001000000320000000100000034000000010000000900000000000000000000000000000000000000800100000000000006000000, 0, -0.707031, 0, 0.707031, -44.3438, 0, -166.75);
|
||||
INSERT INTO `gameobjects` VALUES (386, 'lobby', 'ob_0102_0006', 0x10050000000E0400020000000000000000000000400100392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, -0.707031, 0, 0.707031, -44.3438, 0, -168.25);
|
||||
INSERT INTO `gameobjects` VALUES (387, 'lobby', 'oa_sit_point', 0x1005000002A1066D020000000000000000000000400000E42C000000FFFFFFFF29000000010000002B00000001000000320000000100000034000000010000000900000000000000000000000000000000000000820100000000000006000000, 0, -0.707031, 0, 0.707031, -44.3438, 0, -168.25);
|
||||
INSERT INTO `gameobjects` VALUES (388, 'lobby', 'ob_0102_0005', 0x10050000000E0400020000000000000000000000400100392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, -0.707031, 0, 0.707031, -44.3438, 7, -165.25);
|
||||
INSERT INTO `gameobjects` VALUES (389, 'lobby', 'oa_sit_point', 0x1005000002A1066D020000000000000000000000400000E42C000000FFFFFFFF29000000010000002B00000001000000320000000100000034000000010000000900000000000000000000000000000000000000840100000000000006000000, 0, -0.707031, 0, 0.707031, -44.3438, 7, -165.25);
|
||||
INSERT INTO `gameobjects` VALUES (390, 'lobby', 'ob_0102_0004', 0x10050000000E0400020000000000000000000000400100392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, -0.707031, 0, 0.707031, -44.3438, 7, -166.75);
|
||||
INSERT INTO `gameobjects` VALUES (391, 'lobby', 'oa_sit_point', 0x1005000002A1066D020000000000000000000000400000E42C000000FFFFFFFF29000000010000002B00000001000000320000000100000034000000010000000900000000000000000000000000000000000000860100000000000006000000, 0, -0.707031, 0, 0.707031, -44.3438, 7, -166.75);
|
||||
INSERT INTO `gameobjects` VALUES (392, 'lobby', 'ob_0102_0006', 0x10050000000E0400020000000000000000000000400100392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, -0.707031, 0, 0.707031, -44.3438, 7, -168.25);
|
||||
INSERT INTO `gameobjects` VALUES (393, 'lobby', 'oa_sit_point', 0x1005000002A1066D020000000000000000000000400000E42C000000FFFFFFFF29000000010000002B00000001000000320000000100000034000000010000000900000000000000000000000000000000000000880100000000000006000000, 0, -0.707031, 0, 0.707031, -44.3438, 7, -168.25);
|
||||
INSERT INTO `gameobjects` VALUES (394, 'lobby', 'ob_0102_0042', 0x10050000000E0400020000000000000000000000400100392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, -0.0435791, 0, 0.999023, 15, 0, 113);
|
||||
INSERT INTO `gameobjects` VALUES (395, 'lobby', 'oa_sit_point', 0x1005000002A1066D020000000000000000000000400000E42C000000FFFFFFFF29000000010000002B000000010000003200000001000000340000000100000009000000000000000000000000000000000000008A0100000000000006000000, 0, -0.0435791, 0, 0.999023, 15, 0, 113);
|
||||
INSERT INTO `gameobjects` VALUES (396, 'lobby', 'oa_sit_point', 0x1005000002A1066D020000000000000000000000400000E42C000000FFFFFFFF29000000010000002B000000010000003200000001000000340000000200000009000000000000000000000000000000000000008A0100000000000006000000, 0, -0.0435791, 0, 0.999023, 15, 0, 113);
|
||||
INSERT INTO `gameobjects` VALUES (397, 'lobby', 'oa_sit_point', 0x1005000002A1066D020000000000000000000000400000E42C000000FFFFFFFF29000000010000002B000000010000003200000001000000340000000300000009000000000000000000000000000000000000008A0100000000000006000000, 0, -0.0435791, 0, 0.999023, 15, 0, 113);
|
||||
INSERT INTO `gameobjects` VALUES (398, 'lobby', 'oa_sit_point', 0x1005000002A1066D020000000000000000000000400000E42C000000FFFFFFFF29000000010000002B000000010000003200000001000000340000000400000009000000000000000000000000000000000000008A0100000000000006000000, 0, -0.0435791, 0, 0.999023, 15, 0, 113);
|
||||
INSERT INTO `gameobjects` VALUES (399, 'lobby', 'oa_sit_point', 0x1005000002A1066D020000000000000000000000400000E42C000000FFFFFFFF29000000010000002B000000010000003200000001000000340000000500000009000000000000000000000000000000000000008A0100000000000006000000, 0, -0.0435791, 0, 0.999023, 15, 0, 113);
|
||||
INSERT INTO `gameobjects` VALUES (400, 'lobby', 'ob_0102_0043', 0x10050000000E0400020000000000000000000000400100392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, -0.0435791, 0, 0.999023, 15, 0, 113);
|
||||
INSERT INTO `gameobjects` VALUES (401, 'lobby', 'oa_sit_point', 0x1005000002A1066D020000000000000000000000400000E42C000000FFFFFFFF29000000010000002B00000001000000320000000100000034000000010000000900000000000000000000000000000000000000900100000000000006000000, 0, -0.0435791, 0, 0.999023, 15, 0, 113);
|
||||
INSERT INTO `gameobjects` VALUES (402, 'lobby', 'oa_sit_point', 0x1005000002A1066D020000000000000000000000400000E42C000000FFFFFFFF29000000010000002B00000001000000320000000100000034000000020000000900000000000000000000000000000000000000900100000000000006000000, 0, -0.0435791, 0, 0.999023, 15, 0, 113);
|
||||
INSERT INTO `gameobjects` VALUES (403, 'lobby', 'oa_sit_point', 0x1005000002A1066D020000000000000000000000400000E42C000000FFFFFFFF29000000010000002B00000001000000320000000100000034000000030000000900000000000000000000000000000000000000900100000000000006000000, 0, -0.0435791, 0, 0.999023, 15, 0, 113);
|
||||
INSERT INTO `gameobjects` VALUES (404, 'lobby', 'oa_sit_point', 0x1005000002A1066D020000000000000000000000400000E42C000000FFFFFFFF29000000010000002B00000001000000320000000100000034000000040000000900000000000000000000000000000000000000900100000000000006000000, 0, -0.0435791, 0, 0.999023, 15, 0, 113);
|
||||
INSERT INTO `gameobjects` VALUES (405, 'lobby', 'oa_sit_point', 0x1005000002A1066D020000000000000000000000400000E42C000000FFFFFFFF29000000010000002B00000001000000320000000100000034000000050000000900000000000000000000000000000000000000900100000000000006000000, 0, -0.0435791, 0, 0.999023, 15, 0, 113);
|
||||
INSERT INTO `gameobjects` VALUES (406, 'lobby', 'ob_0102_0044', 0x10050000000E0400020000000000000000000000400100392C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.0435791, 0, 0.999023, -15, 0, 113);
|
||||
INSERT INTO `gameobjects` VALUES (407, 'lobby', 'oa_sit_point', 0x1005000002A1066D020000000000000000000000400000E42C000000FFFFFFFF29000000010000002B00000001000000320000000100000034000000010000000900000000000000000000000000000000000000960100000000000006000000, 0, 0.0435791, 0, 0.999023, -15, 0, 113);
|
||||
INSERT INTO `gameobjects` VALUES (408, 'lobby', 'oa_sit_point', 0x1005000002A1066D020000000000000000000000400000E42C000000FFFFFFFF29000000010000002B00000001000000320000000100000034000000020000000900000000000000000000000000000000000000960100000000000006000000, 0, 0.0435791, 0, 0.999023, -15, 0, 113);
|
||||
INSERT INTO `gameobjects` VALUES (409, 'lobby', 'oa_sit_point', 0x1005000002A1066D020000000000000000000000400000E42C000000FFFFFFFF29000000010000002B00000001000000320000000100000034000000030000000900000000000000000000000000000000000000960100000000000006000000, 0, 0.0435791, 0, 0.999023, -15, 0, 113);
|
||||
INSERT INTO `gameobjects` VALUES (410, 'lobby', 'oa_sit_point', 0x1005000002A1066D020000000000000000000000400000E42C000000FFFFFFFF29000000010000002B00000001000000320000000100000034000000040000000900000000000000000000000000000000000000960100000000000006000000, 0, 0.0435791, 0, 0.999023, -15, 0, 113);
|
||||
INSERT INTO `gameobjects` VALUES (411, 'lobby', 'oa_sit_point', 0x1005000002A1066D020000000000000000000000400000E42C000000FFFFFFFF29000000010000002B00000001000000320000000100000034000000050000000900000000000000000000000000000000000000960100000000000006000000, 0, 0.0435791, 0, 0.999023, -15, 0, 113);
|
||||
INSERT INTO `gameobjects` VALUES (412, 'lobby', 'ob_0102_0045', 0x10050000000E0400020000000000000000000000400100B62C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.0435791, 0, 0.999023, -15, 0, 113);
|
||||
INSERT INTO `gameobjects` VALUES (413, 'lobby', 'oa_sit_point', 0x1005000002A1066D020000000000000000000000400000E42C000000FFFFFFFF29000000010000002B000000010000003200000001000000340000000100000009000000000000000000000000000000000000009C0100000000000006000000, 0, 0.0435791, 0, 0.999023, -15, 0, 113);
|
||||
INSERT INTO `gameobjects` VALUES (414, 'lobby', 'oa_sit_point', 0x1005000002A1066D020000000000000000000000400000E42C000000FFFFFFFF29000000010000002B000000010000003200000001000000340000000200000009000000000000000000000000000000000000009C0100000000000006000000, 0, 0.0435791, 0, 0.999023, -15, 0, 113);
|
||||
INSERT INTO `gameobjects` VALUES (415, 'lobby', 'oa_sit_point', 0x1005000002A1066D020000000000000000000000400000E42C000000FFFFFFFF29000000010000002B000000010000003200000001000000340000000300000009000000000000000000000000000000000000009C0100000000000006000000, 0, 0.0435791, 0, 0.999023, -15, 0, 113);
|
||||
INSERT INTO `gameobjects` VALUES (416, 'lobby', 'oa_sit_point', 0x1005000002A1066D020000000000000000000000400000E42C000000FFFFFFFF29000000010000002B000000010000003200000001000000340000000400000009000000000000000000000000000000000000009C0100000000000006000000, 0, 0.0435791, 0, 0.999023, -15, 0, 113);
|
||||
INSERT INTO `gameobjects` VALUES (417, 'lobby', 'oa_sit_point', 0x1005000002A1066D020000000000000000000000400000E42C000000FFFFFFFF29000000010000002B000000010000003200000001000000340000000500000009000000000000000000000000000000000000009C0100000000000006000000, 0, 0.0435791, 0, 0.999023, -15, 0, 113);
|
||||
INSERT INTO `gameobjects` VALUES (418, 'lobby', 'ob_0102_0101', 0x10050000000E0400020000000000000000000000400100B62C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, -0.587402, 0, 0.808594, 0, 2.39844, 180);
|
||||
INSERT INTO `gameobjects` VALUES (419, 'lobby', 'oa_sit_point', 0x1005000002A1066D020000000000000000000000400000E42C000000FFFFFFFF29000000010000002B00000001000000320000000100000034000000010000000900000000000000000000000000000000000000A20100000000000006000000, 0, -0.587402, 0, 0.808594, 0, 2.39844, 180);
|
||||
INSERT INTO `gameobjects` VALUES (420, 'lobby', 'oa_sit_point', 0x1005000002A1066D020000000000000000000000400000E42C000000FFFFFFFF29000000010000002B00000001000000320000000100000034000000020000000900000000000000000000000000000000000000A20100000000000006000000, 0, -0.587402, 0, 0.808594, 0, 2.39844, 180);
|
||||
INSERT INTO `gameobjects` VALUES (421, 'lobby', 'ob_0102_0101', 0x10050000000E0400020000000000000000000000400100B62C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, 0, 2.39844, 180);
|
||||
INSERT INTO `gameobjects` VALUES (422, 'lobby', 'oa_sit_point', 0x1005000002A1066D020000000000000000000000400000E42C000000FFFFFFFF29000000010000002B00000001000000320000000100000034000000010000000900000000000000000000000000000000000000A50100000000000006000000, 0, 0, 0, 1, 0, 2.39844, 180);
|
||||
INSERT INTO `gameobjects` VALUES (423, 'lobby', 'oa_sit_point', 0x1005000002A1066D020000000000000000000000400000E42C000000FFFFFFFF29000000010000002B00000001000000320000000100000034000000020000000900000000000000000000000000000000000000A50100000000000006000000, 0, 0, 0, 1, 0, 2.39844, 180);
|
||||
INSERT INTO `gameobjects` VALUES (424, 'lobby', 'ob_0102_0101', 0x10050000000E0400020000000000000000000000400100B62C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.587402, 0, 0.808594, 0, 2.39844, 180);
|
||||
INSERT INTO `gameobjects` VALUES (425, 'lobby', 'oa_sit_point', 0x1005000002A1066D020000000000000000000000400000E42C000000FFFFFFFF29000000010000002B00000001000000320000000100000034000000010000000900000000000000000000000000000000000000A80100000000000006000000, 0, 0.587402, 0, 0.808594, 0, 2.39844, 180);
|
||||
INSERT INTO `gameobjects` VALUES (426, 'lobby', 'oa_sit_point', 0x1005000002A1066D020000000000000000000000400000E42C000000FFFFFFFF29000000010000002B00000001000000320000000100000034000000020000000900000000000000000000000000000000000000A80100000000000006000000, 0, 0.587402, 0, 0.808594, 0, 2.39844, 180);
|
||||
INSERT INTO `gameobjects` VALUES (427, 'lobby', 'ob_0102_0101', 0x10050000000E0400020000000000000000000000400100B62C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.950684, 0, 0.308838, 0, 2.39844, 180);
|
||||
INSERT INTO `gameobjects` VALUES (428, 'lobby', 'oa_sit_point', 0x1005000002A1066D020000000000000000000000400000E42C000000FFFFFFFF29000000010000002B00000001000000320000000100000034000000010000000900000000000000000000000000000000000000AB0100000000000006000000, 0, 0.950684, 0, 0.308838, 0, 2.39844, 180);
|
||||
INSERT INTO `gameobjects` VALUES (429, 'lobby', 'oa_sit_point', 0x1005000002A1066D020000000000000000000000400000E42C000000FFFFFFFF29000000010000002B00000001000000320000000100000034000000020000000900000000000000000000000000000000000000AB0100000000000006000000, 0, 0.950684, 0, 0.308838, 0, 2.39844, 180);
|
||||
INSERT INTO `gameobjects` VALUES (430, 'lobby', 'ob_0102_0101', 0x10050000000E0400020000000000000000000000400100B62C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, -0.950684, 0, 0.308838, 0, 2.39844, 180);
|
||||
INSERT INTO `gameobjects` VALUES (431, 'lobby', 'oa_sit_point', 0x1005000002A1066D020000000000000000000000400000E42C000000FFFFFFFF29000000010000002B00000001000000320000000100000034000000010000000900000000000000000000000000000000000000AE0100000000000006000000, 0, -0.950684, 0, 0.308838, 0, 2.39844, 180);
|
||||
INSERT INTO `gameobjects` VALUES (432, 'lobby', 'oa_sit_point', 0x1005000002A1066D020000000000000000000000400000E42C000000FFFFFFFF29000000010000002B00000001000000320000000100000034000000020000000900000000000000000000000000000000000000AE0100000000000006000000, 0, -0.950684, 0, 0.308838, 0, 2.39844, 180);
|
||||
INSERT INTO `gameobjects` VALUES (433, 'lobby', 'oa_transfer_machine', 0x100A010000000000020000000000000000000000000000072C0000000000000029000000010000002B000000010000002E0000000000000033000000010000003B0000000000000034000000FFFFFFFF320000000000000037000000000000003A000000010000003800000000008040, 0, 0, 0, 1, 18, 1, -153);
|
||||
INSERT INTO `gameobjects` VALUES (434, 'lobby', 'oa_transfer_machine', 0x100A010000000000020000000000000000000000000000072C0000000000000029000000010000002B000000010000002E0000000000000033000000010000003B0000000100000034000000FFFFFFFF320000000000000037000000000000003A000000010000003800000000000040, 0, -0.923828, 0, 0.382568, 9.5, 0, -144.5);
|
||||
INSERT INTO `gameobjects` VALUES (435, 'lobby', 'oa_transfer_machine', 0x100A010000000000020000000000000000000000000000072C0000000000000029000000010000002B000000010000002E0000000000000033000000010000003B0000000000000034000000FFFFFFFF320000000000000037000000000000003A000000010000003800000000008040, 0, 0, 0, 1, -18, 1, -153);
|
||||
INSERT INTO `gameobjects` VALUES (436, 'lobby', 'oa_transfer_machine', 0x100A010000000000020000000000000000000000000000072C0000000000000029000000010000002B000000010000002E0000000000000033000000010000003B0000000100000034000000FFFFFFFF320000000000000037000000000000003A000000010000003800000000000040, 0, -0.382568, 0, 0.923828, -9.5, 0, -144.5);
|
||||
INSERT INTO `gameobjects` VALUES (437, 'lobby', 'oa_transfer_machine', 0x100A010000000000020000000000000000000000000000072C0000000000000029000000010000002B000000010000002E0000000000000033000000010000003B0000000000000034000000FFFFFFFF320000000000000037000000000000003A000000010000003800000000008040, 0, 0, 0, 1, 0, 15, -180.5);
|
||||
INSERT INTO `gameobjects` VALUES (438, 'lobby', 'oa_transfer_machine', 0x100A010000000000020000000000000000000000000000072C0000000000000029000000010000002B000000010000002E0000000000000033000000010000003B0000000100000034000000FFFFFFFF320000000000000037000000000000003A000000010000003800000000000040, 0, -0.707031, 0, 0.707031, 0, 14.1953, -169);
|
||||
INSERT INTO `gameobjects` VALUES (439, 'lobby', 'oa_transfer_machine', 0x100A010000000000020000000000000000000000000000072C0000000000000029000000010000002B000000010000002E0000000000000033000000010000003B00000000000000340000000C000000320000000200000037000000000000003A000000010000003800000000000040, 0, -0.707031, 0, 0.707031, 57.75, 0, -100.812);
|
||||
INSERT INTO `gameobjects` VALUES (440, 'lobby', 'oa_transfer_machine', 0x100A010000000000020000000000000000000000000000072C0000000000000029000000010000002B000000010000002E0000000000000033000000010000003B00000000000000340000000E000000320000000200000037000000000000003A000000010000003800000000000040, 0, -0.707031, 0, 0.707031, -57.75, 0, -100.812);
|
||||
INSERT INTO `gameobjects` VALUES (441, 'lobby', 'oa_transfer_machine', 0x100A010000000000020000000000000000000000000000072C0000000100000029000000010000002B000000010000002E0000000000000033000000010000003B0000000000000034000000FFFFFFFF320000000000000037000000000000003A000000010000003800000000008040, 0, 0, 0, 1, 0, 2.59961, 156.375);
|
||||
INSERT INTO `gameobjects` VALUES (442, 'lobby', 'oa_transfer_machine', 0x100A010000000000020000000000000000000000000000072C0000000100000029000000010000002B000000010000002E0000000000000033000000010000003B0000000100000034000000FFFFFFFF320000000000000037000000000000003A000000010000003800000000000040, 0, 0.707031, 0, 0.707031, 0, 0, 140);
|
||||
INSERT INTO `gameobjects` VALUES (443, 'lobby', 'oa_transfer_machine', 0x100A010000000000020000000000000000000000000000072C0000000100000029000000010000002B000000010000002E0000000000000033000000010000003B0000000000000034000000FFFFFFFF320000000000000037000000000000003A000000010000003800000000008040, 0, 0, 0, 1, 34, 0.399902, 163.125);
|
||||
INSERT INTO `gameobjects` VALUES (444, 'lobby', 'oa_transfer_machine', 0x100A010000000000020000000000000000000000000000072C0000000100000029000000010000002B000000010000002E0000000000000033000000010000003B0000000100000034000000FFFFFFFF320000000000000037000000000000003A000000010000003800000000000040, 0, 0.865723, 0, 0.5, 29.5, 0, 150.5);
|
||||
INSERT INTO `gameobjects` VALUES (445, 'lobby', 'oa_transfer_machine', 0x100A010000000000020000000000000000000000000000072C0000000100000029000000010000002B000000010000002E0000000000000033000000010000003B0000000100000034000000FFFFFFFF320000000000000037000000000000003A000000010000003800000000000040, 0, 0.499756, 0, 0.865723, -29.5, 0, 150.5);
|
||||
INSERT INTO `gameobjects` VALUES (446, 'lobby', 'oa_transfer_machine', 0x100A010000000000020000000000000000000000000000072C0000000100000029000000010000002B000000010000002E0000000000000033000000010000003B0000000000000034000000FFFFFFFF320000000000000037000000000000003A000000010000003800000000008040, 0, 0, 0, 1, -34, 0.399902, 163.125);
|
||||
INSERT INTO `gameobjects` VALUES (447, 'lobby', 'oa_transfer_machine', 0x100A010000000000020000000000000000000000000000072C0000000100000029000000010000002B000000010000002E0000000000000033000000010000003B0000000000000034000000FFFFFFFF320000000100000037000000000000003A000000010000003800000000008040, 0, 0, 0, 1, 0, 0, 100);
|
||||
INSERT INTO `gameobjects` VALUES (448, 'lobby', 'oa_transfer_machine', 0x100A010000000000020000000000000000000000000000072C0000000100000029000000010000002B000000010000002E0000000000000033000000010000003B00000000000000340000000B000000320000000200000037000000000000003A000000010000003800000000000040, 0, 0, 0, 1, 50.5312, 0.299805, 120);
|
||||
INSERT INTO `gameobjects` VALUES (449, 'lobby', 'oa_transfer_machine', 0x100A010000000000020000000000000000000000000000072C0000000100000029000000010000002B000000010000002E0000000000000033000000010000003B00000000000000340000000D000000320000000200000037000000000000003A000000010000003800000000000040, 0, 0, 0, 1, -50.5312, 0.299805, 120);
|
||||
INSERT INTO `gameobjects` VALUES (545, 'lobby', 'oa_jump_stand', 0x10030000009FBBA6000000000000000000000000400000472C000000FFFFFFFF29000000010000002B00000000000000, 0, -0.0435791, 0, 0.999023, -5.69922, -2.39844, -73.5);
|
||||
INSERT INTO `gameobjects` VALUES (546, 'lobby', 'ob_9900_0399', 0x1003010002A1066D000000000000000000000000400000E42C000000FFFFFFFF29000000010000002B000000000000003A0000000000B8410200000023020000000000000600000001000000210200000000000006000000, 0, -0.0435791, 0, 0.999023, -5.69922, -2.39844, -73.5);
|
||||
INSERT INTO `gameobjects` VALUES (547, 'lobby', 'ob_9900_0399', 0x1003010002A1066D000000000000000000000000400000E42C000000FFFFFFFF29000000020000002B000000000000003A0000000000B8410200000022020000000000000600000001000000210200000000000006000000, 0, -0.0435791, 0, 0.999023, -23.5156, 10.2969, -108.5);
|
||||
INSERT INTO `gameobjects` VALUES (548, 'lobby', 'oa_jump_stand', 0x10030000009FBBA6000000000000000000000000400000472C000000FFFFFFFF29000000010000002B00000000000000, 0, 0.0435791, 0, 0.999023, 5.69922, -2.39844, -73.5);
|
||||
INSERT INTO `gameobjects` VALUES (549, 'lobby', 'ob_9900_0399', 0x1003010002A1066D000000000000000000000000400000E42C000000FFFFFFFF29000000010000002B000000000000003A0000000000B8410200000026020000000000000600000001000000240200000000000006000000, 0, 0.0435791, 0, 0.999023, 5.69922, -2.39844, -73.5);
|
||||
INSERT INTO `gameobjects` VALUES (550, 'lobby', 'ob_9900_0399', 0x1003010002A1066D000000000000000000000000400000E42C000000FFFFFFFF29000000020000002B000000000000003A0000000000B8410200000025020000000000000600000001000000240200000000000006000000, 0, 0.0435791, 0, 0.999023, 23.7344, 10.2969, -108.312);
|
||||
INSERT INTO `gameobjects` VALUES (551, 'lobby', 'oa_jump_stand', 0x10030000009FBBA6000000000000000000000000400000472C000000FFFFFFFF29000000010000002B00000000000000, 0, 0.0435791, 0, 0.999023, 5.69922, -2.39844, -73.5);
|
||||
INSERT INTO `gameobjects` VALUES (552, 'lobby', 'ob_0100_0118', 0x1003010002A1066D000000000000000000000000400000E42C000000FFFFFFFF29000000010000002B000000000000003A0000000000B8410200000029020000000000000600000001000000270200000000000006000000, 0, 0.0435791, 0, 0.999023, 5.69922, -2.39844, -73.5);
|
||||
INSERT INTO `gameobjects` VALUES (553, 'lobby', 'ob_0100_0118', 0x1003010002A1066D000000000000000000000000400000E42C000000FFFFFFFF29000000020000002B000000000000003A0000000000B8410200000028020000000000000600000001000000270200000000000006000000, 0, 0.0435791, 0, 0.999023, 23.7344, 10.2969, -108.312);
|
||||
INSERT INTO `gameobjects` VALUES (554, 'lobby', 'oa_jump_stand', 0x10030000009FBBA6000000000000000000000000400000472C000000FFFFFFFF29000000010000002B00000000000000, 0, -0.0435791, 0, 0.999023, -5.69922, -2.39844, -73.5);
|
||||
INSERT INTO `gameobjects` VALUES (555, 'lobby', 'ob_0100_0118', 0x1003010002A1066D000000000000000000000000400000E42C000000FFFFFFFF29000000010000002B000000000000003A0000000000B841020000002C0200000000000006000000010000002A0200000000000006000000, 0, -0.0435791, 0, 0.999023, -5.69922, -2.39844, -73.5);
|
||||
INSERT INTO `gameobjects` VALUES (556, 'lobby', 'ob_0100_0118', 0x1003010002A1066D000000000000000000000000400000E42C000000FFFFFFFF29000000020000002B000000000000003A0000000000B841020000002B0200000000000006000000010000002A0200000000000006000000, 0, -0.0435791, 0, 0.999023, -23.5156, 10.2969, -108.5);
|
||||
INSERT INTO `gameobjects` VALUES (557, 'lobby', 'oa_jump_stand', 0x10030000009FBBA6000000000000000000000000400000472C000000FFFFFFFF29000000010000002B00000000000000, 0, -0.0435791, 0, 0.999023, -5.69922, -2.39844, -73.5);
|
||||
INSERT INTO `gameobjects` VALUES (558, 'lobby', 'ob_9900_0399', 0x1003010002A1066D000000000000000000000000400000E42C000000FFFFFFFF29000000010000002B000000000000003A0000000000B841020000002F0200000000000006000000010000002D0200000000000006000000, 0, -0.0435791, 0, 0.999023, -5.69922, -2.39844, -73.5);
|
||||
INSERT INTO `gameobjects` VALUES (559, 'lobby', 'ob_9900_0399', 0x1003010002A1066D000000000000000000000000400000E42C000000FFFFFFFF29000000020000002B000000000000003A0000000000B841020000002E0200000000000006000000010000002D0200000000000006000000, 0, -0.0435791, 0, 0.999023, -23.5156, 10.2969, -108.5);
|
||||
INSERT INTO `gameobjects` VALUES (560, 'lobby', 'oa_jump_stand', 0x10030000009FBBA6000000000000000000000000400000472C000000FFFFFFFF29000000010000002B00000000000000, 0, 0.0435791, 0, 0.999023, 5.69922, -2.39844, -73.5);
|
||||
INSERT INTO `gameobjects` VALUES (561, 'lobby', 'ob_9900_0399', 0x1003010002A1066D000000000000000000000000400000E42C000000FFFFFFFF29000000010000002B000000000000003A0000000000B8410200000032020000000000000600000001000000300200000000000006000000, 0, 0.0435791, 0, 0.999023, 5.69922, -2.39844, -73.5);
|
||||
INSERT INTO `gameobjects` VALUES (562, 'lobby', 'ob_9900_0399', 0x1003010002A1066D000000000000000000000000400000E42C000000FFFFFFFF29000000020000002B000000000000003A0000000000B8410200000031020000000000000600000001000000300200000000000006000000, 0, 0.0435791, 0, 0.999023, 23.7344, 10.2969, -108.312);
|
||||
INSERT INTO `gameobjects` VALUES (563, 'lobby', 'oa_jump_stand', 0x10030000009FBBA6000000000000000000000000400000472C000000FFFFFFFF29000000010000002B00000000000000, 0, -0.0435791, 0, 0.999023, -5.69922, -2.39844, -73.5);
|
||||
INSERT INTO `gameobjects` VALUES (564, 'lobby', 'ob_9900_0399', 0x1003010002A1066D000000000000000000000000400000E42C000000FFFFFFFF29000000010000002B000000000000003A0000000000B8410200000035020000000000000600000001000000330200000000000006000000, 0, -0.0435791, 0, 0.999023, -5.69922, -2.39844, -73.5);
|
||||
INSERT INTO `gameobjects` VALUES (565, 'lobby', 'ob_9900_0399', 0x1003010002A1066D000000000000000000000000400000E42C000000FFFFFFFF29000000020000002B000000000000003A0000000000B8410200000034020000000000000600000001000000330200000000000006000000, 0, -0.0435791, 0, 0.999023, -23.5156, 10.2969, -108.5);
|
||||
INSERT INTO `gameobjects` VALUES (566, 'lobby', 'oa_jump_stand', 0x10030000009FBBA6000000000000000000000000400000472C000000FFFFFFFF29000000010000002B00000000000000, 0, 0.0435791, 0, 0.999023, 5.69922, -2.39844, -73.5);
|
||||
INSERT INTO `gameobjects` VALUES (567, 'lobby', 'ob_9900_0399', 0x1003010002A1066D000000000000000000000000400000E42C000000FFFFFFFF29000000010000002B000000000000003A0000000000B8410200000038020000000000000600000001000000360200000000000006000000, 0, 0.0435791, 0, 0.999023, 5.69922, -2.39844, -73.5);
|
||||
INSERT INTO `gameobjects` VALUES (568, 'lobby', 'ob_9900_0399', 0x1003010002A1066D000000000000000000000000400000E42C000000FFFFFFFF29000000020000002B000000000000003A0000000000B8410200000037020000000000000600000001000000360200000000000006000000, 0, 0.0435791, 0, 0.999023, 23.7344, 10.2969, -108.312);
|
||||
INSERT INTO `gameobjects` VALUES (569, 'lobby', 'oa_jump_stand', 0x10030000000E0400000000000000000000000000400000352C000000FFFFFFFF29000000010000002B00000000000000, 0, -0.0435791, 0, 0.999023, -5.69922, -2.39844, -73.5);
|
||||
INSERT INTO `gameobjects` VALUES (570, 'lobby', 'ob_9900_0399', 0x1003010002A1066D000000000000000000000000400000E42C000000FFFFFFFF29000000010000002B000000000000003A0000000000B841020000003B020000000000000600000001000000390200000000000006000000, 0, -0.0435791, 0, 0.999023, -5.69922, -2.39844, -73.5);
|
||||
INSERT INTO `gameobjects` VALUES (571, 'lobby', 'ob_9900_0399', 0x1003010002A1066D000000000000000000000000400000E42C000000FFFFFFFF29000000020000002B000000000000003A0000000000B841020000003A020000000000000600000001000000390200000000000006000000, 0, -0.0435791, 0, 0.999023, -23.5156, 10.2969, -108.5);
|
||||
INSERT INTO `gameobjects` VALUES (572, 'lobby', 'oa_jump_stand', 0x10030000000E0400000000000000000000000000400000352C000000FFFFFFFF29000000010000002B00000000000000, 0, 0.0435791, 0, 0.999023, 5.69922, -2.39844, -73.5);
|
||||
INSERT INTO `gameobjects` VALUES (573, 'lobby', 'ob_9900_0399', 0x1003010002A1066D000000000000000000000000400000E42C000000FFFFFFFF29000000010000002B000000000000003A0000000000B841020000003E0200000000000006000000010000003C0200000000000006000000, 0, 0.0435791, 0, 0.999023, 5.69922, -2.39844, -73.5);
|
||||
INSERT INTO `gameobjects` VALUES (574, 'lobby', 'ob_9900_0399', 0x1003010002A1066D000000000000000000000000400000E42C000000FFFFFFFF29000000020000002B000000000000003A0000000000B841020000003D0200000000000006000000010000003C0200000000000006000000, 0, 0.0435791, 0, 0.999023, 23.7344, 10.2969, -108.312);
|
||||
INSERT INTO `gameobjects` VALUES (575, 'lobby', 'oa_jump_stand', 0x10030000000E0400000000000000000000000000400000352C000000FFFFFFFF29000000010000002B00000000000000, 0, -0.0435791, 0, 0.999023, -5.69922, -2.39844, -73.5);
|
||||
INSERT INTO `gameobjects` VALUES (576, 'lobby', 'ob_9900_0399', 0x1003010002A1066D000000000000000000000000400000E42C000000FFFFFFFF29000000010000002B000000000000003A0000000000B84102000000410200000000000006000000010000003F0200000000000006000000, 0, -0.0435791, 0, 0.999023, -5.69922, -2.39844, -73.5);
|
||||
INSERT INTO `gameobjects` VALUES (577, 'lobby', 'ob_9900_0399', 0x1003010002A1066D000000000000000000000000400000E42C000000FFFFFFFF29000000020000002B000000000000003A0000000000B84102000000400200000000000006000000010000003F0200000000000006000000, 0, -0.0435791, 0, 0.999023, -23.5156, 10.2969, -108.5);
|
||||
INSERT INTO `gameobjects` VALUES (578, 'lobby', 'oa_jump_stand', 0x10030000000E0400000000000000000000000000400000352C000000FFFFFFFF29000000010000002B00000000000000, 0, 0.0435791, 0, 0.999023, 5.69922, -2.39844, -73.5);
|
||||
INSERT INTO `gameobjects` VALUES (579, 'lobby', 'ob_9900_0399', 0x1003010002A1066D000000000000000000000000400000E42C000000FFFFFFFF29000000010000002B000000000000003A0000000000B8410200000044020000000000000600000001000000420200000000000006000000, 0, 0.0435791, 0, 0.999023, 5.69922, -2.39844, -73.5);
|
||||
INSERT INTO `gameobjects` VALUES (580, 'lobby', 'ob_9900_0399', 0x1003010002A1066D000000000000000000000000400000E42C000000FFFFFFFF29000000020000002B000000000000003A0000000000B8410200000043020000000000000600000001000000420200000000000006000000, 0, 0.0435791, 0, 0.999023, 23.7344, 10.2969, -108.312);
|
||||
INSERT INTO `gameobjects` VALUES (581, 'lobby', 'oa_jump_stand', 0x10030000000E0400000000000000000000000000400000352C000000FFFFFFFF29000000010000002B00000000000000, 0, -0.0435791, 0, 0.999023, -5.69922, -2.39844, -73.5);
|
||||
INSERT INTO `gameobjects` VALUES (582, 'lobby', 'ob_9900_0399', 0x1003010002A1066D000000000000000000000000400000E42C000000FFFFFFFF29000000010000002B000000000000003A0000000000B8410200000047020000000000000600000001000000450200000000000006000000, 0, -0.0435791, 0, 0.999023, -5.69922, -2.39844, -73.5);
|
||||
INSERT INTO `gameobjects` VALUES (583, 'lobby', 'ob_9900_0399', 0x1003010002A1066D000000000000000000000000400000E42C000000FFFFFFFF29000000020000002B000000000000003A0000000000B8410200000046020000000000000600000001000000450200000000000006000000, 0, -0.0435791, 0, 0.999023, -23.5156, 10.2969, -108.5);
|
||||
INSERT INTO `gameobjects` VALUES (584, 'lobby', 'oa_jump_stand', 0x10030000000E0400000000000000000000000000400000352C000000FFFFFFFF29000000010000002B00000000000000, 0, 0.0435791, 0, 0.999023, 5.69922, -2.39844, -73.5);
|
||||
INSERT INTO `gameobjects` VALUES (585, 'lobby', 'ob_9900_0399', 0x1003010002A1066D000000000000000000000000400000E42C000000FFFFFFFF29000000010000002B000000000000003A0000000000B841020000004A020000000000000600000001000000480200000000000006000000, 0, 0.0435791, 0, 0.999023, 5.69922, -2.39844, -73.5);
|
||||
INSERT INTO `gameobjects` VALUES (586, 'lobby', 'ob_9900_0399', 0x1003010002A1066D000000000000000000000000400000E42C000000FFFFFFFF29000000020000002B000000000000003A0000000000B8410200000049020000000000000600000001000000480200000000000006000000, 0, 0.0435791, 0, 0.999023, 23.7344, 10.2969, -108.312);
|
||||
INSERT INTO `gameobjects` VALUES (587, 'lobby', 'oa_jump_stand', 0x10030000000E0400000000000000000000000000400000352C000000FFFFFFFF29000000010000002B00000000000000, 0, -0.0435791, 0, 0.999023, -5.69922, -2.39844, -73.5);
|
||||
INSERT INTO `gameobjects` VALUES (588, 'lobby', 'ob_9900_0399', 0x1003010002A1066D000000000000000000000000400000E42C000000FFFFFFFF29000000010000002B000000000000003A0000000000B841020000004D0200000000000006000000010000004B0200000000000006000000, 0, -0.0435791, 0, 0.999023, -5.69922, -2.39844, -73.5);
|
||||
INSERT INTO `gameobjects` VALUES (589, 'lobby', 'ob_9900_0399', 0x1003010002A1066D000000000000000000000000400000E42C000000FFFFFFFF29000000020000002B000000000000003A0000000000B841020000004C0200000000000006000000010000004B0200000000000006000000, 0, -0.0435791, 0, 0.999023, -23.5156, 10.2969, -108.5);
|
||||
INSERT INTO `gameobjects` VALUES (590, 'lobby', 'oa_jump_stand', 0x10030000000E0400000000000000000000000000400000352C000000FFFFFFFF29000000010000002B00000000000000, 0, 0.0435791, 0, 0.999023, 5.69922, -2.39844, -73.5);
|
||||
INSERT INTO `gameobjects` VALUES (591, 'lobby', 'ob_9900_0399', 0x1003010002A1066D000000000000000000000000400000E42C000000FFFFFFFF29000000010000002B000000000000003A0000000000B84102000000500200000000000006000000010000004E0200000000000006000000, 0, 0.0435791, 0, 0.999023, 5.69922, -2.39844, -73.5);
|
||||
INSERT INTO `gameobjects` VALUES (592, 'lobby', 'ob_9900_0399', 0x1003010002A1066D000000000000000000000000400000E42C000000FFFFFFFF29000000020000002B000000000000003A0000000000B841020000004F0200000000000006000000010000004E0200000000000006000000, 0, 0.0435791, 0, 0.999023, 23.7344, 10.2969, -108.312);
|
||||
INSERT INTO `gameobjects` VALUES (593, 'lobby', 'oa_jump_stand', 0x10030000000E0400000000000000000000000000400000352C000000FFFFFFFF29000000010000002B00000000000000, 0, -0.0435791, 0, 0.999023, -5.69922, -2.39844, -73.5);
|
||||
INSERT INTO `gameobjects` VALUES (594, 'lobby', 'ob_9900_0399', 0x1003010002A1066D000000000000000000000000400000E42C000000FFFFFFFF29000000010000002B000000000000003A0000000000B8410200000053020000000000000600000001000000510200000000000006000000, 0, -0.0435791, 0, 0.999023, -5.69922, -2.39844, -73.5);
|
||||
INSERT INTO `gameobjects` VALUES (595, 'lobby', 'ob_9900_0399', 0x1003010002A1066D000000000000000000000000400000E42C000000FFFFFFFF29000000020000002B000000000000003A0000000000B8410200000052020000000000000600000001000000510200000000000006000000, 0, -0.0435791, 0, 0.999023, -23.5156, 10.2969, -108.5);
|
||||
INSERT INTO `gameobjects` VALUES (596, 'lobby', 'oa_jump_stand', 0x10030000000E0400000000000000000000000000400000352C000000FFFFFFFF29000000010000002B00000000000000, 0, 0.0435791, 0, 0.999023, 5.69922, -2.39844, -73.5);
|
||||
INSERT INTO `gameobjects` VALUES (597, 'lobby', 'ob_9900_0399', 0x1003010002A1066D000000000000000000000000400000E42C000000FFFFFFFF29000000010000002B000000000000003A0000000000B8410200000056020000000000000600000001000000540200000000000006000000, 0, 0.0435791, 0, 0.999023, 5.69922, -2.39844, -73.5);
|
||||
INSERT INTO `gameobjects` VALUES (598, 'lobby', 'ob_9900_0399', 0x1003010002A1066D000000000000000000000000400000E42C000000FFFFFFFF29000000020000002B000000000000003A0000000000B8410200000055020000000000000600000001000000540200000000000006000000, 0, 0.0435791, 0, 0.999023, 23.7344, 10.2969, -108.312);
|
||||
INSERT INTO `gameobjects` VALUES (599, 'lobby', 'oa_jump_stand', 0x10030000000E0400000000000000000000000000400000352C000000FFFFFFFF29000000010000002B00000000000000, 0, -0.0435791, 0, 0.999023, -5.69922, -2.39844, -73.5);
|
||||
INSERT INTO `gameobjects` VALUES (600, 'lobby', 'ob_9900_0399', 0x1003010002A1066D000000000000000000000000400000E42C000000FFFFFFFF29000000010000002B000000000000003A0000000000B8410200000059020000000000000600000001000000570200000000000006000000, 0, -0.0435791, 0, 0.999023, -5.69922, -2.39844, -73.5);
|
||||
INSERT INTO `gameobjects` VALUES (601, 'lobby', 'ob_9900_0399', 0x1003010002A1066D000000000000000000000000400000E42C000000FFFFFFFF29000000020000002B000000000000003A0000000000B8410200000058020000000000000600000001000000570200000000000006000000, 0, -0.0435791, 0, 0.999023, -23.5156, 10.2969, -108.5);
|
||||
INSERT INTO `gameobjects` VALUES (602, 'lobby', 'oa_jump_stand', 0x1003000000B1DBE50000000000000000000000004000000D2C000000FFFFFFFF29000000010000002B00000000000000, 0, 0.0435791, 0, 0.999023, 5.69922, -2.39844, -73.5);
|
||||
INSERT INTO `gameobjects` VALUES (603, 'lobby', 'ob_9900_0399', 0x1003010002A1066D000000000000000000000000400000E42C000000FFFFFFFF29000000010000002B000000000000003A0000000000B841020000005C0200000000000006000000010000005A0200000000000006000000, 0, 0.0435791, 0, 0.999023, 5.69922, -2.39844, -73.5);
|
||||
INSERT INTO `gameobjects` VALUES (604, 'lobby', 'ob_9900_0399', 0x1003010002A1066D000000000000000000000000400000E42C000000FFFFFFFF29000000020000002B000000000000003A0000000000B841020000005B0200000000000006000000010000005A0200000000000006000000, 0, 0.0435791, 0, 0.999023, 23.7344, 10.2969, -108.312);
|
||||
INSERT INTO `gameobjects` VALUES (605, 'lobby', 'oa_jump_stand', 0x1003000000B1DBE50000000000000000000000004000000D2C000000FFFFFFFF29000000010000002B00000000000000, 0, -0.0435791, 0, 0.999023, -5.69922, -2.39844, -73.5);
|
||||
INSERT INTO `gameobjects` VALUES (606, 'lobby', 'ob_9900_0399', 0x1003010002A1066D000000000000000000000000400000E42C000000FFFFFFFF29000000010000002B000000000000003A0000000000B841020000005F0200000000000006000000010000005D0200000000000006000000, 0, -0.0435791, 0, 0.999023, -5.69922, -2.39844, -73.5);
|
||||
INSERT INTO `gameobjects` VALUES (607, 'lobby', 'ob_9900_0399', 0x1003010002A1066D000000000000000000000000400000E42C000000FFFFFFFF29000000020000002B000000000000003A0000000000B841020000005E0200000000000006000000010000005D0200000000000006000000, 0, -0.0435791, 0, 0.999023, -23.5156, 10.2969, -108.5);
|
||||
INSERT INTO `gameobjects` VALUES (608, 'lobby', 'oa_jump_stand', 0x1003000000B1DBE50000000000000000000000004000000D2C000000FFFFFFFF29000000010000002B00000000000000, 0, 0.0435791, 0, 0.999023, 5.69922, -2.39844, -73.5);
|
||||
INSERT INTO `gameobjects` VALUES (609, 'lobby', 'ob_9900_0399', 0x1003010002A1066D000000000000000000000000400000E42C000000FFFFFFFF29000000010000002B000000000000003A0000000000B8410200000062020000000000000600000001000000600200000000000006000000, 0, 0.0435791, 0, 0.999023, 5.69922, -2.39844, -73.5);
|
||||
INSERT INTO `gameobjects` VALUES (610, 'lobby', 'ob_9900_0399', 0x1003010002A1066D000000000000000000000000400000E42C000000FFFFFFFF29000000020000002B000000000000003A0000000000B8410200000061020000000000000600000001000000600200000000000006000000, 0, 0.0435791, 0, 0.999023, 23.7344, 10.2969, -108.312);
|
||||
INSERT INTO `gameobjects` VALUES (611, 'lobby', 'oa_jump_stand', 0x1003000000B1DBE50000000000000000000000004000000D2C000000FFFFFFFF29000000010000002B00000000000000, 0, -0.0435791, 0, 0.999023, -5.69922, -2.39844, -73.5);
|
||||
INSERT INTO `gameobjects` VALUES (612, 'lobby', 'ob_9900_0399', 0x1003010002A1066D000000000000000000000000400000E42C000000FFFFFFFF29000000010000002B000000000000003A0000000000B8410200000065020000000000000600000001000000630200000000000006000000, 0, -0.0435791, 0, 0.999023, -5.69922, -2.39844, -73.5);
|
||||
INSERT INTO `gameobjects` VALUES (613, 'lobby', 'ob_9900_0399', 0x1003010002A1066D000000000000000000000000400000E42C000000FFFFFFFF29000000020000002B000000000000003A0000000000B8410200000064020000000000000600000001000000630200000000000006000000, 0, -0.0435791, 0, 0.999023, -23.5156, 10.2969, -108.5);
|
||||
INSERT INTO `gameobjects` VALUES (614, 'lobby', 'oa_jump_stand', 0x1003000000B1DBE50000000000000000000000004000000D2C000000FFFFFFFF29000000010000002B00000000000000, 0, 0.0435791, 0, 0.999023, 5.69922, -2.39844, -73.5);
|
||||
INSERT INTO `gameobjects` VALUES (615, 'lobby', 'ob_9900_0399', 0x1003010002A1066D000000000000000000000000400000E42C000000FFFFFFFF29000000010000002B000000000000003A0000000000B8410200000068020000000000000600000001000000660200000000000006000000, 0, 0.0435791, 0, 0.999023, 5.69922, -2.39844, -73.5);
|
||||
INSERT INTO `gameobjects` VALUES (616, 'lobby', 'ob_9900_0399', 0x1003010002A1066D000000000000000000000000400000E42C000000FFFFFFFF29000000020000002B000000000000003A0000000000B8410200000067020000000000000600000001000000660200000000000006000000, 0, 0.0435791, 0, 0.999023, 23.7344, 10.2969, -108.312);
|
||||
INSERT INTO `gameobjects` VALUES (617, 'lobby', 'oa_jump_stand', 0x1003000000B1DBE50000000000000000000000004000000D2C000000FFFFFFFF29000000010000002B00000000000000, 0, -0.0435791, 0, 0.999023, -5.69922, -2.39844, -73.5);
|
||||
INSERT INTO `gameobjects` VALUES (618, 'lobby', 'ob_9900_0399', 0x1003010002A1066D000000000000000000000000400000E42C000000FFFFFFFF29000000010000002B000000000000003A0000000000B841020000006B020000000000000600000001000000690200000000000006000000, 0, -0.0435791, 0, 0.999023, -5.69922, -2.39844, -73.5);
|
||||
INSERT INTO `gameobjects` VALUES (619, 'lobby', 'ob_9900_0399', 0x1003010002A1066D000000000000000000000000400000E42C000000FFFFFFFF29000000020000002B000000000000003A0000000000B841020000006A020000000000000600000001000000690200000000000006000000, 0, -0.0435791, 0, 0.999023, -23.5156, 10.2969, -108.5);
|
||||
INSERT INTO `gameobjects` VALUES (620, 'lobby', 'oa_jump_stand', 0x1003000000B1DBE50000000000000000000000004000000D2C000000FFFFFFFF29000000010000002B00000000000000, 0, 0.0435791, 0, 0.999023, 5.69922, -2.39844, -73.5);
|
||||
INSERT INTO `gameobjects` VALUES (621, 'lobby', 'ob_9900_0399', 0x1003010002A1066D000000000000000000000000400000E42C000000FFFFFFFF29000000010000002B000000000000003A0000000000B841020000006E0200000000000006000000010000006C0200000000000006000000, 0, 0.0435791, 0, 0.999023, 5.69922, -2.39844, -73.5);
|
||||
INSERT INTO `gameobjects` VALUES (622, 'lobby', 'ob_9900_0399', 0x1003010002A1066D000000000000000000000000400000E42C000000FFFFFFFF29000000020000002B000000000000003A0000000000B841020000006D0200000000000006000000010000006C0200000000000006000000, 0, 0.0435791, 0, 0.999023, 23.7344, 10.2969, -108.312);
|
||||
INSERT INTO `gameobjects` VALUES (623, 'lobby', 'oa_jump_stand', 0x1003000000126DCA000000000000000000000000400000AA2C000000FFFFFFFF29000000010000002B00000000000000, 0, -0.0435791, 0, 0.999023, -5.69922, -2.39844, -73.5);
|
||||
INSERT INTO `gameobjects` VALUES (624, 'lobby', 'ob_9900_0399', 0x1003010002A1066D000000000000000000000000400000E42C000000FFFFFFFF29000000010000002B000000000000003A0000000000B84102000000710200000000000006000000010000006F0200000000000006000000, 0, -0.0435791, 0, 0.999023, -5.69922, -2.39844, -73.5);
|
||||
INSERT INTO `gameobjects` VALUES (625, 'lobby', 'ob_9900_0399', 0x1003010002A1066D000000000000000000000000400000E42C000000FFFFFFFF29000000020000002B000000000000003A0000000000B84102000000700200000000000006000000010000006F0200000000000006000000, 0, -0.0435791, 0, 0.999023, -23.5156, 10.2969, -108.5);
|
||||
INSERT INTO `gameobjects` VALUES (626, 'lobby', 'oa_jump_stand', 0x1003000000126DCA000000000000000000000000400000AA2C000000FFFFFFFF29000000010000002B00000000000000, 0, 0.0435791, 0, 0.999023, 5.69922, -2.39844, -73.5);
|
||||
INSERT INTO `gameobjects` VALUES (627, 'lobby', 'ob_9900_0399', 0x1003010002A1066D000000000000000000000000400000E42C000000FFFFFFFF29000000010000002B000000000000003A0000000000B8410200000074020000000000000600000001000000720200000000000006000000, 0, 0.0435791, 0, 0.999023, 5.69922, -2.39844, -73.5);
|
||||
INSERT INTO `gameobjects` VALUES (628, 'lobby', 'ob_9900_0399', 0x1003010002A1066D000000000000000000000000400000E42C000000FFFFFFFF29000000020000002B000000000000003A0000000000B8410200000073020000000000000600000001000000720200000000000006000000, 0, 0.0435791, 0, 0.999023, 23.7344, 10.2969, -108.312);
|
||||
INSERT INTO `gameobjects` VALUES (629, 'lobby', 'oa_jump_stand', 0x1003000000126DCA000000000000000000000000400000AA2C000000FFFFFFFF29000000010000002B00000000000000, 0, -0.0435791, 0, 0.999023, -5.69922, -2.39844, -73.5);
|
||||
INSERT INTO `gameobjects` VALUES (630, 'lobby', 'ob_9900_0399', 0x1003010002A1066D000000000000000000000000400000E42C000000FFFFFFFF29000000010000002B000000000000003A0000000000B8410200000077020000000000000600000001000000750200000000000006000000, 0, -0.0435791, 0, 0.999023, -5.69922, -2.39844, -73.5);
|
||||
INSERT INTO `gameobjects` VALUES (631, 'lobby', 'ob_9900_0399', 0x1003010002A1066D000000000000000000000000400000E42C000000FFFFFFFF29000000020000002B000000000000003A0000000000B8410200000076020000000000000600000001000000750200000000000006000000, 0, -0.0435791, 0, 0.999023, -23.5156, 10.2969, -108.5);
|
||||
INSERT INTO `gameobjects` VALUES (632, 'lobby', 'oa_jump_stand', 0x1003000000126DCA000000000000000000000000400000AA2C000000FFFFFFFF29000000010000002B00000000000000, 0, 0.0435791, 0, 0.999023, 5.69922, -2.39844, -73.5);
|
||||
INSERT INTO `gameobjects` VALUES (633, 'lobby', 'ob_9900_0399', 0x1003010002A1066D000000000000000000000000400000E42C000000FFFFFFFF29000000010000002B000000000000003A0000000000B841020000007A020000000000000600000001000000780200000000000006000000, 0, 0.0435791, 0, 0.999023, 5.69922, -2.39844, -73.5);
|
||||
INSERT INTO `gameobjects` VALUES (634, 'lobby', 'ob_9900_0399', 0x1003010002A1066D000000000000000000000000400000E42C000000FFFFFFFF29000000020000002B000000000000003A0000000000B8410200000079020000000000000600000001000000780200000000000006000000, 0, 0.0435791, 0, 0.999023, 23.7344, 10.2969, -108.312);
|
||||
INSERT INTO `gameobjects` VALUES (635, 'lobby', 'oa_jump_stand', 0x1003000000126DCA020000000000000000000000400000AA2C000000FFFFFFFF29000000010000002B00000000000000, 0, -0.0435791, 0, 0.999023, -5.69922, -2.39844, -73.5);
|
||||
INSERT INTO `gameobjects` VALUES (636, 'lobby', 'ob_9900_0399', 0x1003010002A1066D020000000000000000000000400000E42C000000FFFFFFFF29000000010000002B000000000000003A0000000000B841020000007D0200000000000006000000010000007B0200000000000006000000, 0, -0.0435791, 0, 0.999023, -5.69922, -2.39844, -73.5);
|
||||
INSERT INTO `gameobjects` VALUES (637, 'lobby', 'ob_9900_0399', 0x1003010002A1066D020000000000000000000000400000E42C000000FFFFFFFF29000000020000002B000000000000003A0000000000B841020000007C0200000000000006000000010000007B0200000000000006000000, 0, -0.0435791, 0, 0.999023, -23.5156, 10.2969, -108.5);
|
||||
INSERT INTO `gameobjects` VALUES (638, 'lobby', 'oa_jump_stand', 0x1003000000126DCA020000000000000000000000400000AA2C000000FFFFFFFF29000000010000002B00000000000000, 0, 0.0435791, 0, 0.999023, 5.69922, -2.39844, -73.5);
|
||||
INSERT INTO `gameobjects` VALUES (639, 'lobby', 'ob_9900_0399', 0x1003010002A1066D020000000000000000000000400000E42C000000FFFFFFFF29000000010000002B000000000000003A0000000000B84102000000800200000000000006000000010000007E0200000000000006000000, 0, 0.0435791, 0, 0.999023, 5.69922, -2.39844, -73.5);
|
||||
INSERT INTO `gameobjects` VALUES (640, 'lobby', 'ob_9900_0399', 0x1003010002A1066D020000000000000000000000400000E42C000000FFFFFFFF29000000020000002B000000000000003A0000000000B841020000007F0200000000000006000000010000007E0200000000000006000000, 0, 0.0435791, 0, 0.999023, 23.7344, 10.2969, -108.312);
|
||||
INSERT INTO `gameobjects` VALUES (641, 'lobby', 'oa_jump_stand', 0x1003000000126DCA000000000000000000000000400000AA2C000000FFFFFFFF29000000010000002B00000000000000, 0, -0.0435791, 0, 0.999023, -5.69922, -2.39844, -73.5);
|
||||
INSERT INTO `gameobjects` VALUES (642, 'lobby', 'ob_9900_0399', 0x1003010002A1066D000000000000000000000000400000E42C000000FFFFFFFF29000000010000002B000000000000003A0000000000B8410200000083020000000000000600000001000000810200000000000006000000, 0, -0.0435791, 0, 0.999023, -5.69922, -2.39844, -73.5);
|
||||
INSERT INTO `gameobjects` VALUES (643, 'lobby', 'ob_9900_0399', 0x1003010002A1066D000000000000000000000000400000E42C000000FFFFFFFF29000000020000002B000000000000003A0000000000B8410200000082020000000000000600000001000000810200000000000006000000, 0, -0.0435791, 0, 0.999023, -23.5156, 10.2969, -108.5);
|
||||
INSERT INTO `gameobjects` VALUES (644, 'lobby', 'oa_jump_stand', 0x1003000000126DCA000000000000000000000000400000AA2C000000FFFFFFFF29000000010000002B00000000000000, 0, 0.0435791, 0, 0.999023, 5.69922, -2.39844, -73.5);
|
||||
INSERT INTO `gameobjects` VALUES (645, 'lobby', 'ob_9900_0399', 0x1003010002A1066D000000000000000000000000400000E42C000000FFFFFFFF29000000010000002B000000000000003A0000000000B8410200000086020000000000000600000001000000840200000000000006000000, 0, 0.0435791, 0, 0.999023, 5.69922, -2.39844, -73.5);
|
||||
INSERT INTO `gameobjects` VALUES (646, 'lobby', 'ob_9900_0399', 0x1003010002A1066D000000000000000000000000400000E42C000000FFFFFFFF29000000020000002B000000000000003A0000000000B8410200000085020000000000000600000001000000840200000000000006000000, 0, 0.0435791, 0, 0.999023, 23.7344, 10.2969, -108.312);
|
||||
INSERT INTO `gameobjects` VALUES (647, 'lobby', 'oa_jump_stand', 0x1003000000126DCA020000000000000000000000400000AA2C000000FFFFFFFF29000000010000002B00000000000000, 0, 0, 0, 1, 0.039978, 2.5, 180);
|
||||
INSERT INTO `gameobjects` VALUES (648, 'lobby', 'ob_9900_0399', 0x1003010002A1066D020000000000000000000000400000E42C000000FFFFFFFF29000000010000002B000000000000003A0000000000A0410200000089020000000000000600000001000000870200000000000006000000, 0, 0, 0, 1, 0.039978, 2.5, 180);
|
||||
INSERT INTO `gameobjects` VALUES (649, 'lobby', 'ob_9900_0399', 0x1003010002A1066D020000000000000000000000400000E42C000000FFFFFFFF29000000020000002B000000000000003A0000000000A0410200000088020000000000000600000001000000870200000000000006000000, 0, 0, 0, 1, 0.0199738, 15, 210.375);
|
||||
INSERT INTO `gameobjects` VALUES (650, 'lobby', 'oa_body_collision', 0x1007000100A1066D020000000000000000000000400000E42C000000FFFFFFFF29000000010000002B000000010000002A000000000000003C0000000000000032000000000000002D000000010000001200000000490051003C0000, 0, 0, 0, 1, -47, 0, -186.25);
|
||||
INSERT INTO `gameobjects` VALUES (651, 'lobby', 'oa_body_collision', 0x1007000100A1066D020000000000000000000000400000E42C000000FFFFFFFF29000000010000002B000000010000002A000000000000003C0000000000000032000000000000002D000000010000001200000000490051003C0000, 0, 0, 0, 1, 47, 0, -186.25);
|
||||
INSERT INTO `gameobjects` VALUES (652, 'lobby', 'oa_body_collision', 0x1007000100A1066D020000000000000000000000400000E42C000000FFFFFFFF29000000010000002B000000010000002A000000000000003C0000000000000032000000000000002D000000010000001200000000490051003C0000, 0, 0, 0, 1, 64, 0, -186.25);
|
||||
INSERT INTO `gameobjects` VALUES (653, 'lobby', 'oa_body_collision', 0x1007000100A1066D020000000000000000000000400000E42C000000FFFFFFFF29000000010000002B000000010000002A000000000000003C0000000000000032000000000000002D000000010000001200000000490051003C0000, 0, 0, 0, 1, -64, 0, -186.25);
|
||||
INSERT INTO `gameobjects` VALUES (654, 'lobby', 'oa_body_collision', 0x1007000100A1066D020000000000000000000000400000E42C000000FFFFFFFF29000000010000002B000000010000002A000000000000003C0000000000000032000000000000002D0000000100000012000000663C004C00490000, 0, 0.0784302, 0, 0.996582, -22.5, 0, 113.562);
|
||||
INSERT INTO `gameobjects` VALUES (655, 'lobby', 'oa_body_collision', 0x1007000100A1066D020000000000000000000000400000E42C000000FFFFFFFF29000000010000002B000000010000002A000000000000003C0000000000000032000000000000002D0000000100000012000000333D004C00490000, 0, -0.0784302, 0, 0.996582, 22.5, 0, 113.562);
|
||||
INSERT INTO `gameobjects` VALUES (656, 'lobby', 'oa_bonus_collision', 0x1006000100A1066D020000000000000000000000400000E42C000000FFFFFFFF29000000010000002B000000010000002A000000000000003C000000000000002D0000000100000012000000B058405600450000, 0, 0, 0, 1, -0.697754, -5.79688, 7.05078);
|
||||
INSERT INTO `gameobjects` VALUES (657, 'lobby', 'oa_bonus_collision', 0x1006000100A1066D020000000000000000000000400000E42C000000FFFFFFFF29000000010000002B000000010000002A000000000000003C000000000000002D00000001000000120000004052405600450000, 0, 0, 0, 1, -0.697754, -5.79688, -192.875);
|
||||
INSERT INTO `gameobjects` VALUES (658, 'lobby', 'oa_bonus_collision', 0x1006000100A1066D020000000000000000000000400000E42C000000FFFFFFFF29000000010000002B000000010000002A000000000000003C000000000000002D00000001000000120000004052405600450000, 0, 0.923828, 0, 0.382568, 88.875, -5.79688, -87.875);
|
||||
INSERT INTO `gameobjects` VALUES (659, 'lobby', 'oa_bonus_collision', 0x1006000100A1066D020000000000000000000000400000E42C000000FFFFFFFF29000000010000002B000000010000002A000000000000003C000000000000002D00000001000000120000006054405600450000, 0, 0.707031, 0, 0.707031, 74.25, -5.79688, -137.875);
|
||||
INSERT INTO `gameobjects` VALUES (660, 'lobby', 'oa_bonus_collision', 0x1006000100A1066D020000000000000000000000400000E42C000000FFFFFFFF29000000010000002B000000010000002A000000000000003C000000000000002D00000001000000120000004052405600450000, 0, 0.707031, 0, 0.707031, 74.25, -5.79688, -17.9375);
|
||||
INSERT INTO `gameobjects` VALUES (661, 'lobby', 'oa_bonus_collision', 0x1006000100A1066D020000000000000000000000400000E42C000000FFFFFFFF29000000010000002B000000010000002A000000000000003C000000000000002D0000000100000012000000804B405600450000, 0, 0, 0, 1, 79.25, -5.79688, -172.875);
|
||||
INSERT INTO `gameobjects` VALUES (662, 'lobby', 'oa_bonus_collision', 0x1006000100A1066D020000000000000000000000400000E42C000000FFFFFFFF29000000010000002B000000010000002A000000000000003C000000000000002D00000001000000120000008053405600450000, 0, 0, 0, 1, 54.2812, -5.79688, -242.875);
|
||||
INSERT INTO `gameobjects` VALUES (663, 'lobby', 'oa_bonus_collision', 0x1006000100A1066D020000000000000000000000400000E42C000000FFFFFFFF29000000010000002B000000010000002A000000000000003C000000000000002D00000001000000120000004052405600450000, 0, 0.707031, 0, 0.707031, 24.2969, -5.79688, -217.875);
|
||||
INSERT INTO `gameobjects` VALUES (664, 'lobby', 'oa_bonus_collision', 0x1006000100A1066D020000000000000000000000400000E42C000000FFFFFFFF29000000010000002B000000010000002A000000000000003C000000000000002D00000001000000120000006054405600450000, 0, 0.707031, 0, 0.707031, 84.25, -5.79688, -207.875);
|
||||
INSERT INTO `gameobjects` VALUES (665, 'lobby', 'oa_bonus_collision', 0x1006000100A1066D020000000000000000000000400000E42C000000FFFFFFFF29000000010000002B000000010000002A000000000000003C000000000000002D0000000100000012000000A051405600450000, 0, 0.382568, 0, 0.923828, 89.4375, -5.79688, -57.0938);
|
||||
INSERT INTO `gameobjects` VALUES (666, 'lobby', 'oa_bonus_collision', 0x1006000100A1066D020000000000000000000000400000E42C000000FFFFFFFF29000000010000002B000000010000002A000000000000003C000000000000002D0000000100000012000000804B405600450000, 0, 0, 0, 1, -80.6875, -5.79688, -172.875);
|
||||
INSERT INTO `gameobjects` VALUES (667, 'lobby', 'oa_bonus_collision', 0x1006000100A1066D020000000000000000000000400000E42C000000FFFFFFFF29000000010000002B000000010000002A000000000000003C000000000000002D00000001000000120000006054405600450000, 0, 0.707031, 0, 0.707031, -85.6875, -5.79688, -207.875);
|
||||
INSERT INTO `gameobjects` VALUES (668, 'lobby', 'oa_bonus_collision', 0x1006000100A1066D020000000000000000000000400000E42C000000FFFFFFFF29000000010000002B000000010000002A000000000000003C000000000000002D00000001000000120000006054405600450000, 0, 0.707031, 0, 0.707031, -75.6875, -5.79688, -137.875);
|
||||
INSERT INTO `gameobjects` VALUES (669, 'lobby', 'oa_bonus_collision', 0x1006000100A1066D020000000000000000000000400000E42C000000FFFFFFFF29000000010000002B000000010000002A000000000000003C000000000000002D0000000100000012000000A051405600450000, 0, 0.923828, 0, 0.382568, -90.875, -5.79688, -57.0938);
|
||||
INSERT INTO `gameobjects` VALUES (670, 'lobby', 'oa_bonus_collision', 0x1006000100A1066D020000000000000000000000400000E42C000000FFFFFFFF29000000010000002B000000010000002A000000000000003C000000000000002D00000001000000120000004052405600450000, 0, 0.382568, 0, 0.923828, -90.25, -5.79688, -87.875);
|
||||
INSERT INTO `gameobjects` VALUES (671, 'lobby', 'oa_bonus_collision', 0x1006000100A1066D020000000000000000000000400000E42C000000FFFFFFFF29000000010000002B000000010000002A000000000000003C000000000000002D00000001000000120000008053405600450000, 0, 0, 0, 1, -55.6875, -5.79688, -242.875);
|
||||
INSERT INTO `gameobjects` VALUES (672, 'lobby', 'oa_bonus_collision', 0x1006000100A1066D020000000000000000000000400000E42C000000FFFFFFFF29000000010000002B000000010000002A000000000000003C000000000000002D00000001000000120000004052405600450000, 0, 0.707031, 0, 0.707031, -75.6875, -5.79688, -17.9375);
|
||||
INSERT INTO `gameobjects` VALUES (673, 'lobby', 'oa_bonus_collision', 0x1006000100A1066D020000000000000000000000400000E42C000000FFFFFFFF29000000010000002B000000010000002A000000000000003C000000000000002D00000001000000120000004052405600450000, 0, 0.707031, 0, 0.707031, -25.6875, -5.79688, -217.875);
|
||||
INSERT INTO `gameobjects` VALUES (674, 'lobby', 'oa_bonus_collision', 0x1006000100A1066D020000000000000000000000400000E42C000000FFFFFFFF29000000010000002B000000010000002A000000000000003C000000000000002D0000000100000012000000D05B0045B05C0000, 0, 0, 0, 1, -0.697754, 39.1875, -7.94531);
|
||||
INSERT INTO `gameobjects` VALUES (675, 'lobby', 'oa_bonus_collision', 0x1006000100A1066D020000000000000000000000400000E42C000000FFFFFFFF29000000010000002B000000010000002A000000000000003C000000000000002D0000000100000012000000D05B0045B05C0000, 0, 0, 0, 1, -0.697754, -20.7969, -7.94531);
|
||||
INSERT INTO `gameobjects` VALUES (676, 'lobby', 'oa_bonus_collision', 0x1006000100A1066D020000000000000000000000400000E42C000000FFFFFFFF29000000010000002B000000010000002A000000000000003C000000000000002D0000000100000012000000404E0047404E0000, 0, 0, 0, 1, -51.0938, 12, -16.1875);
|
||||
INSERT INTO `gameobjects` VALUES (677, 'lobby', 'oa_bonus_collision', 0x1006000100A1066D020000000000000000000000400000E42C000000FFFFFFFF29000000010000002B000000010000002A000000000000003C000000000000002D0000000100000012000000404E0047404E0000, 0, 0, 0, 1, 51.0938, 12, -16.1875);
|
||||
INSERT INTO `gameobjects` VALUES (678, 'lobby', 'oa_bonus_collision', 0x1006000100A1066D020000000000000000000000400000E42C000000FFFFFFFF29000000010000002B000000010000002A000000000000003C000000000000002D0000000100000012000000004D004540520000, 0, 0.300537, 0, 0.953613, -75.25, -8, -47.7188);
|
||||
INSERT INTO `gameobjects` VALUES (679, 'lobby', 'oa_bonus_collision', 0x1006000100A1066D020000000000000000000000400000E42C000000FFFFFFFF29000000010000002B000000010000002A000000000000003C000000000000002D0000000100000012000000004D004540520000, 0, -0.300537, 0, 0.953613, 75.25, -8, -47.7188);
|
||||
INSERT INTO `gameobjects` VALUES (680, 'lobby', 'oa_bonus_collision', 0x1006000100A1066D020000000000000000000000400000E42C000000FFFFFFFF29000000010000002B000000010000002A000000000000003C000000000000002D0000000100000012000000004D804B404E0000, 0, 0, 0, 1, 0, 37, -175);
|
||||
INSERT INTO `gameobjects` VALUES (681, 'lobby', 'oa_bonus_collision', 0x1006000100A1066D020000000000000000000000400000E42C000000FFFFFFFF29000000010000002B000000010000002A000000000000003C000000020000002D00000001000000120000000044205000440000, 0, 0, 0, 1, -18, 30, -153);
|
||||
INSERT INTO `gameobjects` VALUES (682, 'lobby', 'oa_bonus_collision', 0x1006000100A1066D020000000000000000000000400000E42C000000FFFFFFFF29000000010000002B000000010000002A000000000000003C000000020000002D00000001000000120000000044205000440000, 0, 0, 0, 1, 18, 30, -153);
|
||||
INSERT INTO `gameobjects` VALUES (683, 'lobby', 'oa_bonus_collision', 0x1006000100A1066D020000000000000000000000400000E42C000000FFFFFFFF29000000010000002B000000010000002A000000000000003C000000000000002D00000001000000120000000042004C00470000, 0, 0, 0, 1, -65, 9, -153);
|
||||
INSERT INTO `gameobjects` VALUES (684, 'lobby', 'oa_bonus_collision', 0x1006000100A1066D020000000000000000000000400000E42C000000FFFFFFFF29000000010000002B000000010000002A000000000000003C000000000000002D00000001000000120000000042004C00470000, 0, 0, 0, 1, 65, 9, -153);
|
||||
INSERT INTO `gameobjects` VALUES (685, 'lobby', 'oa_bonus_collision', 0x1006000100A1066D020000000000000000000000400000E42C000000FFFFFFFF29000000010000002B000000010000002A000000000000003C000000000000002D00000001000000120000004056405600450000, 0, 0, 0, 1, 0, 0, 226);
|
||||
INSERT INTO `gameobjects` VALUES (686, 'lobby', 'oa_bonus_collision', 0x1006000100A1066D020000000000000000000000400000E42C000000FFFFFFFF29000000010000002B000000010000002A000000000000003C000000000000002D00000001000000120000008053405600450000, 0, 0, 0, 1, 0, 0, 70);
|
||||
INSERT INTO `gameobjects` VALUES (687, 'lobby', 'oa_bonus_collision', 0x1006000100A1066D020000000000000000000000400000E42C000000FFFFFFFF29000000010000002B000000010000002A000000000000003C000000000000002D00000001000000120000006054405600450000, 0, 0.765625, 0, 0.642578, -53, 0, 193);
|
||||
INSERT INTO `gameobjects` VALUES (688, 'lobby', 'oa_bonus_collision', 0x1006000100A1066D020000000000000000000000400000E42C000000FFFFFFFF29000000010000002B000000010000002A000000000000003C000000000000002D00000001000000120000001054405600450000, 0, 0.865723, 0, 0.5, -75.0625, 0, 131.125);
|
||||
INSERT INTO `gameobjects` VALUES (689, 'lobby', 'oa_bonus_collision', 0x1006000100A1066D020000000000000000000000400000E42C000000FFFFFFFF29000000010000002B000000010000002A000000000000003C000000000000002D0000000100000012000000B054405600450000, 0, 0.258545, 0, 0.96582, -61.1875, 0, 88.375);
|
||||
INSERT INTO `gameobjects` VALUES (690, 'lobby', 'oa_bonus_collision', 0x1006000100A1066D020000000000000000000000400000E42C000000FFFFFFFF29000000010000002B000000010000002A000000000000003C000000000000002D0000000100000012000000B054405600450000, 0, -0.258545, 0, 0.96582, 61.1875, 0, 88.375);
|
||||
INSERT INTO `gameobjects` VALUES (691, 'lobby', 'oa_bonus_collision', 0x1006000100A1066D020000000000000000000000400000E42C000000FFFFFFFF29000000010000002B000000010000002A000000000000003C000000000000002D00000001000000120000001054405600450000, 0, -0.865723, 0, 0.5, 75.0625, 0, 131.125);
|
||||
INSERT INTO `gameobjects` VALUES (692, 'lobby', 'oa_bonus_collision', 0x1006000100A1066D020000000000000000000000400000E42C000000FFFFFFFF29000000010000002B000000010000002A000000000000003C000000000000002D00000001000000120000006054405600450000, 0, -0.765625, 0, 0.642578, 53, 0, 193);
|
||||
INSERT INTO `gameobjects` VALUES (693, 'lobby', 'oa_bonus_collision', 0x1006000100A1066D020000000000000000000000400000E42C000000FFFFFFFF29000000010000002B000000010000002A000000000000003C000000000000002D0000000100000012000000E05A0045F0590000, 0, 0, 0, 1, 0, -10, 145);
|
||||
INSERT INTO `gameobjects` VALUES (694, 'lobby', 'oa_bonus_collision', 0x1006000100A1066D020000000000000000000000400000E42C000000FFFFFFFF29000000010000002B000000010000002A000000000000003C000000000000002D0000000100000012000000E05A0045F0590000, 0, 0, 0, 1, 0, 45, 145);
|
||||
INSERT INTO `gameobjects` VALUES (695, 'lobby', 'oa_bonus_collision', 0x1006000100A1066D020000000000000000000000400000E42C000000FFFFFFFF29000000010000002B000000010000002A000000000000003C000000000000002D0000000100000012000000804B404E804B0000, 0, 0, 0, 1, 0, 45, 180);
|
||||
INSERT INTO `gameobjects` VALUES (696, 'lobby', 'oa_bonus_collision', 0x1006000100A1066D020000000000000000000000400000E42C000000FFFFFFFF29000000010000002B000000010000002A000000000000003C000000000000002D0000000100000012000000004C0045804B0000, 0, 0, 0, 1, 0, 10, 105);
|
||||
INSERT INTO `gameobjects` VALUES (697, 'lobby', 'oa_bonus_collision', 0x1006000100A1066D020000000000000000000000400000E42C000000FFFFFFFF29000000010000002B000000010000002A000000000000003C000000000000002D0000000100000012000000004D804F804B0000, 0, -0.113159, 0, 0.993164, 34.3125, 0, 110.875);
|
||||
INSERT INTO `gameobjects` VALUES (698, 'lobby', 'oa_bonus_collision', 0x1006000100A1066D020000000000000000000000400000E42C000000FFFFFFFF29000000010000002B000000010000002A000000000000003C000000000000002D0000000100000012000000004D804F804B0000, 0, 0.113159, 0, 0.993164, -34.3125, 0, 110.875);
|
||||
INSERT INTO `gameobjects` VALUES (699, 'lobby', 'oa_bonus_collision', 0x1006000100A1066D020000000000000000000000400000E42C000000FFFFFFFF29000000010000002B000000010000002A000000000000003C000000000000002D0000000100000012000000804C804F00460000, 0, 0.0348816, 0, 0.999023, -17, 0, 104);
|
||||
INSERT INTO `gameobjects` VALUES (700, 'lobby', 'oa_bonus_collision', 0x1006000100A1066D020000000000000000000000400000E42C000000FFFFFFFF29000000010000002B000000010000002A000000000000003C000000000000002D0000000100000012000000804C804F00460000, 0, -0.0348816, 0, 0.999023, 17, 0, 104);
|
||||
INSERT INTO `gameobjects` VALUES (701, 'lobby', 'oa_bonus_collision', 0x1006000100A1066D020000000000000000000000400000E42C000000FFFFFFFF29000000010000002B000000010000002A000000000000003C000000000000002D00000001000000120000004056404E804B0000, 0, 0, 0, 1, 0, 0, 223.5);
|
||||
INSERT INTO `gameobjects` VALUES (702, 'lobby', 'oa_bonus_collision', 0x1006000100A1066D020000000000000000000000400000E42C000000FFFFFFFF29000000010000002B000000010000002A000000000000003C000000000000002D0000000100000012000000404E404E804B0000, 0, 0.190674, 0, 0.981445, 20.2344, 0, 207.875);
|
||||
INSERT INTO `gameobjects` VALUES (703, 'lobby', 'oa_bonus_collision', 0x1006000100A1066D020000000000000000000000400000E42C000000FFFFFFFF29000000010000002B000000010000002A000000000000003C000000000000002D0000000100000012000000404E404E804B0000, 0, -0.190674, 0, 0.981445, -20.2344, 0, 207.875);
|
||||
INSERT INTO `gameobjects` VALUES (704, 'lobby', 'oa_bonus_collision', 0x1006000100A1066D020000000000000000000000400000E42C000000FFFFFFFF29000000010000002B000000010000002A000000000000003C000000010000002D00000001000000120000000046004600460000, 0, 0, 0, 1, 0, 35, 180);
|
||||
INSERT INTO `gameobjects` VALUES (791, 'lobby', 'oa_forced_move', 0x10040101000E0400020000000000000000000000400000B82C000000FFFFFFFF29000000010000002B0000000100000032000000000000003800000000007041110000000049005100490000, 0, 0, 0, 1, 0, 0, 90);
|
||||
INSERT INTO `gameobjects` VALUES (792, 'lobby', 'oa_movie_object', 0x10050200000E0400020000000000000000000000400000BB2C000000FFFFFFFF29000000010000002B000000010000003D00000021000000320000000000000038000000000070423700000000008C42, 0, 0, 0, 1, 0, -5, 15);
|
||||
INSERT INTO `gameobjects` VALUES (793, 'lobby', 'oa_movie_object', 0x10050200000E0400020000000000000000000000400000BB2C000000FFFFFFFF29000000010000002B000000010000003D000000210000003200000000000000380000000000C0403700000000000041, 0, 0, 0, 1, -40, 0, -173);
|
||||
INSERT INTO `gameobjects` VALUES (794, 'lobby', 'oa_movie_object', 0x10050200000E0400020000000000000000000000400000BB2C000000FFFFFFFF29000000010000002B000000010000003D000000210000003200000000000000380000000000C0403700000000000041, 0, 0, 0, 1, -40, 7, -173);
|
||||
INSERT INTO `gameobjects` VALUES (795, 'lobby', 'oa_movie_object', 0x10050200000E0400020000000000000000000000400000BB2C000000FFFFFFFF29000000010000002B000000010000003D000000210000003200000000000000380000000000C0403700000000000041, 0, 0, 0, 1, 40, 0, -173);
|
||||
INSERT INTO `gameobjects` VALUES (796, 'lobby', 'oa_movie_object', 0x10050200000E0400020000000000000000000000400000BB2C000000FFFFFFFF29000000010000002B000000010000003D000000210000003200000000000000380000000000C0403700000000000041, 0, 0, 0, 1, 40, 7, -173);
|
||||
INSERT INTO `gameobjects` VALUES (797, 'lobby', 'oa_movie_object', 0x10050200000E0400020000000000000000000000400000BB2C000000FFFFFFFF29000000010000002B000000010000003D0000002100000032000000000000003800000000007041370000000000A041, 0, 0, 0, 1, -55.5, -2, -238);
|
||||
INSERT INTO `gameobjects` VALUES (798, 'lobby', 'oa_movie_object', 0x10050200000E0400020000000000000000000000400000BB2C000000FFFFFFFF29000000010000002B000000010000003D0000002100000032000000000000003800000000007041370000000000A041, 0, 0, 0, 1, 55.5, -2, -238);
|
||||
INSERT INTO `gameobjects` VALUES (800, 'lobby', 'ob_0102_0001', 0x1006010200000000020000000000000000000000400000072C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D000000010000003C00000001000000380000000000C040140000000048004900490000110000000000000000460000, 0, -0.87207, 0, 0.488525, 57.75, 0, -100.812);
|
||||
INSERT INTO `gameobjects` VALUES (801, 'lobby', 'ob_0102_0001', 0x1006010200000000020000000000000000000000400000072C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D000000010000003C00000001000000380000000000C040140000000048004900490000110000000000000000460000, 0, 0.87207, 0, 0.488525, -57.75, 0, -100.812);
|
||||
INSERT INTO `gameobjects` VALUES (802, 'lobby', 'ob_0102_0001', 0x1006010200000000020000000000000000000000400000072C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D000000010000003C00000001000000380000000000003F140000000046004900480000110000000000000080440000, 0, 0, 0, 1, -55.5, 0, -188.375);
|
||||
INSERT INTO `gameobjects` VALUES (803, 'lobby', 'ob_0102_0001', 0x1006010200000000020000000000000000000000400000072C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D000000010000003C00000001000000380000000000003F140000000046004900480000110000000000000080440000, 0, 0, 0, 1, 55.5, 0, -188.375);
|
||||
INSERT INTO `gameobjects` VALUES (804, 'lobby', 'ob_0102_0000', 0x1006010200000000020000000000000000000000400000072C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D000000010000003C000000010000003800000000008040140000000047004500460000110000000000004100450000, 0, -0.382568, 0, 0.923828, 18, 1, -153);
|
||||
INSERT INTO `gameobjects` VALUES (805, 'lobby', 'ob_0102_0000', 0x1006010200000000020000000000000000000000400000072C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D000000010000003C000000010000003800000000008040140000000047004500460000110000000000004100450000, 0, 0.382568, 0, 0.923828, -18, 1, -153);
|
||||
INSERT INTO `gameobjects` VALUES (806, 'lobby', 'ob_0102_0000', 0x1006010200000000020000000000000000000000400000072C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D000000010000003C00000001000000380000000000A040140000000047004500460000110000000000004100450000, 0, 0, 0, 1, 0, 15, -180.5);
|
||||
INSERT INTO `gameobjects` VALUES (807, 'lobby', 'ob_0102_0000', 0x1006010200000000020000000000000000000000400000072C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D000000010000003C00000001000000380000000000A040140000000048004900460000110000000000000000450000, 0, 1, 0, 0, 0, 2.59961, 156.5);
|
||||
INSERT INTO `gameobjects` VALUES (808, 'lobby', 'ob_0102_0000', 0x1006010200000000020000000000000000000000400000072C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D000000010000003C00000001000000380000000000A040140000000048004900460000110000000000000000450000, 0, 0.987305, 0, -0.156372, 34, 0.399902, 163.25);
|
||||
INSERT INTO `gameobjects` VALUES (809, 'lobby', 'ob_0102_0000', 0x1006010200000000020000000000000000000000400000072C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D000000010000003C00000001000000380000000000A040140000000048004900460000110000000000000000450000, 0, -0.987305, 0, -0.156372, -34, 0.399902, 163.25);
|
||||
INSERT INTO `gameobjects` VALUES (810, 'lobby', 'ob_0102_0001', 0x1006010200000000020000000000000000000000400000072C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D000000010000003C00000001000000380000000000A040140000000049004900480000110000000000000000460000, 0, -0.195068, 0, 0.980469, 50.5312, 0.299805, 120);
|
||||
INSERT INTO `gameobjects` VALUES (811, 'lobby', 'ob_0102_0001', 0x1006010200000000020000000000000000000000400000072C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D000000010000003C00000001000000380000000000A040140000000049004900480000110000000000000000460000, 0, 0.195068, 0, 0.980469, -50.5312, 0.299805, 120);
|
||||
INSERT INTO `gameobjects` VALUES (812, 'lobby', 'ob_0102_0001', 0x1006010200000000020000000000000000000000400000072C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D000000010000003C00000001000000380000000000A040140000000049004900480000110000000000000000460000, 0, 1, 0, 0, 0.119995, 2.69922, 210.25);
|
||||
INSERT INTO `gameobjects` VALUES (855, 'casino', 'ob_0104_0016', 0x1005000000074000020000000000000000000000400000002C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, 0, 6.52734, 116.062);
|
||||
INSERT INTO `gameobjects` VALUES (856, 'casino', 'ob_0100_0002', 0x1005000000074000020000000000000000000000400000002C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, -0.499756, 0, 0.865723, 26.7969, 6.5, 69.1875);
|
||||
INSERT INTO `gameobjects` VALUES (857, 'casino', 'ob_0150_0001', 0x1005000000074000020000000000000000000000400000002C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, -0.499756, 0, 0.865723, 28.7969, 6.5, 72.6875);
|
||||
INSERT INTO `gameobjects` VALUES (858, 'casino', 'ob_0104_0015', 0x1005000000074000020000000000000000000000400000002C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 1, 0, 0, -2.5, 8.79688, 79);
|
||||
INSERT INTO `gameobjects` VALUES (859, 'casino', 'ob_0104_0015', 0x1005000000074000020000000000000000000000400000002C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0.0325317, 0.938965, 0.122375, 0.318359, 16, 18.2969, -7.39844);
|
||||
INSERT INTO `gameobjects` VALUES (860, 'casino', 'ob_0104_0015', 0x1005000000074000020000000000000000000000400000002C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0.174561, 0.519043, -0.102905, 0.830078, -38.0938, 28.3906, -22);
|
||||
INSERT INTO `gameobjects` VALUES (861, 'casino', 'ob_0104_0015', 0x1005000000074000020000000000000000000000400000002C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0.136108, -0.989746, 0.0136337, -0.0374451, 2.79883, 22, 63);
|
||||
INSERT INTO `gameobjects` VALUES (862, 'casino', 'ob_0104_0015', 0x1005000000074000020000000000000000000000400000002C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, -0.0059166, 0.198364, 0.00119877, 0.97998, -32.375, 4.89844, -45.375);
|
||||
INSERT INTO `gameobjects` VALUES (863, 'casino', 'ob_0104_0018', 0x1005000000074000020000000000000000000000400000002C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.818848, 0, 0.573242, -47.2812, 3, 12.25);
|
||||
INSERT INTO `gameobjects` VALUES (864, 'casino', 'ob_0104_0018', 0x1005000000074000020000000000000000000000400000002C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, -0.792969, 0, 0.608398, -47.375, 3.09961, -12);
|
||||
INSERT INTO `gameobjects` VALUES (865, 'casino', 'ob_0104_0018', 0x1005000000074000020000000000000000000000400000002C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.608398, 0, 0.792969, 46.7812, 2.89844, 12.2969);
|
||||
INSERT INTO `gameobjects` VALUES (866, 'casino', 'ob_0104_0018', 0x1005000000074000020000000000000000000000400000002C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.792969, 0, 0.608398, 47, 3, -12.0938);
|
||||
INSERT INTO `gameobjects` VALUES (867, 'casino', 'ob_0104_0018', 0x1005000000074000020000000000000000000000400000002C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, -0.173584, 0, 0.984375, 11.5938, 0.349854, -34.1875);
|
||||
INSERT INTO `gameobjects` VALUES (868, 'casino', 'ob_0104_0018', 0x1005000000074000020000000000000000000000400000002C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, -11.5938, 0.349854, -34.375);
|
||||
INSERT INTO `gameobjects` VALUES (869, 'casino', 'ob_0104_0018', 0x1005000000074000020000000000000000000000400000002C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.0870972, 0, 0.996094, 11.5938, 0.349854, 34.375);
|
||||
INSERT INTO `gameobjects` VALUES (870, 'casino', 'ob_0104_0018', 0x1005000000074000020000000000000000000000400000002C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, -0.258545, 0, 0.96582, -11.5938, 0.349854, 34.375);
|
||||
INSERT INTO `gameobjects` VALUES (871, 'casino', 'ob_0104_0014', 0x1005000000074000020000000000000000000000400100002C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, -0.573242, 0, 0.818848, 59, 6.5, -21.5938);
|
||||
INSERT INTO `gameobjects` VALUES (872, 'casino', 'oa_sit_point', 0x100500000296F9D4020000000000000000000000400000A22C000000FFFFFFFF29000000010000002B00000001000000320000000100000034000000010000000900000000000000000000000000000000000000670300000000000006000000, 0, -0.573242, 0, 0.818848, 59, 6.5, -21.5938);
|
||||
INSERT INTO `gameobjects` VALUES (873, 'casino', 'ob_0104_0014', 0x1005000000074000020000000000000000000000400100002C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, -0.818848, 0, 0.573242, 59, 6.5, 21.2969);
|
||||
INSERT INTO `gameobjects` VALUES (874, 'casino', 'oa_sit_point', 0x100500000296F9D4020000000000000000000000400000A22C000000FFFFFFFF29000000010000002B00000001000000320000000100000034000000010000000900000000000000000000000000000000000000690300000000000006000000, 0, -0.818848, 0, 0.573242, 59, 6.5, 21.2969);
|
||||
INSERT INTO `gameobjects` VALUES (875, 'casino', 'ob_0104_0014', 0x1005000000074000020000000000000000000000400100002C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.818848, 0, 0.573242, -59, 6.5, 21.2969);
|
||||
INSERT INTO `gameobjects` VALUES (876, 'casino', 'oa_sit_point', 0x100500000296F9D4020000000000000000000000400000A22C000000FFFFFFFF29000000010000002B000000010000003200000001000000340000000100000009000000000000000000000000000000000000006B0300000000000006000000, 0, 0.818848, 0, 0.573242, -59, 6.5, 21.2969);
|
||||
INSERT INTO `gameobjects` VALUES (877, 'casino', 'ob_0104_0014', 0x1005000000074000020000000000000000000000400100002C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.573242, 0, 0.818848, -59, 6.5, -21.5938);
|
||||
INSERT INTO `gameobjects` VALUES (878, 'casino', 'oa_sit_point', 0x100500000296F9D4020000000000000000000000400000A22C000000FFFFFFFF29000000010000002B000000010000003200000001000000340000000100000009000000000000000000000000000000000000006D0300000000000006000000, 0, 0.573242, 0, 0.818848, -59, 6.5, -21.5938);
|
||||
INSERT INTO `gameobjects` VALUES (879, 'casino', 'ob_0104_0014', 0x1005000000074000020000000000000000000000400100002C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.0870972, 0, 0.996094, -12.0938, 6.5, -61.5938);
|
||||
INSERT INTO `gameobjects` VALUES (880, 'casino', 'oa_sit_point', 0x100500000296F9D4020000000000000000000000400000A22C000000FFFFFFFF29000000010000002B000000010000003200000001000000340000000100000009000000000000000000000000000000000000006F0300000000000006000000, 0, 0.0870972, 0, 0.996094, -12.0938, 6.5, -61.5938);
|
||||
INSERT INTO `gameobjects` VALUES (881, 'casino', 'ob_0104_0014', 0x1005000000074000020000000000000000000000400100002C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.0870972, 0, 0.996094, -9.69531, 6.5, -62);
|
||||
INSERT INTO `gameobjects` VALUES (882, 'casino', 'oa_sit_point', 0x100500000296F9D4020000000000000000000000400000A22C000000FFFFFFFF29000000010000002B00000001000000320000000100000034000000010000000900000000000000000000000000000000000000710300000000000006000000, 0, 0.0870972, 0, 0.996094, -9.69531, 6.5, -62);
|
||||
INSERT INTO `gameobjects` VALUES (883, 'casino', 'ob_0104_0014', 0x1005000000074000020000000000000000000000400100002C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, -0.0870972, 0, 0.996094, 9.59375, 6.5, -62.1875);
|
||||
INSERT INTO `gameobjects` VALUES (884, 'casino', 'oa_sit_point', 0x100500000296F9D4020000000000000000000000400000A22C000000FFFFFFFF29000000010000002B00000001000000320000000100000034000000010000000900000000000000000000000000000000000000730300000000000006000000, 0, -0.0870972, 0, 0.996094, 9.59375, 6.5, -62.1875);
|
||||
INSERT INTO `gameobjects` VALUES (885, 'casino', 'ob_0104_0014', 0x1005000000074000020000000000000000000000400100002C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, -0.0870972, 0, 0.996094, 12.1953, 6.5, -61.6875);
|
||||
INSERT INTO `gameobjects` VALUES (886, 'casino', 'oa_sit_point', 0x100500000296F9D4020000000000000000000000400000A22C000000FFFFFFFF29000000010000002B00000001000000320000000100000034000000010000000900000000000000000000000000000000000000750300000000000006000000, 0, -0.0870972, 0, 0.996094, 12.1953, 6.5, -61.6875);
|
||||
INSERT INTO `gameobjects` VALUES (887, 'casino', 'ob_0104_0017', 0x1005000000074000020000000000000000000000400000002C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, 0, 0, 0);
|
||||
INSERT INTO `gameobjects` VALUES (888, 'casino', 'ob_0104_0001', 0x1005000000074000020000000000000000000000400000002C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, -0.258545, 0, 0.96582, -14, 6.5, 72);
|
||||
INSERT INTO `gameobjects` VALUES (889, 'casino', 'ob_0104_0001', 0x1005000000074000020000000000000000000000400000002C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.258545, 0, 0.96582, 14, 6.5, 72);
|
||||
INSERT INTO `gameobjects` VALUES (890, 'casino', 'ob_0104_0024', 0x1005000000074000020000000000000000000000400000002C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, -0.341797, 0, 0.939453, 28.9062, 0, -34.4688);
|
||||
INSERT INTO `gameobjects` VALUES (891, 'casino', 'ob_0104_0006', 0x1005000000074000020000000000000000000000400000002C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.642578, 0, 0.765625, 0, 0, 0);
|
||||
INSERT INTO `gameobjects` VALUES (892, 'casino', 'ob_0104_0006', 0x1005000000074000020000000000000000000000400000002C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.765625, 0, -0.642578, 0, 0, 0);
|
||||
INSERT INTO `gameobjects` VALUES (893, 'casino', 'ob_0104_0006', 0x1005000000074000020000000000000000000000400000002C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.0000957251, 0, -1, 0, 0, 0);
|
||||
INSERT INTO `gameobjects` VALUES (894, 'casino', 'ob_0104_0020', 0x1005000000074000020000000000000000000000400000002C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, -42.375, 0.349854, 0);
|
||||
INSERT INTO `gameobjects` VALUES (895, 'casino', 'oa_am_cardgame_dealer001', 0x1005000000074000020000000000000000000000400000002C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.765625, 0, 0.642578, -38.875, 0.399902, 5.29688);
|
||||
INSERT INTO `gameobjects` VALUES (896, 'casino', 'oa_am_cardgame_dealer001', 0x1005000000074000020000000000000000000000400000002C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.765625, 0, 0.642578, -45.1875, 0.399902, 3.19922);
|
||||
INSERT INTO `gameobjects` VALUES (897, 'casino', 'oa_am_cardgame_dealer001', 0x1005000000074000020000000000000000000000400000002C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.765625, 0, 0.642578, -51.1875, 0.399902, 6);
|
||||
INSERT INTO `gameobjects` VALUES (898, 'casino', 'oa_am_cardgame_dealer001', 0x1005000000074000020000000000000000000000400000002C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.642578, 0, 0.765625, -51.0938, 0.399902, -6);
|
||||
INSERT INTO `gameobjects` VALUES (899, 'casino', 'oa_am_cardgame_dealer001', 0x1005000000074000020000000000000000000000400000002C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.642578, 0, 0.765625, -45.1875, 0.399902, -3.16797);
|
||||
INSERT INTO `gameobjects` VALUES (900, 'casino', 'oa_am_cardgame_dealer001', 0x1005000000074000020000000000000000000000400000002C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.642578, 0, 0.765625, -39, 0.399902, -5.29688);
|
||||
INSERT INTO `gameobjects` VALUES (901, 'casino', 'ob_0180_0014', 0x1005000000074000020000000000000000000000400100002C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, -0.499756, 0, 0.865723, -19.7969, 6.5, 97.875);
|
||||
INSERT INTO `gameobjects` VALUES (902, 'casino', 'oa_sit_point', 0x100500000296F9D4020000000000000000000000400000A22C000000FFFFFFFF29000000010000002B00000001000000320000000100000034000000010000000900000000000000000000000000000000000000850300000000000006000000, 0, -0.499756, 0, 0.865723, -19.7969, 6.5, 97.875);
|
||||
INSERT INTO `gameobjects` VALUES (903, 'casino', 'ob_0180_0014', 0x1005000000074000020000000000000000000000400100002C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, -0.499756, 0, 0.865723, -20.6406, 6.5, 96.375);
|
||||
INSERT INTO `gameobjects` VALUES (904, 'casino', 'oa_sit_point', 0x100500000296F9D4020000000000000000000000400000A22C000000FFFFFFFF29000000010000002B00000001000000320000000100000034000000010000000900000000000000000000000000000000000000870300000000000006000000, 0, -0.499756, 0, 0.865723, -20.6406, 6.5, 96.375);
|
||||
INSERT INTO `gameobjects` VALUES (905, 'casino', 'ob_0180_0014', 0x1005000000074000020000000000000000000000400100002C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, -0.499756, 0, 0.865723, -21.5, 6.5, 95);
|
||||
INSERT INTO `gameobjects` VALUES (906, 'casino', 'oa_sit_point', 0x100500000296F9D4020000000000000000000000400000A22C000000FFFFFFFF29000000010000002B00000001000000320000000100000034000000010000000900000000000000000000000000000000000000890300000000000006000000, 0, -0.499756, 0, 0.865723, -21.5, 6.5, 95);
|
||||
INSERT INTO `gameobjects` VALUES (907, 'casino', 'ob_0180_0014', 0x1005000000074000020000000000000000000000400100002C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, -0.499756, 0, 0.865723, -22.3906, 6.5, 93.5);
|
||||
INSERT INTO `gameobjects` VALUES (908, 'casino', 'oa_sit_point', 0x100500000296F9D4020000000000000000000000400000A22C000000FFFFFFFF29000000010000002B000000010000003200000001000000340000000100000009000000000000000000000000000000000000008B0300000000000006000000, 0, -0.499756, 0, 0.865723, -22.3906, 6.5, 93.5);
|
||||
INSERT INTO `gameobjects` VALUES (909, 'casino', 'ob_0180_0014', 0x1005000000074000020000000000000000000000400100002C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, -0.499756, 0, 0.865723, -23.1875, 6.5, 92);
|
||||
INSERT INTO `gameobjects` VALUES (910, 'casino', 'oa_sit_point', 0x100500000296F9D4020000000000000000000000400000A22C000000FFFFFFFF29000000010000002B000000010000003200000001000000340000000100000009000000000000000000000000000000000000008D0300000000000006000000, 0, -0.499756, 0, 0.865723, -23.1875, 6.5, 92);
|
||||
INSERT INTO `gameobjects` VALUES (911, 'casino', 'oa_transfer_machine', 0x100A010000F8FFFF020000000000000000000000000000002C0000000000000029000000010000002B000000010000002E0000000000000033000000010000003B0000000000000034000000FFFFFFFF320000000100000037000000000000003A000000010000003800000000004040, 0, -0.96582, 0, 0.258789, 17.6875, 6.59766, 113.562);
|
||||
INSERT INTO `gameobjects` VALUES (912, 'casino', 'oa_transfer_machine', 0x100A010000F8FFFF020000000000000000000000000000002C0000000000000029000000010000002B000000010000002E0000000000000033000000010000003B00000000000000340000001E000000320000000200000037000000000000003A000000010000003800000000000040, 0, 0, 0, 1, -18.6875, 6.29688, 115.062);
|
||||
INSERT INTO `gameobjects` VALUES (931, 'casino', 'ob_0102_0001', 0x1006010200F8FFFF020000000000000000000000400000002C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D000000010000003C00000001000000380000000000A040140000000049004900480000110000000000000000460000, 0, 0.96582, 0, 0.258789, -18.6875, 6.29688, 115.5);
|
||||
INSERT INTO `gameobjects` VALUES (932, 'casino', 'ob_0104_0002', 0x1005000000074000020000000000000000000000400000002C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.993164, 0, 0.11322, -3.77344, 1, 16.3594);
|
||||
INSERT INTO `gameobjects` VALUES (933, 'casino', 'ob_0104_0002', 0x1005000000074000020000000000000000000000400000002C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.999023, 0, 0.0392761, -1.28418, 1, 16.75);
|
||||
INSERT INTO `gameobjects` VALUES (934, 'casino', 'ob_0104_0002', 0x1005000000074000020000000000000000000000400000002C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.999023, 0, -0.0391846, 1.2666, 1, 16.75);
|
||||
INSERT INTO `gameobjects` VALUES (935, 'casino', 'ob_0104_0002', 0x1005000000074000020000000000000000000000400000002C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.993164, 0, -0.113159, 3.78516, 1, 16.3594);
|
||||
INSERT INTO `gameobjects` VALUES (936, 'casino', 'ob_0104_0002', 0x1005000000074000020000000000000000000000400000002C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, -0.960938, 0, 0.275635, 8.90625, 1, 14.2422);
|
||||
INSERT INTO `gameobjects` VALUES (937, 'casino', 'ob_0104_0002', 0x1005000000074000020000000000000000000000400000002C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, -0.937988, 0, 0.345947, 10.9297, 1, 12.75);
|
||||
INSERT INTO `gameobjects` VALUES (938, 'casino', 'ob_0104_0002', 0x1005000000074000020000000000000000000000400000002C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, -0.909668, 0, 0.414551, 12.7422, 1, 10.9453);
|
||||
INSERT INTO `gameobjects` VALUES (939, 'casino', 'ob_0104_0002', 0x1005000000074000020000000000000000000000400000002C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, -0.874512, 0, 0.484863, 14.25, 1, 8.89062);
|
||||
INSERT INTO `gameobjects` VALUES (940, 'casino', 'ob_0104_0002', 0x1005000000074000020000000000000000000000400000002C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, -0.782227, 0, 0.62207, 16.3594, 1, 3.77344);
|
||||
INSERT INTO `gameobjects` VALUES (941, 'casino', 'ob_0104_0002', 0x1005000000074000020000000000000000000000400000002C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, -0.733887, 0, 0.678711, 16.75, 1, 1.28418);
|
||||
INSERT INTO `gameobjects` VALUES (942, 'casino', 'ob_0104_0002', 0x1005000000074000020000000000000000000000400000002C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, -0.681641, 0, 0.730957, 16.75, 1, -1.2666);
|
||||
INSERT INTO `gameobjects` VALUES (943, 'casino', 'ob_0104_0002', 0x1005000000074000020000000000000000000000400000002C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, -0.62207, 0, 0.782227, 16.3594, 1, -3.78516);
|
||||
INSERT INTO `gameobjects` VALUES (944, 'casino', 'ob_0104_0002', 0x1005000000074000020000000000000000000000400000002C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, -0.484619, 0, 0.874512, 14.2422, 1, -8.90625);
|
||||
INSERT INTO `gameobjects` VALUES (945, 'casino', 'ob_0104_0002', 0x1005000000074000020000000000000000000000400000002C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, -0.418457, 0, 0.907715, 12.75, 1, -10.9297);
|
||||
INSERT INTO `gameobjects` VALUES (946, 'casino', 'ob_0104_0002', 0x1005000000074000020000000000000000000000400000002C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, -0.350098, 0, 0.936523, 10.9453, 1, -12.7422);
|
||||
INSERT INTO `gameobjects` VALUES (947, 'casino', 'ob_0104_0002', 0x1005000000074000020000000000000000000000400000002C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, -0.275391, 0, 0.960938, 8.89062, 1, -14.25);
|
||||
INSERT INTO `gameobjects` VALUES (948, 'casino', 'ob_0104_0002', 0x1005000000074000020000000000000000000000400000002C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, -0.113159, 0, 0.993164, 3.77344, 1, -16.3594);
|
||||
INSERT INTO `gameobjects` VALUES (949, 'casino', 'ob_0104_0002', 0x1005000000074000020000000000000000000000400000002C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, -0.0391846, 0, 0.999023, 1.28418, 1, -16.75);
|
||||
INSERT INTO `gameobjects` VALUES (950, 'casino', 'ob_0104_0002', 0x1005000000074000020000000000000000000000400000002C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.0391846, 0, 0.999023, -1.2666, 1, -16.75);
|
||||
INSERT INTO `gameobjects` VALUES (951, 'casino', 'ob_0104_0002', 0x1005000000074000020000000000000000000000400000002C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.113159, 0, 0.993164, -3.78516, 1, -16.3594);
|
||||
INSERT INTO `gameobjects` VALUES (952, 'casino', 'ob_0104_0002', 0x1005000000074000020000000000000000000000400000002C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.275391, 0, 0.960938, -8.90625, 1, -14.2422);
|
||||
INSERT INTO `gameobjects` VALUES (953, 'casino', 'ob_0104_0002', 0x1005000000074000020000000000000000000000400000002C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.345947, 0, 0.937988, -10.9297, 1, -12.75);
|
||||
INSERT INTO `gameobjects` VALUES (954, 'casino', 'ob_0104_0002', 0x1005000000074000020000000000000000000000400000002C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.414551, 0, 0.909668, -12.7422, 1, -10.9453);
|
||||
INSERT INTO `gameobjects` VALUES (955, 'casino', 'ob_0104_0002', 0x1005000000074000020000000000000000000000400000002C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.484619, 0, 0.874512, -14.25, 1, -8.89062);
|
||||
INSERT INTO `gameobjects` VALUES (956, 'casino', 'ob_0104_0002', 0x1005000000074000020000000000000000000000400000002C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.62207, 0, 0.782227, -16.3594, 1, -3.77344);
|
||||
INSERT INTO `gameobjects` VALUES (957, 'casino', 'ob_0104_0002', 0x1005000000074000020000000000000000000000400000002C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.678711, 0, 0.733887, -16.75, 1, -1.28418);
|
||||
INSERT INTO `gameobjects` VALUES (958, 'casino', 'ob_0104_0002', 0x1005000000074000020000000000000000000000400000002C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.730957, 0, 0.681641, -16.75, 1, 1.2666);
|
||||
INSERT INTO `gameobjects` VALUES (959, 'casino', 'ob_0104_0002', 0x1005000000074000020000000000000000000000400000002C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.782227, 0, 0.62207, -16.3594, 1, 3.78516);
|
||||
INSERT INTO `gameobjects` VALUES (960, 'casino', 'ob_0104_0002', 0x1005000000074000020000000000000000000000400000002C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.874512, 0, 0.484863, -14.2422, 1, 8.90625);
|
||||
INSERT INTO `gameobjects` VALUES (961, 'casino', 'ob_0104_0002', 0x1005000000074000020000000000000000000000400000002C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.907715, 0, 0.418457, -12.75, 1, 10.9297);
|
||||
INSERT INTO `gameobjects` VALUES (962, 'casino', 'ob_0104_0002', 0x1005000000074000020000000000000000000000400000002C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.936523, 0, 0.350098, -10.9453, 1, 12.7422);
|
||||
INSERT INTO `gameobjects` VALUES (963, 'casino', 'ob_0104_0002', 0x1005000000074000020000000000000000000000400000002C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.960938, 0, 0.275635, -8.89062, 1, 14.25);
|
||||
INSERT INTO `gameobjects` VALUES (964, 'casino', 'ob_0104_0000', 0x100600000196F9D4020000000000000000000000400000A22C000000FFFFFFFF29000000010000002B0000000100000031000000000000002A000000000000002D0000000100000009000000000000000000000000000000, 0, 0.333496, 0, 0.942383, 28.5938, 1.11914, 35.6875);
|
||||
INSERT INTO `gameobjects` VALUES (965, 'casino', 'ob_0104_0000', 0x100600000196F9D4020000000000000000000000400000A22C000000FFFFFFFF29000000010000002B0000000100000031000000000000002A000000000000002D0000000100000009000000000000000000000000000000, 0, 0.26709, 0, 0.963379, 22.8906, 1.11914, 39.5938);
|
||||
INSERT INTO `gameobjects` VALUES (966, 'casino', 'ob_0104_0000', 0x100600000196F9D4020000000000000000000000400000A22C000000FFFFFFFF29000000010000002B0000000100000031000000000000002A000000000000002D0000000100000009000000000000000000000000000000, 0, 0.283936, 0, 0.958496, 24.5938, 1.11914, 38.5938);
|
||||
INSERT INTO `gameobjects` VALUES (967, 'casino', 'ob_0104_0000', 0x100600000196F9D4020000000000000000000000400000A22C000000FFFFFFFF29000000010000002B0000000100000031000000000000002A000000000000002D0000000100000009000000000000000000000000000000, 0, 0.241821, 0, 0.970215, 21.0938, 1.11914, 40.5938);
|
||||
INSERT INTO `gameobjects` VALUES (968, 'casino', 'ob_0104_0000', 0x100600000196F9D4020000000000000000000000400000A22C000000FFFFFFFF29000000010000002B0000000100000031000000000000002A000000000000002D0000000100000009000000000000000000000000000000, 0, 0.350098, 0, 0.936523, 30.1875, 1.11914, 34.375);
|
||||
INSERT INTO `gameobjects` VALUES (969, 'casino', 'ob_0104_0000', 0x100600000196F9D4020000000000000000000000400000A22C000000FFFFFFFF29000000010000002B0000000100000031000000000000002A000000000000002D0000000100000009000000000000000000000000000000, 0, 0.398682, 0, 0.916992, 33.6875, 1.11914, 30.8906);
|
||||
INSERT INTO `gameobjects` VALUES (970, 'casino', 'ob_0104_0000', 0x100600000196F9D4020000000000000000000000400000A22C000000FFFFFFFF29000000010000002B0000000100000031000000000000002A000000000000002D0000000100000009000000000000000000000000000000, 0, 0.422607, 0, 0.90625, 35.0938, 1.11914, 29.3906);
|
||||
INSERT INTO `gameobjects` VALUES (971, 'casino', 'ob_0104_0000', 0x100600000196F9D4020000000000000000000000400000A22C000000FFFFFFFF29000000010000002B0000000100000031000000000000002A000000000000002D0000000100000009000000000000000000000000000000, 0, 0.446045, 0, 0.894531, 36.2812, 1.11914, 27.8906);
|
||||
INSERT INTO `gameobjects` VALUES (972, 'casino', 'ob_0104_0000', 0x100600000196F9D4020000000000000000000000400000A22C000000FFFFFFFF29000000010000002B0000000100000031000000000000002A000000000000002D0000000100000009000000000000000000000000000000, 0, 0.241821, 0, 0.970215, 22.8906, 2.25, 42.5938);
|
||||
INSERT INTO `gameobjects` VALUES (973, 'casino', 'ob_0104_0000', 0x100600000196F9D4020000000000000000000000400000A22C000000FFFFFFFF29000000010000002B0000000100000031000000000000002A000000000000002D0000000100000009000000000000000000000000000000, 0, 0.26709, 0, 0.963379, 24.7969, 2.25, 41.5);
|
||||
INSERT INTO `gameobjects` VALUES (974, 'casino', 'ob_0104_0000', 0x100600000196F9D4020000000000000000000000400000A22C000000FFFFFFFF29000000010000002B0000000100000031000000000000002A000000000000002D0000000100000009000000000000000000000000000000, 0, 0.325439, 0, 0.945312, 29.2969, 2.25, 38.5);
|
||||
INSERT INTO `gameobjects` VALUES (975, 'casino', 'ob_0104_0000', 0x100600000196F9D4020000000000000000000000400000A22C000000FFFFFFFF29000000010000002B0000000100000031000000000000002A000000000000002D0000000100000009000000000000000000000000000000, 0, 0.341797, 0, 0.939453, 31, 2.25, 37.1875);
|
||||
INSERT INTO `gameobjects` VALUES (976, 'casino', 'ob_0104_0000', 0x100600000196F9D4020000000000000000000000400000A22C000000FFFFFFFF29000000010000002B0000000100000031000000000000002A000000000000002D0000000100000009000000000000000000000000000000, 0, 0.366211, 0, 0.930176, 32.5938, 2.25, 35.7812);
|
||||
INSERT INTO `gameobjects` VALUES (977, 'casino', 'ob_0104_0000', 0x100600000196F9D4020000000000000000000000400000A22C000000FFFFFFFF29000000010000002B0000000100000031000000000000002A000000000000002D0000000100000009000000000000000000000000000000, 0, 0.414551, 0, 0.909668, 36.375, 2.25, 31.8906);
|
||||
INSERT INTO `gameobjects` VALUES (978, 'casino', 'ob_0104_0000', 0x100600000196F9D4020000000000000000000000400000A22C000000FFFFFFFF29000000010000002B0000000100000031000000000000002A000000000000002D0000000100000009000000000000000000000000000000, 0, 0.43042, 0, 0.902344, 37.7812, 2.25, 30.1875);
|
||||
INSERT INTO `gameobjects` VALUES (979, 'casino', 'ob_0104_0000', 0x100600000196F9D4020000000000000000000000400000A22C000000FFFFFFFF29000000010000002B0000000100000031000000000000002A000000000000002D0000000100000009000000000000000000000000000000, 0, 0.250244, 0, 0.967773, 23.3906, 3.57812, 45.7812);
|
||||
INSERT INTO `gameobjects` VALUES (980, 'casino', 'ob_0104_0000', 0x100600000196F9D4020000000000000000000000400000A22C000000FFFFFFFF29000000010000002B0000000100000031000000000000002A000000000000002D0000000100000009000000000000000000000000000000, 0, 0.258545, 0, 0.96582, 25.3906, 3.57812, 44.6875);
|
||||
INSERT INTO `gameobjects` VALUES (981, 'casino', 'ob_0104_0000', 0x100600000196F9D4020000000000000000000000400000A22C000000FFFFFFFF29000000010000002B0000000100000031000000000000002A000000000000002D0000000100000009000000000000000000000000000000, 0, 0.275391, 0, 0.960938, 27.3906, 3.57812, 43.5938);
|
||||
INSERT INTO `gameobjects` VALUES (982, 'casino', 'ob_0104_0000', 0x100600000196F9D4020000000000000000000000400000A22C000000FFFFFFFF29000000010000002B0000000100000031000000000000002A000000000000002D0000000100000009000000000000000000000000000000, 0, 0.333496, 0, 0.942383, 32.1875, 3.57812, 40.1875);
|
||||
INSERT INTO `gameobjects` VALUES (983, 'casino', 'ob_0104_0000', 0x100600000196F9D4020000000000000000000000400000A22C000000FFFFFFFF29000000010000002B0000000100000031000000000000002A000000000000002D0000000100000009000000000000000000000000000000, 0, 0.350098, 0, 0.936523, 33.875, 3.57812, 38.6875);
|
||||
INSERT INTO `gameobjects` VALUES (984, 'casino', 'ob_0104_0000', 0x100600000196F9D4020000000000000000000000400000A22C000000FFFFFFFF29000000010000002B0000000100000031000000000000002A000000000000002D0000000100000009000000000000000000000000000000, 0, 0.406494, 0, 0.913086, 38.0938, 3.57812, 34.5938);
|
||||
INSERT INTO `gameobjects` VALUES (985, 'casino', 'ob_0104_0000', 0x100600000196F9D4020000000000000000000000400000A22C000000FFFFFFFF29000000010000002B0000000100000031000000000000002A000000000000002D0000000100000009000000000000000000000000000000, 0, 0.422607, 0, 0.90625, 39.5938, 3.57812, 32.875);
|
||||
INSERT INTO `gameobjects` VALUES (986, 'casino', 'ob_0104_0000', 0x100600000196F9D4020000000000000000000000400000A22C000000FFFFFFFF29000000010000002B0000000100000031000000000000002A000000000000002D0000000100000009000000000000000000000000000000, 0, 0.446045, 0, 0.894531, 41.0938, 3.57812, 31);
|
||||
INSERT INTO `gameobjects` VALUES (987, 'casino', 'ob_0104_0000', 0x100600000196F9D4020000000000000000000000400000A22C000000FFFFFFFF29000000010000002B0000000100000031000000000000002A000000000000002D0000000100000009000000000000000000000000000000, 0, 0.960938, 0, -0.275391, -27.3906, 3.57812, -43.5938);
|
||||
INSERT INTO `gameobjects` VALUES (988, 'casino', 'ob_0104_0000', 0x100600000196F9D4020000000000000000000000400000A22C000000FFFFFFFF29000000010000002B0000000100000031000000000000002A000000000000002D0000000100000009000000000000000000000000000000, 0, 0.942383, 0, -0.333496, -28.5938, 1.11914, -35.6875);
|
||||
INSERT INTO `gameobjects` VALUES (989, 'casino', 'ob_0104_0000', 0x100600000196F9D4020000000000000000000000400000A22C000000FFFFFFFF29000000010000002B0000000100000031000000000000002A000000000000002D0000000100000009000000000000000000000000000000, 0, 0.963379, 0, -0.26709, -22.8906, 1.11914, -39.5938);
|
||||
INSERT INTO `gameobjects` VALUES (990, 'casino', 'ob_0104_0000', 0x100600000196F9D4020000000000000000000000400000A22C000000FFFFFFFF29000000010000002B0000000100000031000000000000002A000000000000002D0000000100000009000000000000000000000000000000, 0, 0.930176, 0, -0.366211, -32.5938, 2.25, -35.7812);
|
||||
INSERT INTO `gameobjects` VALUES (991, 'casino', 'ob_0104_0000', 0x100600000196F9D4020000000000000000000000400000A22C000000FFFFFFFF29000000010000002B0000000100000031000000000000002A000000000000002D0000000100000009000000000000000000000000000000, 0, 0.90625, 0, -0.422607, -39.5938, 3.57812, -32.875);
|
||||
INSERT INTO `gameobjects` VALUES (992, 'casino', 'ob_0104_0000', 0x100600000196F9D4020000000000000000000000400000A22C000000FFFFFFFF29000000010000002B0000000100000031000000000000002A000000000000002D0000000100000009000000000000000000000000000000, 0, 0.970215, 0, -0.241821, -21.0938, 1.11914, -40.5938);
|
||||
INSERT INTO `gameobjects` VALUES (993, 'casino', 'ob_0104_0000', 0x100600000196F9D4020000000000000000000000400000A22C000000FFFFFFFF29000000010000002B0000000100000031000000000000002A000000000000002D0000000100000009000000000000000000000000000000, 0, 0.96582, 0, -0.258545, -25.3906, 3.57812, -44.6875);
|
||||
INSERT INTO `gameobjects` VALUES (994, 'casino', 'ob_0104_0000', 0x100600000196F9D4020000000000000000000000400000A22C000000FFFFFFFF29000000010000002B0000000100000031000000000000002A000000000000002D0000000100000009000000000000000000000000000000, 0, 0.894531, 0, -0.446045, -36.2812, 1.11914, -27.8906);
|
||||
INSERT INTO `gameobjects` VALUES (995, 'casino', 'ob_0104_0000', 0x100600000196F9D4020000000000000000000000400000A22C000000FFFFFFFF29000000010000002B0000000100000031000000000000002A000000000000002D0000000100000009000000000000000000000000000000, 0, 0.939453, 0, -0.341797, -31, 2.25, -37.1875);
|
||||
INSERT INTO `gameobjects` VALUES (996, 'casino', 'ob_0104_0000', 0x100600000196F9D4020000000000000000000000400000A22C000000FFFFFFFF29000000010000002B0000000100000031000000000000002A000000000000002D0000000100000009000000000000000000000000000000, 0, 0.963379, 0, -0.26709, -24.7969, 2.25, -41.4688);
|
||||
INSERT INTO `gameobjects` VALUES (997, 'casino', 'ob_0104_0000', 0x100600000196F9D4020000000000000000000000400000A22C000000FFFFFFFF29000000010000002B0000000100000031000000000000002A000000000000002D0000000100000009000000000000000000000000000000, 0, 0.970215, 0, -0.241821, -22.8906, 2.25, -42.5938);
|
||||
INSERT INTO `gameobjects` VALUES (998, 'casino', 'ob_0104_0000', 0x100600000196F9D4020000000000000000000000400000A22C000000FFFFFFFF29000000010000002B0000000100000031000000000000002A000000000000002D0000000100000009000000000000000000000000000000, 0, 0.942383, 0, -0.333496, -32.1875, 3.57812, -40.1875);
|
||||
INSERT INTO `gameobjects` VALUES (999, 'casino', 'ob_0104_0000', 0x100600000196F9D4020000000000000000000000400000A22C000000FFFFFFFF29000000010000002B0000000100000031000000000000002A000000000000002D0000000100000009000000000000000000000000000000, 0, 0.945312, 0, -0.325439, -29.2969, 2.25, -38.4688);
|
||||
INSERT INTO `gameobjects` VALUES (1000, 'casino', 'ob_0104_0000', 0x100600000196F9D4020000000000000000000000400000A22C000000FFFFFFFF29000000010000002B0000000100000031000000000000002A000000000000002D0000000100000009000000000000000000000000000000, 0, 0.958496, 0, -0.283936, -24.5938, 1.11914, -38.5938);
|
||||
INSERT INTO `gameobjects` VALUES (1001, 'casino', 'ob_0104_0000', 0x100600000196F9D4020000000000000000000000400000A22C000000FFFFFFFF29000000010000002B0000000100000031000000000000002A000000000000002D0000000100000009000000000000000000000000000000, 0, 0.913086, 0, -0.406494, -38.0938, 3.57812, -34.5938);
|
||||
INSERT INTO `gameobjects` VALUES (1002, 'casino', 'ob_0104_0000', 0x100600000196F9D4020000000000000000000000400000A22C000000FFFFFFFF29000000010000002B0000000100000031000000000000002A000000000000002D0000000100000009000000000000000000000000000000, 0, 0.967773, 0, -0.250244, -23.3906, 3.57812, -45.7812);
|
||||
INSERT INTO `gameobjects` VALUES (1003, 'casino', 'ob_0104_0000', 0x100600000196F9D4020000000000000000000000400000A22C000000FFFFFFFF29000000010000002B0000000100000031000000000000002A000000000000002D0000000100000009000000000000000000000000000000, 0, 0.902344, 0, -0.43042, -37.7812, 2.25, -30.1875);
|
||||
INSERT INTO `gameobjects` VALUES (1004, 'casino', 'ob_0104_0000', 0x100600000196F9D4020000000000000000000000400000A22C000000FFFFFFFF29000000010000002B0000000100000031000000000000002A000000000000002D0000000100000009000000000000000000000000000000, 0, 0.909668, 0, -0.414551, -36.375, 2.25, -31.8906);
|
||||
INSERT INTO `gameobjects` VALUES (1005, 'casino', 'ob_0104_0000', 0x100600000196F9D4020000000000000000000000400000A22C000000FFFFFFFF29000000010000002B0000000100000031000000000000002A000000000000002D0000000100000009000000000000000000000000000000, 0, 0.90625, 0, -0.422607, -35.0938, 1.11914, -29.3906);
|
||||
INSERT INTO `gameobjects` VALUES (1006, 'casino', 'ob_0104_0000', 0x100600000196F9D4020000000000000000000000400000A22C000000FFFFFFFF29000000010000002B0000000100000031000000000000002A000000000000002D0000000100000009000000000000000000000000000000, 0, 0.894531, 0, -0.446045, -41.0938, 3.57812, -30.9844);
|
||||
INSERT INTO `gameobjects` VALUES (1007, 'casino', 'ob_0104_0000', 0x100600000196F9D4020000000000000000000000400000A22C000000FFFFFFFF29000000010000002B0000000100000031000000000000002A000000000000002D0000000100000009000000000000000000000000000000, 0, 0.936523, 0, -0.350098, -33.875, 3.57812, -38.6875);
|
||||
INSERT INTO `gameobjects` VALUES (1008, 'casino', 'ob_0104_0000', 0x100600000196F9D4020000000000000000000000400000A22C000000FFFFFFFF29000000010000002B0000000100000031000000000000002A000000000000002D0000000100000009000000000000000000000000000000, 0, 0.936523, 0, -0.350098, -30.1875, 1.11914, -34.375);
|
||||
INSERT INTO `gameobjects` VALUES (1009, 'casino', 'ob_0104_0000', 0x100600000196F9D4020000000000000000000000400000A22C000000FFFFFFFF29000000010000002B0000000100000031000000000000002A000000000000002D0000000100000009000000000000000000000000000000, 0, 0.916992, 0, -0.398682, -33.6875, 1.11914, -30.8906);
|
||||
INSERT INTO `gameobjects` VALUES (1010, 'casino', 'ob_0104_0000', 0x100600000196F9D4020000000000000000000000400000A22C000000FFFFFFFF29000000010000002B0000000100000031000000000000002A000000000000002D0000000100000009000000000000000000000000000000, 0, 0.275635, 0, -0.960938, -27.4531, 3.57812, 43.5);
|
||||
INSERT INTO `gameobjects` VALUES (1011, 'casino', 'ob_0104_0000', 0x100600000196F9D4020000000000000000000000400000A22C000000FFFFFFFF29000000010000002B0000000100000031000000000000002A000000000000002D0000000100000009000000000000000000000000000000, 0, 0.414551, 0, -0.909668, -36.5625, 2.25, 31.625);
|
||||
INSERT INTO `gameobjects` VALUES (1012, 'casino', 'ob_0104_0000', 0x100600000196F9D4020000000000000000000000400000A22C000000FFFFFFFF29000000010000002B0000000100000031000000000000002A000000000000002D0000000100000009000000000000000000000000000000, 0, 0.406738, 0, -0.913086, -38.1562, 3.57812, 34.5312);
|
||||
INSERT INTO `gameobjects` VALUES (1013, 'casino', 'ob_0104_0000', 0x100600000196F9D4020000000000000000000000400000A22C000000FFFFFFFF29000000010000002B0000000100000031000000000000002A000000000000002D0000000100000009000000000000000000000000000000, 0, 0.350098, 0, -0.936523, -33.9688, 3.57812, 38.6875);
|
||||
INSERT INTO `gameobjects` VALUES (1014, 'casino', 'ob_0104_0000', 0x100600000196F9D4020000000000000000000000400000A22C000000FFFFFFFF29000000010000002B0000000100000031000000000000002A000000000000002D0000000100000009000000000000000000000000000000, 0, 0.250244, 0, -0.967773, -23.1719, 2.25, 42.4688);
|
||||
INSERT INTO `gameobjects` VALUES (1015, 'casino', 'ob_0104_0000', 0x100600000196F9D4020000000000000000000000400000A22C000000FFFFFFFF29000000010000002B0000000100000031000000000000002A000000000000002D0000000100000009000000000000000000000000000000, 0, 0.398682, 0, -0.916992, -33.7188, 1.11914, 30.9219);
|
||||
INSERT INTO `gameobjects` VALUES (1016, 'casino', 'ob_0104_0000', 0x100600000196F9D4020000000000000000000000400000A22C000000FFFFFFFF29000000010000002B0000000100000031000000000000002A000000000000002D0000000100000009000000000000000000000000000000, 0, 0.350098, 0, -0.936523, -30.1875, 1.11914, 34.3438);
|
||||
INSERT INTO `gameobjects` VALUES (1017, 'casino', 'ob_0104_0000', 0x100600000196F9D4020000000000000000000000400000A22C000000FFFFFFFF29000000010000002B0000000100000031000000000000002A000000000000002D0000000100000009000000000000000000000000000000, 0, 0.342041, 0, -0.939453, -31.25, 2.25, 36.9688);
|
||||
INSERT INTO `gameobjects` VALUES (1018, 'casino', 'ob_0104_0000', 0x100600000196F9D4020000000000000000000000400000A22C000000FFFFFFFF29000000010000002B0000000100000031000000000000002A000000000000002D0000000100000009000000000000000000000000000000, 0, 0.26709, 0, -0.963379, -25.0938, 2.25, 41.375);
|
||||
INSERT INTO `gameobjects` VALUES (1019, 'casino', 'ob_0104_0000', 0x100600000196F9D4020000000000000000000000400000A22C000000FFFFFFFF29000000010000002B0000000100000031000000000000002A000000000000002D0000000100000009000000000000000000000000000000, 0, 0.258789, 0, -0.96582, -22.8594, 1.11914, 39.6562);
|
||||
INSERT INTO `gameobjects` VALUES (1020, 'casino', 'ob_0104_0000', 0x100600000196F9D4020000000000000000000000400000A22C000000FFFFFFFF29000000010000002B0000000100000031000000000000002A000000000000002D0000000100000009000000000000000000000000000000, 0, 0.438232, 0, -0.898438, -36.3125, 1.11914, 27.8125);
|
||||
INSERT INTO `gameobjects` VALUES (1021, 'casino', 'ob_0104_0000', 0x100600000196F9D4020000000000000000000000400000A22C000000FFFFFFFF29000000010000002B0000000100000031000000000000002A000000000000002D0000000100000009000000000000000000000000000000, 0, 0.258789, 0, -0.96582, -25.5156, 3.57812, 44.6875);
|
||||
INSERT INTO `gameobjects` VALUES (1022, 'casino', 'ob_0104_0000', 0x100600000196F9D4020000000000000000000000400000A22C000000FFFFFFFF29000000010000002B0000000100000031000000000000002A000000000000002D0000000100000009000000000000000000000000000000, 0, 0.414551, 0, -0.909668, -35, 1.11914, 29.4219);
|
||||
INSERT INTO `gameobjects` VALUES (1023, 'casino', 'ob_0104_0000', 0x100600000196F9D4020000000000000000000000400000A22C000000FFFFFFFF29000000010000002B0000000100000031000000000000002A000000000000002D0000000100000009000000000000000000000000000000, 0, 0.358398, 0, -0.933105, -32.8125, 2.25, 35.5312);
|
||||
INSERT INTO `gameobjects` VALUES (1024, 'casino', 'ob_0104_0000', 0x100600000196F9D4020000000000000000000000400000A22C000000FFFFFFFF29000000010000002B0000000100000031000000000000002A000000000000002D0000000100000009000000000000000000000000000000, 0, 0.283936, 0, -0.958496, -24.5781, 1.11914, 38.5312);
|
||||
INSERT INTO `gameobjects` VALUES (1025, 'casino', 'ob_0104_0000', 0x100600000196F9D4020000000000000000000000400000A22C000000FFFFFFFF29000000010000002B0000000100000031000000000000002A000000000000002D0000000100000009000000000000000000000000000000, 0, 0.438232, 0, -0.898438, -37.9688, 2.25, 29.9375);
|
||||
INSERT INTO `gameobjects` VALUES (1026, 'casino', 'ob_0104_0000', 0x100600000196F9D4020000000000000000000000400000A22C000000FFFFFFFF29000000010000002B0000000100000031000000000000002A000000000000002D0000000100000009000000000000000000000000000000, 0, 0.233398, 0, -0.972168, -21.1719, 1.11914, 40.5625);
|
||||
INSERT INTO `gameobjects` VALUES (1027, 'casino', 'ob_0104_0000', 0x100600000196F9D4020000000000000000000000400000A22C000000FFFFFFFF29000000010000002B0000000100000031000000000000002A000000000000002D0000000100000009000000000000000000000000000000, 0, 0.43042, 0, -0.902344, -41.0312, 3.57812, 30.9844);
|
||||
INSERT INTO `gameobjects` VALUES (1028, 'casino', 'ob_0104_0000', 0x100600000196F9D4020000000000000000000000400000A22C000000FFFFFFFF29000000010000002B0000000100000031000000000000002A000000000000002D0000000100000009000000000000000000000000000000, 0, 0.33374, 0, -0.942383, -32.2188, 3.57812, 40.0938);
|
||||
INSERT INTO `gameobjects` VALUES (1029, 'casino', 'ob_0104_0000', 0x100600000196F9D4020000000000000000000000400000A22C000000FFFFFFFF29000000010000002B0000000100000031000000000000002A000000000000002D0000000100000009000000000000000000000000000000, 0, 0.317383, 0, -0.948242, -29.5938, 2.25, 38.3125);
|
||||
INSERT INTO `gameobjects` VALUES (1030, 'casino', 'ob_0104_0000', 0x100600000196F9D4020000000000000000000000400000A22C000000FFFFFFFF29000000010000002B0000000100000031000000000000002A000000000000002D0000000100000009000000000000000000000000000000, 0, 0.233398, 0, -0.972168, -23.3906, 3.57812, 45.8438);
|
||||
INSERT INTO `gameobjects` VALUES (1031, 'casino', 'ob_0104_0000', 0x100600000196F9D4020000000000000000000000400000A22C000000FFFFFFFF29000000010000002B0000000100000031000000000000002A000000000000002D0000000100000009000000000000000000000000000000, 0, 0.33374, 0, -0.942383, -28.625, 1.11914, 35.6875);
|
||||
INSERT INTO `gameobjects` VALUES (1032, 'casino', 'ob_0104_0000', 0x100600000196F9D4020000000000000000000000400000A22C000000FFFFFFFF29000000010000002B0000000100000031000000000000002A000000000000002D0000000100000009000000000000000000000000000000, 0, 0.422607, 0, -0.90625, -39.5938, 3.57812, 32.75);
|
||||
INSERT INTO `gameobjects` VALUES (1033, 'casino', 'ob_0104_0021', 0x1008000001F8FFFF020000000000000000000000400000002C000000FFFFFFFF29000000010000002B000000010000003D00000000000000340000000000000038000000000502002A000000000000002D0000000100000009000000000000000000000000000000, 0, -0.173584, 0, 0.984375, -38, 0.910645, 3.22266);
|
||||
INSERT INTO `gameobjects` VALUES (1034, 'casino', 'ob_0104_0021', 0x1008000001F8FFFF020000000000000000000000400000002C000000FFFFFFFF29000000010000002B000000010000003D00000001000000340000000100000038000000010502002A000000000000002D0000000100000009000000000000000000000000000000, 0, -0.422607, 0, 0.90625, -37.125, 0.910645, 3.9082);
|
||||
INSERT INTO `gameobjects` VALUES (1035, 'casino', 'ob_0104_0021', 0x1008000001F8FFFF020000000000000000000000400000002C000000FFFFFFFF29000000010000002B000000010000003D00000002000000340000000200000038000000020502002A000000000000002D0000000100000009000000000000000000000000000000, 0, -0.642578, 0, 0.765625, -36.6562, 0.910645, 4.92188);
|
||||
INSERT INTO `gameobjects` VALUES (1036, 'casino', 'ob_0104_0021', 0x1008000001F8FFFF020000000000000000000000400000002C000000FFFFFFFF29000000010000002B000000010000003D00000003000000340000000300000038000000030502002A000000000000002D0000000100000009000000000000000000000000000000, 0, -0.818848, 0, 0.573242, -36.75, 0.910645, 6.02734);
|
||||
INSERT INTO `gameobjects` VALUES (1037, 'casino', 'ob_0104_0021', 0x1008000001F8FFFF020000000000000000000000400000002C000000FFFFFFFF29000000010000002B000000010000003D00000004000000340000000400000038000000040502002A000000000000002D0000000100000009000000000000000000000000000000, 0, -0.939453, 0, 0.341797, -37.3438, 0.910645, 6.96875);
|
||||
INSERT INTO `gameobjects` VALUES (1038, 'casino', 'ob_0104_0021', 0x1008000001F8FFFF020000000000000000000000400000002C000000FFFFFFFF29000000010000002B000000010000003D00000064000000340000000000000038000000060502002A000000000000002D0000000100000009000000000000000000000000000000, 0, -0.216309, 0, 0.976074, -44.2188, 0.910645, 1.0752);
|
||||
INSERT INTO `gameobjects` VALUES (1039, 'casino', 'ob_0104_0021', 0x1008000001F8FFFF020000000000000000000000400000002C000000FFFFFFFF29000000010000002B000000010000003D00000065000000340000000100000038000000070502002A000000000000002D0000000100000009000000000000000000000000000000, 0, -0.422607, 0, 0.90625, -43.375, 0.910645, 1.76074);
|
||||
INSERT INTO `gameobjects` VALUES (1040, 'casino', 'ob_0104_0021', 0x1008000001F8FFFF020000000000000000000000400000002C000000FFFFFFFF29000000010000002B000000010000003D00000066000000340000000200000038000000080502002A000000000000002D0000000100000009000000000000000000000000000000, 0, -0.642578, 0, 0.765625, -42.9062, 0.910645, 2.77344);
|
||||
INSERT INTO `gameobjects` VALUES (1041, 'casino', 'ob_0104_0021', 0x1008000001F8FFFF020000000000000000000000400000002C000000FFFFFFFF29000000010000002B000000010000003D00000067000000340000000300000038000000090502002A000000000000002D0000000100000009000000000000000000000000000000, 0, -0.818848, 0, 0.573242, -43, 0.910645, 3.87891);
|
||||
INSERT INTO `gameobjects` VALUES (1042, 'casino', 'ob_0104_0021', 0x1008000001F8FFFF020000000000000000000000400000002C000000FFFFFFFF29000000010000002B000000010000003D000000680000003400000004000000380000000A0502002A000000000000002D0000000100000009000000000000000000000000000000, 0, -0.939453, 0, 0.341797, -43.5625, 0.910645, 4.82031);
|
||||
INSERT INTO `gameobjects` VALUES (1043, 'casino', 'ob_0104_0021', 0x1008000001F8FFFF020000000000000000000000400000002C000000FFFFFFFF29000000010000002B000000010000003D000000C80000003400000000000000380000000C0502002A000000000000002D0000000100000009000000000000000000000000000000, 0, -0.173584, 0, 0.984375, -50.1875, 0.910645, 3.91602);
|
||||
INSERT INTO `gameobjects` VALUES (1044, 'casino', 'ob_0104_0021', 0x1008000001F8FFFF020000000000000000000000400000002C000000FFFFFFFF29000000010000002B000000010000003D000000C90000003400000001000000380000000D0502002A000000000000002D0000000100000009000000000000000000000000000000, 0, -0.46167, 0, 0.886719, -49.3125, 0.910645, 4.60156);
|
||||
INSERT INTO `gameobjects` VALUES (1045, 'casino', 'ob_0104_0021', 0x1008000001F8FFFF020000000000000000000000400000002C000000FFFFFFFF29000000010000002B000000010000003D000000CA0000003400000002000000380000000E0502002A000000000000002D0000000100000009000000000000000000000000000000, 0, -0.642578, 0, 0.765625, -48.875, 0.910645, 5.61328);
|
||||
INSERT INTO `gameobjects` VALUES (1046, 'casino', 'ob_0104_0021', 0x1008000001F8FFFF020000000000000000000000400000002C000000FFFFFFFF29000000010000002B000000010000003D000000CB0000003400000003000000380000000F0502002A000000000000002D0000000100000009000000000000000000000000000000, 0, -0.792969, 0, 0.608398, -48.9375, 0.910645, 6.71875);
|
||||
INSERT INTO `gameobjects` VALUES (1047, 'casino', 'ob_0104_0021', 0x1008000001F8FFFF020000000000000000000000400000002C000000FFFFFFFF29000000010000002B000000010000003D000000CC000000340000000400000038000000100502002A000000000000002D0000000100000009000000000000000000000000000000, 0, -0.923828, 0, 0.382568, -49.5312, 0.910645, 7.66016);
|
||||
INSERT INTO `gameobjects` VALUES (1048, 'casino', 'ob_0104_0021', 0x1008000001F8FFFF020000000000000000000000400000002C000000FFFFFFFF29000000010000002B000000010000003D0000002C010000340000000000000038000000120502002A000000000000002D0000000100000009000000000000000000000000000000, 0, -0.382568, 0, 0.923828, -49.5312, 0.910645, -7.66016);
|
||||
INSERT INTO `gameobjects` VALUES (1049, 'casino', 'ob_0104_0021', 0x1008000001F8FFFF020000000000000000000000400000002C000000FFFFFFFF29000000010000002B000000010000003D0000002D010000340000000100000038000000130502002A000000000000002D0000000100000009000000000000000000000000000000, 0, -0.573242, 0, 0.818848, -48.9375, 0.910645, -6.71875);
|
||||
INSERT INTO `gameobjects` VALUES (1050, 'casino', 'ob_0104_0021', 0x1008000001F8FFFF020000000000000000000000400000002C000000FFFFFFFF29000000010000002B000000010000003D0000002E010000340000000200000038000000140502002A000000000000002D0000000100000009000000000000000000000000000000, 0, -0.765625, 0, 0.642578, -48.875, 0.910645, -5.61328);
|
||||
INSERT INTO `gameobjects` VALUES (1051, 'casino', 'ob_0104_0021', 0x1008000001F8FFFF020000000000000000000000400000002C000000FFFFFFFF29000000010000002B000000010000003D0000002F010000340000000300000038000000150502002A000000000000002D0000000100000009000000000000000000000000000000, 0, -0.90625, 0, 0.422607, -49.3125, 0.910645, -4.60156);
|
||||
INSERT INTO `gameobjects` VALUES (1052, 'casino', 'ob_0104_0021', 0x1008000001F8FFFF020000000000000000000000400000002C000000FFFFFFFF29000000010000002B000000010000003D00000030010000340000000400000038000000160502002A000000000000002D0000000100000009000000000000000000000000000000, 0, -0.984375, 0, 0.173584, -50.1875, 0.910645, -3.91602);
|
||||
INSERT INTO `gameobjects` VALUES (1053, 'casino', 'ob_0104_0021', 0x1008000001F8FFFF020000000000000000000000400000002C000000FFFFFFFF29000000010000002B000000010000003D00000090010000340000000000000038000000180502002A000000000000002D0000000100000009000000000000000000000000000000, 0, -0.382568, 0, 0.923828, -43.5625, 0.910645, -4.82031);
|
||||
INSERT INTO `gameobjects` VALUES (1054, 'casino', 'ob_0104_0021', 0x1008000001F8FFFF020000000000000000000000400000002C000000FFFFFFFF29000000010000002B000000010000003D00000091010000340000000100000038000000190502002A000000000000002D0000000100000009000000000000000000000000000000, 0, -0.573242, 0, 0.818848, -43, 0.910645, -3.87891);
|
||||
INSERT INTO `gameobjects` VALUES (1055, 'casino', 'ob_0104_0021', 0x1008000001F8FFFF020000000000000000000000400000002C000000FFFFFFFF29000000010000002B000000010000003D000000920100003400000002000000380000001A0502002A000000000000002D0000000100000009000000000000000000000000000000, 0, -0.765625, 0, 0.642578, -42.9062, 0.910645, -2.77344);
|
||||
INSERT INTO `gameobjects` VALUES (1056, 'casino', 'ob_0104_0021', 0x1008000001F8FFFF020000000000000000000000400000002C000000FFFFFFFF29000000010000002B000000010000003D000000930100003400000003000000380000001B0502002A000000000000002D0000000100000009000000000000000000000000000000, 0, -0.886719, 0, 0.46167, -43.375, 0.910645, -1.76074);
|
||||
INSERT INTO `gameobjects` VALUES (1057, 'casino', 'ob_0104_0021', 0x1008000001F8FFFF020000000000000000000000400000002C000000FFFFFFFF29000000010000002B000000010000003D000000940100003400000004000000380000001C0502002A000000000000002D0000000100000009000000000000000000000000000000, 0, -0.976074, 0, 0.216431, -44.2188, 0.910645, -1.0752);
|
||||
INSERT INTO `gameobjects` VALUES (1058, 'casino', 'ob_0104_0021', 0x1008000001F8FFFF020000000000000000000000400000002C000000FFFFFFFF29000000010000002B000000010000003D000000F40100003400000000000000380000001E0502002A000000000000002D0000000100000009000000000000000000000000000000, 0, -0.374512, 0, 0.926758, -37.3438, 0.910645, -6.96875);
|
||||
INSERT INTO `gameobjects` VALUES (1059, 'casino', 'ob_0104_0021', 0x1008000001F8FFFF020000000000000000000000400000002C000000FFFFFFFF29000000010000002B000000010000003D000000F50100003400000001000000380000001F0502002A000000000000002D0000000100000009000000000000000000000000000000, 0, -0.573242, 0, 0.818848, -36.75, 0.910645, -6.02734);
|
||||
INSERT INTO `gameobjects` VALUES (1060, 'casino', 'ob_0104_0021', 0x1008000001F8FFFF020000000000000000000000400000002C000000FFFFFFFF29000000010000002B000000010000003D000000F6010000340000000200000038000000200502002A000000000000002D0000000100000009000000000000000000000000000000, 0, -0.765625, 0, 0.642578, -36.6562, 0.910645, -4.92188);
|
||||
INSERT INTO `gameobjects` VALUES (1061, 'casino', 'ob_0104_0021', 0x1008000001F8FFFF020000000000000000000000400000002C000000FFFFFFFF29000000010000002B000000010000003D000000F7010000340000000300000038000000210502002A000000000000002D0000000100000009000000000000000000000000000000, 0, -0.90625, 0, 0.422607, -37.125, 0.910645, -3.9082);
|
||||
INSERT INTO `gameobjects` VALUES (1062, 'casino', 'ob_0104_0021', 0x1008000001F8FFFF020000000000000000000000400000002C000000FFFFFFFF29000000010000002B000000010000003D000000F8010000340000000400000038000000220502002A000000000000002D0000000100000009000000000000000000000000000000, 0, -0.976074, 0, 0.216431, -38, 0.910645, -3.22266);
|
||||
INSERT INTO `gameobjects` VALUES (1063, 'casino', 'oa_0104_0025_0', 0x10060000005F7DD20200000000000000000000004000003E2C000000FFFFFFFF29000000010000002B000000010000002A0000000000000042000000000000002D00000001000000, 0, -0.341797, 0, 0.939453, 24.5, 8.5, -43.5);
|
||||
INSERT INTO `gameobjects` VALUES (1064, 'casino', 'oa_0104_0025_1', 0x10060000005F7DD20200000000000000000000004000003E2C000000FFFFFFFF29000000010000002B000000010000002A0000000000000042000000010000002D00000001000000, 0, -0.341797, 0, 0.939453, 25.5, 5.69922, -41);
|
||||
INSERT INTO `gameobjects` VALUES (1065, 'casino', 'oa_0104_0025_2', 0x10060000005F7DD20200000000000000000000004000003E2C000000FFFFFFFF29000000010000002B000000010000002A0000000000000042000000020000002D00000001000000, 0, -0.341797, 0, 0.939453, 27, 2.89844, -39);
|
||||
INSERT INTO `gameobjects` VALUES (2, 'campship', 'ob_0150_0001', 0x10050000000B0400020000000000000000000000000100002C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.923828, 0, 0.382568, -4.55469, 0.0726318, 9.04688);
|
||||
INSERT INTO `gameobjects` VALUES (3, 'campship', 'oa_campship_exit', 0x10050000000B0400020000000000000000000000000100002C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0, 0, 1, 0, 0, -13.5);
|
||||
INSERT INTO `gameobjects` VALUES (4, 'campship', 'ob_0150_0004', 0x1006000000000000020000000000000000000000000100002C000000FFFFFFFF29000000010000002B0000000100000038000000030000002A000000000000002D00000001000000, 0, 0.923828, 0, -0.382568, 4.59375, 0.0726318, 9.09375);
|
||||
INSERT INTO `gameobjects` VALUES (5, 'campship', 'ob_0150_0006', 0x10050000000B0400020000000000000000000000000100002C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.382568, 0, 0.923828, -4.55469, 0.172607, -7.77734);
|
||||
INSERT INTO `gameobjects` VALUES (6, 'campship', 'ob_0150_0009', 0x10050000000B0400020000000000000000000000000100002C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 1, 0, 0, 0, -5, 26);
|
||||
INSERT INTO `gameobjects` VALUES (7, 'campship', 'oa_start_sync', 0x10040000000B0400020000000000000000000000000100002C000000FFFFFFFF29000000010000002B000000010000003200000010C09A5E, 0, 0, 0, 1, 0, 3.69922, 14.3984);
|
||||
INSERT INTO `gameobjects` VALUES (8, 'campship', 'ob_0150_0008', 0x10050000000B0400020000000000000000000000000100002C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, 0.707031, 0, -0.707031, 6.84375, 0, 0.625);
|
||||
INSERT INTO `gameobjects` VALUES (9, 'campship', 'ob_0150_0007', 0x10050000000B0400020000000000000000000000000100002C000000FFFFFFFF29000000010000002B000000010000002A000000000000002D00000001000000, 0, -0.382568, 0, 0.923828, 4.75391, 0.172607, -7.97656);
|
||||
|
||||
-- ----------------------------
|
||||
-- Table structure for npcs
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS `npcs`;
|
||||
CREATE TABLE `npcs` (
|
||||
`EntityID` int NOT NULL,
|
||||
`ZoneName` varchar(225) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL,
|
||||
`NPCName` varchar(255) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL,
|
||||
`RotX` float NOT NULL,
|
||||
`RotY` float NOT NULL,
|
||||
`RotZ` float NOT NULL,
|
||||
`RotW` float NOT NULL,
|
||||
`PosX` float NOT NULL,
|
||||
`PosY` float NOT NULL,
|
||||
`PosZ` float NOT NULL,
|
||||
PRIMARY KEY (`EntityID`, `ZoneName`) USING BTREE
|
||||
) ENGINE = MyISAM AUTO_INCREMENT = 1 CHARACTER SET = latin1 COLLATE = latin1_swedish_ci ROW_FORMAT = Dynamic;
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of npcs
|
||||
-- ----------------------------
|
||||
INSERT INTO `npcs` VALUES (450, 'lobby', 'Npc_ShopWeapon', 0, -0.587402, 0, 0.808594, 25.6875, 0.0599976, -142.375);
|
||||
INSERT INTO `npcs` VALUES (451, 'lobby', 'Npc_ShopItem', 0, 0.615234, 0, 0.787598, -26, 0.0599976, -141.25);
|
||||
INSERT INTO `npcs` VALUES (452, 'lobby', 'Npc_CounterLab1', 0, -0.719238, 0, 0.694336, 26.625, 0.0599976, -133);
|
||||
INSERT INTO `npcs` VALUES (453, 'lobby', 'Npc_ShopItem2', 0, -0.765625, 0, 0.642578, 26.2031, 0.0599976, -129.875);
|
||||
INSERT INTO `npcs` VALUES (454, 'lobby', 'Npc_ShopCostume1', 0, 0.765625, 0, 0.642578, -26.2344, 0.0599976, -129.5);
|
||||
INSERT INTO `npcs` VALUES (455, 'lobby', 'Npc_ShopCostume2', 0, 0.736816, 0, 0.675293, -26.5938, 0.0599976, -132.5);
|
||||
INSERT INTO `npcs` VALUES (456, 'lobby', 'Npc_ShopDisc', 0, -0.642578, 0, 0.765625, 26.5, 0.0599976, -139.5);
|
||||
INSERT INTO `npcs` VALUES (457, 'lobby', 'Npc_CounterSalon1', 0, -0.707031, 0, 0.707031, 42.6562, 7.13281, -136.125);
|
||||
INSERT INTO `npcs` VALUES (458, 'lobby', 'Npc_ShopReform1', 0, -0.300537, 0, 0.953613, 53.0938, -5.89844, -83.625);
|
||||
INSERT INTO `npcs` VALUES (459, 'lobby', 'Npc_ShopTrade', 0, -0.300537, 0, 0.953613, 64.6875, -5.89844, -74.875);
|
||||
INSERT INTO `npcs` VALUES (460, 'lobby', 'Npc_CounterNetCafe', 0, -0.341797, 0, 0.939453, 66.375, -5.89844, -73.3125);
|
||||
INSERT INTO `npcs` VALUES (461, 'lobby', 'Npc_ShopPoint', 0, -0.258545, 0, 0.96582, 62.75, -5.89844, -76.1875);
|
||||
INSERT INTO `npcs` VALUES (462, 'lobby', 'Npc_ShopTrade2', 0, 0.668945, 0, 0.743164, -42.5, 7.09766, -142.5);
|
||||
INSERT INTO `npcs` VALUES (463, 'lobby', 'Npc_ShopPoint3', 0, 0.675293, 0, 0.737305, -42.8438, 7.13281, -135);
|
||||
INSERT INTO `npcs` VALUES (464, 'lobby', 'Npc_ShopPoint2', 0, 0.719238, 0, 0.694336, -42.8438, 7.13281, -133);
|
||||
INSERT INTO `npcs` VALUES (465, 'lobby', 'Npc_ShopReform2', 0, -0.300537, 0, 0.953613, 55.2188, -5.89844, -81.9375);
|
||||
INSERT INTO `npcs` VALUES (466, 'lobby', 'Npc_CounterLab2', 0, -0.719238, 0, 0.694336, 26.625, 0.0599976, -133);
|
||||
INSERT INTO `npcs` VALUES (467, 'lobby', 'Npc_ShopTrade3', 0, 0.628906, 0, 0.776855, -42.0938, 7.09766, -145);
|
||||
INSERT INTO `npcs` VALUES (468, 'lobby', 'Npc_CQShopPoint', 0, 0.675293, 0, 0.737305, -42.6875, 7, -140);
|
||||
INSERT INTO `npcs` VALUES (469, 'lobby', 'Npc_05', 0, 1, 0, 0, 0, 0.0999756, -147.5);
|
||||
INSERT INTO `npcs` VALUES (470, 'lobby', 'Npc_22', 0, -0.258545, 0, 0.96582, 18.5, 7, -113.5);
|
||||
INSERT INTO `npcs` VALUES (471, 'lobby', 'Npc_21', 0, 0.190674, 0, 0.981445, 19.0938, -3, -88.875);
|
||||
INSERT INTO `npcs` VALUES (472, 'lobby', 'Npc_01', 0, -0.886719, 0, 0.46167, 26.0938, 0, -113);
|
||||
INSERT INTO `npcs` VALUES (473, 'lobby', 'Npc_06', 0, 0.979492, 0, -0.199219, 9.5, 0, -112);
|
||||
INSERT INTO `npcs` VALUES (474, 'lobby', 'Npc_07', 0, 0.999023, 0, -0.0435791, 8.5, -3, -76);
|
||||
INSERT INTO `npcs` VALUES (475, 'lobby', 'Npc_08', 0, 0.939453, 0, 0.341797, 25, 14, -160);
|
||||
INSERT INTO `npcs` VALUES (476, 'lobby', 'Npc_09', 0, 0.923828, 0, 0.382568, -20, -3, -78.5);
|
||||
INSERT INTO `npcs` VALUES (477, 'lobby', 'Npc_10', 0, 0.996094, 0, -0.0870972, -16.5, -3, -77.375);
|
||||
INSERT INTO `npcs` VALUES (478, 'lobby', 'Npc_11', 0, 0.707031, 0, 0.707031, -57.5, -6, -52.5);
|
||||
INSERT INTO `npcs` VALUES (479, 'lobby', 'Npc_12', 0, 0.90625, 0, 0.422607, 12.75, 14, -164.75);
|
||||
INSERT INTO `npcs` VALUES (480, 'lobby', 'Npc_13', 0, -0.46167, 0, 0.886719, -4.49609, 0, -113.188);
|
||||
INSERT INTO `npcs` VALUES (481, 'lobby', 'Npc_14', 0, 0.886719, 0, 0.46167, -5.5, 0, -112.5);
|
||||
INSERT INTO `npcs` VALUES (482, 'lobby', 'Npc_28', 0, -0.113159, 0, 0.993164, -16.5, -6, -60.375);
|
||||
INSERT INTO `npcs` VALUES (483, 'lobby', 'Npc_55', 0, 0.258545, 0, 0.96582, -24, 0, -120);
|
||||
INSERT INTO `npcs` VALUES (484, 'lobby', 'Npc_53', 0, 0.675293, 0, 0.737305, -49, 0, -97.75);
|
||||
INSERT INTO `npcs` VALUES (485, 'lobby', 'Npc_51', 0, -0.99707, 0, 0.0698242, 49.1875, 0.5, -87.1875);
|
||||
INSERT INTO `npcs` VALUES (486, 'lobby', 'Npc_56', 0, 0.792969, 0, -0.608398, 54.5625, 0, -110.562);
|
||||
INSERT INTO `npcs` VALUES (487, 'lobby', 'Npc_65', 0, 1, 0, 0, 0, 22, -126);
|
||||
INSERT INTO `npcs` VALUES (488, 'lobby', 'Npc_68', 0, -0.707031, 0, 0.707031, -12, 0.0999756, -133.5);
|
||||
INSERT INTO `npcs` VALUES (489, 'lobby', 'Npc_69', 0, -0.707031, 0, 0.707031, -11.8594, 0.0999756, -136.375);
|
||||
INSERT INTO `npcs` VALUES (490, 'lobby', 'Npc_91', 0, 0.939453, 0, 0.341797, -26.3125, 0.000719547, -102.812);
|
||||
INSERT INTO `npcs` VALUES (491, 'lobby', 'Npc_80', 0, 0, 0, 1, 0.0846558, 0.0999756, -122.688);
|
||||
INSERT INTO `npcs` VALUES (492, 'lobby', 'Npc_81', 0, 0, 0, 1, 0.0846558, 0.0999756, -122.688);
|
||||
INSERT INTO `npcs` VALUES (493, 'lobby', 'Npc_97', 0, 0, 0, 1, 0.0846558, 0.0999756, -122.688);
|
||||
INSERT INTO `npcs` VALUES (494, 'lobby', 'Npc_96', 0, 0, 0, 1, 0.0846558, 0.0999756, -122.688);
|
||||
INSERT INTO `npcs` VALUES (495, 'lobby', 'Npc_99', 0, 0, 0, 1, 0.0846558, 0.0999756, -122.688);
|
||||
INSERT INTO `npcs` VALUES (496, 'lobby', 'Npc_61', 0, 0, 0, 1, 0.0846558, 0.0999756, -122.688);
|
||||
INSERT INTO `npcs` VALUES (497, 'lobby', 'Npc_77', 0, 0, 0, 1, 0.0846558, 0.0999756, -122.688);
|
||||
INSERT INTO `npcs` VALUES (498, 'lobby', 'Npc_121', 0, 0, 0, 1, 0.0846558, 0.0999756, -122.688);
|
||||
INSERT INTO `npcs` VALUES (499, 'lobby', 'Npc_125', 0, 0.0523071, 0, 0.998535, -26.0469, -3, -92.4375);
|
||||
INSERT INTO `npcs` VALUES (500, 'lobby', 'Npc_134', 0, 0, 0, 1, 0.0846558, 0.0999756, -122.688);
|
||||
INSERT INTO `npcs` VALUES (501, 'lobby', 'Npc_83', 0, -0.886719, 0, 0.46167, 26.0938, 0, -113);
|
||||
INSERT INTO `npcs` VALUES (502, 'lobby', 'Npc_85', 0, 1, 0, 0, 0, 0.0999756, -147.5);
|
||||
INSERT INTO `npcs` VALUES (503, 'lobby', 'Npc_118', 0, 1, 0, 0, 10, 0.0507812, -131.75);
|
||||
INSERT INTO `npcs` VALUES (504, 'lobby', 'Npc_153', 0, 0, 0, 1, 10, 0.02948, -133);
|
||||
INSERT INTO `npcs` VALUES (505, 'lobby', 'Npc_62', 0, -0.923828, 0, 0.382568, 28.25, -3, -83.125);
|
||||
INSERT INTO `npcs` VALUES (506, 'lobby', 'Npc_63', 0, -0.984375, 0, 0.173584, 25.2188, -3, -81.625);
|
||||
INSERT INTO `npcs` VALUES (507, 'lobby', 'Npc_192', 0, 0, 0, 1, 0.0846558, 0.0999756, -122.688);
|
||||
INSERT INTO `npcs` VALUES (508, 'lobby', 'Npc_193', 0, 0.130493, 0, 0.991211, -1, 0.0999756, -149.125);
|
||||
INSERT INTO `npcs` VALUES (509, 'lobby', 'Npc_ShipBattle', 0, 0, 0, 1, -7.23828, 0.0999756, -124.875);
|
||||
INSERT INTO `npcs` VALUES (510, 'lobby', 'Npc_241', 0, 0.341797, 0, 0.939453, 8.39844, 0.0999756, -125.062);
|
||||
INSERT INTO `npcs` VALUES (511, 'lobby', 'Npc_244', 0, 0.382568, 0, 0.923828, 6.79688, 0.0999756, -124.375);
|
||||
INSERT INTO `npcs` VALUES (512, 'lobby', 'Npc_230', 0, 0.382568, 0, 0.923828, 9.39844, 0.0999756, -126.562);
|
||||
INSERT INTO `npcs` VALUES (513, 'lobby', 'Npc_CounterQuest1', 0, 0.121826, 0, 0.992188, -29.75, 0.199951, 118.5);
|
||||
INSERT INTO `npcs` VALUES (514, 'lobby', 'Npc_CounterQuest2', 0, -0.130493, 0, 0.991211, 29.8906, 0.199951, 118.375);
|
||||
INSERT INTO `npcs` VALUES (515, 'lobby', 'Npc_CounterArks', 0, 0.865723, 0, -0.499756, 22.6875, 2.85938, 193.5);
|
||||
INSERT INTO `npcs` VALUES (516, 'lobby', 'Npc_ClassCounter', 0, 0.818848, 0, -0.573242, 24.8906, 2.85938, 188.125);
|
||||
INSERT INTO `npcs` VALUES (517, 'lobby', 'Npc_CounterArks2', 0, 0.737305, 0, -0.675293, 26.1875, 2.85938, 183);
|
||||
INSERT INTO `npcs` VALUES (518, 'lobby', 'Npc_CounterMd1', 0, 0.792969, 0, 0.608398, -25.5938, 3.06836, 185.875);
|
||||
INSERT INTO `npcs` VALUES (519, 'lobby', 'Npc_03', 0, 0.258545, 0, 0.96582, -16, 0, 124.5);
|
||||
INSERT INTO `npcs` VALUES (520, 'lobby', 'Npc_26', 0, -1, 0, 0, 7, 2.39844, 201);
|
||||
INSERT INTO `npcs` VALUES (521, 'lobby', 'Npc_52', 0, -0.818848, 0, 0.573242, -45.5, 1, 145);
|
||||
INSERT INTO `npcs` VALUES (522, 'lobby', 'Npc_50', 0, -0.130493, 0, 0.991211, 35.7188, 0.199951, 119.75);
|
||||
INSERT INTO `npcs` VALUES (523, 'lobby', 'Npc_19', 0, 0.818848, 0, -0.573242, -7.59766, 2.39844, 161);
|
||||
INSERT INTO `npcs` VALUES (524, 'lobby', 'Npc_20', 0, -0.173584, 0, 0.984375, 4, 2.39844, 165);
|
||||
INSERT INTO `npcs` VALUES (525, 'lobby', 'Npc_17', 0, 0.675293, 0, 0.737305, -26.1875, 2.91602, 179.25);
|
||||
INSERT INTO `npcs` VALUES (526, 'lobby', 'Npc_58', 0, 0.737305, 0, -0.675293, -22.5, 2.59961, 179.375);
|
||||
INSERT INTO `npcs` VALUES (527, 'lobby', 'Npc_02', 0, 0.737305, 0, -0.675293, 21, 2.39844, 172);
|
||||
INSERT INTO `npcs` VALUES (528, 'lobby', 'Npc_04', 0, 0.939453, 0, 0.341797, -16.5, 2.39844, 196.5);
|
||||
INSERT INTO `npcs` VALUES (529, 'lobby', 'Npc_18', 0, 0.707031, 0, 0.707031, -17.5, 15.7969, 185.5);
|
||||
INSERT INTO `npcs` VALUES (530, 'lobby', 'Npc_54', 0, 1, 0, 0, 0, 15, 206);
|
||||
INSERT INTO `npcs` VALUES (531, 'lobby', 'Npc_59', 0, 0.707031, 0, 0.707031, 58.2812, 1, 138.75);
|
||||
INSERT INTO `npcs` VALUES (532, 'lobby', 'Npc_27', 0, 0.707031, 0, 0.707031, -29.5, 15, 175.5);
|
||||
INSERT INTO `npcs` VALUES (533, 'lobby', 'Npc_49', 0, 0.139038, 0, 0.990234, -35.25, 0.199951, 119.875);
|
||||
INSERT INTO `npcs` VALUES (534, 'lobby', 'Npc_57', 0, 0.996094, 0, 0.0872192, -2.5, 2.40234, 183.5);
|
||||
INSERT INTO `npcs` VALUES (535, 'lobby', 'Npc_82', 0, -0.130493, 0, 0.991211, 39.9375, 0.199951, 120.938);
|
||||
INSERT INTO `npcs` VALUES (536, 'lobby', 'Npc_98', 0, 0.996094, 0, 0.0872192, 6.03125, 2.4043, 151.375);
|
||||
INSERT INTO `npcs` VALUES (537, 'lobby', 'Npc_87', 0, 0.675293, 0, 0.737305, -20.875, 2.40234, 171.875);
|
||||
INSERT INTO `npcs` VALUES (538, 'lobby', 'Npc_86', 0, 0.737305, 0, -0.675293, 21, 2.39844, 172);
|
||||
INSERT INTO `npcs` VALUES (539, 'lobby', 'Npc_151', 0, -0.818848, 0, 0.573242, -12.5, 0, 146.75);
|
||||
INSERT INTO `npcs` VALUES (540, 'lobby', 'Npc_150', 0, -0.923828, 0, 0.382568, -10.8438, 1.19922, 151.75);
|
||||
INSERT INTO `npcs` VALUES (541, 'lobby', 'Npc_185', 0, 0.939453, 0, 0.341797, -16.5, 2.39844, 196.5);
|
||||
INSERT INTO `npcs` VALUES (542, 'lobby', 'Npc_188', 0, 0.737305, 0, -0.675293, 21, 2.39844, 172);
|
||||
INSERT INTO `npcs` VALUES (543, 'lobby', 'Npc_30', 0, -0.923828, 0, 0.382568, 23.5, 15, 203.5);
|
||||
INSERT INTO `npcs` VALUES (544, 'lobby', 'Npc_186', 0, -0.923828, 0, 0.382568, 23.5, 15, 203.5);
|
||||
INSERT INTO `npcs` VALUES (913, 'casino', 'Npc_AmCounterQuestA', 0, -0.865723, 0, 0.5, 22.7969, 6.5, 95.875);
|
||||
INSERT INTO `npcs` VALUES (914, 'casino', 'Npc_AmShopA', 0, -0.707031, 0, 0.707031, 26.2969, 6.5, 82.5625);
|
||||
INSERT INTO `npcs` VALUES (915, 'casino', 'Npc_AmCounterBarA', 0, 0.874512, 0, 0.484863, -22.6719, 6.5, 97);
|
||||
INSERT INTO `npcs` VALUES (916, 'casino', 'Npc_AmExchange1', 0, 0.719238, 0, 0.694336, -26.1875, 6.5, 83.1875);
|
||||
INSERT INTO `npcs` VALUES (917, 'casino', 'Npc_AmExchange2', 0, -0.707031, 0, 0.707031, 51.5938, 0.349854, -0.599609);
|
||||
INSERT INTO `npcs` VALUES (918, 'casino', 'Npc_203', 0, 0, 0, 1, 4, 6.49609, 66.0625);
|
||||
INSERT INTO `npcs` VALUES (919, 'casino', 'Npc_AmCounterB', 0, 0.0435791, 0, 0.999023, -3.64844, 0.349854, -38.5);
|
||||
INSERT INTO `npcs` VALUES (920, 'casino', 'Npc_161', 0, -0.422607, 0, 0.90625, 24, 0.349854, 20);
|
||||
INSERT INTO `npcs` VALUES (921, 'casino', 'Npc_160', 0, -0.818848, 0, 0.573242, -5.5, 0.349854, 31.3906);
|
||||
INSERT INTO `npcs` VALUES (922, 'casino', 'Npc_162', 0, 0.984375, 0, -0.173584, -31.125, 0.349854, 8.32812);
|
||||
INSERT INTO `npcs` VALUES (923, 'casino', 'Npc_215', 0, 0.5, 0, -0.865723, 32, 0.349854, -16.875);
|
||||
INSERT INTO `npcs` VALUES (10, 'campship', 'Npc_02', 0, -0.382568, 0, 0.923828, 5.69922, 0.0999756, -5.79688);
|
||||
|
||||
-- ----------------------------
|
||||
-- Table structure for players
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS `players`;
|
||||
CREATE TABLE `players` (
|
||||
`PlayerID` int NOT NULL AUTO_INCREMENT,
|
||||
`Username` longtext CHARACTER SET latin1 COLLATE latin1_swedish_ci NULL,
|
||||
`Password` longtext CHARACTER SET latin1 COLLATE latin1_swedish_ci NULL,
|
||||
`Nickname` longtext CHARACTER SET latin1 COLLATE latin1_swedish_ci NULL,
|
||||
`SettingsINI` longtext CHARACTER SET latin1 COLLATE latin1_swedish_ci NULL,
|
||||
PRIMARY KEY (`PlayerID`) USING BTREE
|
||||
) ENGINE = InnoDB AUTO_INCREMENT = 10000000 CHARACTER SET = latin1 COLLATE = latin1_swedish_ci ROW_FORMAT = Dynamic;
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of players
|
||||
-- ----------------------------
|
||||
|
||||
-- ----------------------------
|
||||
-- Table structure for serverinfoes
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS `serverinfoes`;
|
||||
CREATE TABLE `serverinfoes` (
|
||||
`info` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
|
||||
`setting` longtext CHARACTER SET latin1 COLLATE latin1_swedish_ci NULL,
|
||||
PRIMARY KEY (`info`) USING BTREE
|
||||
) ENGINE = InnoDB CHARACTER SET = latin1 COLLATE = latin1_swedish_ci ROW_FORMAT = Dynamic;
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of serverinfoes
|
||||
-- ----------------------------
|
||||
|
||||
-- ----------------------------
|
||||
-- Table structure for teleports
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS `teleports`;
|
||||
CREATE TABLE `teleports` (
|
||||
`ZoneName` varchar(225) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL,
|
||||
`ObjectID` int NOT NULL,
|
||||
`RotX` float NOT NULL,
|
||||
`RotY` float NOT NULL,
|
||||
`RotZ` float NOT NULL,
|
||||
`RotW` float NOT NULL,
|
||||
`PosX` float NOT NULL,
|
||||
`PosY` float NOT NULL,
|
||||
`PosZ` float NOT NULL,
|
||||
PRIMARY KEY (`ZoneName`, `ObjectID`) USING BTREE
|
||||
) ENGINE = MyISAM AUTO_INCREMENT = 1 CHARACTER SET = latin1 COLLATE = latin1_swedish_ci ROW_FORMAT = Dynamic;
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of teleports
|
||||
-- ----------------------------
|
||||
INSERT INTO `teleports` VALUES ('lobby', 433, 0, -0.964844, 0, 0.262207, 28.5625, 0, 148.375);
|
||||
INSERT INTO `teleports` VALUES ('lobby', 435, 0, 0.964844, 0, 0.262451, -28.3281, 0, 148.25);
|
||||
INSERT INTO `teleports` VALUES ('lobby', 437, 0, 0.999512, 0, -0.000893593, 0.112061, 0, 138.625);
|
||||
INSERT INTO `teleports` VALUES ('lobby', 441, 0, -0.00242615, 0, 0.999512, -0.0609131, 14, -167.125);
|
||||
INSERT INTO `teleports` VALUES ('lobby', 443, 0, -0.368652, 0, 0.929199, 8.01562, 0.0999756, -143);
|
||||
INSERT INTO `teleports` VALUES ('lobby', 446, 0, -0.391846, 0, -0.919922, -8.00781, 0.0999756, -142.875);
|
||||
|
||||
SET FOREIGN_KEY_CHECKS = 1;
|
73
PSO2SERVER/Server.cs
Normal file
73
PSO2SERVER/Server.cs
Normal file
@ -0,0 +1,73 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Timers;
|
||||
|
||||
using PolarisServer.Network;
|
||||
using PolarisServer.Packets.PSOPackets;
|
||||
|
||||
namespace PolarisServer
|
||||
{
|
||||
public class Server
|
||||
{
|
||||
public static Server Instance { get; private set; }
|
||||
|
||||
private readonly SocketServer _server;
|
||||
|
||||
public List<Client> Clients { get; private set; }
|
||||
public DateTime StartTime { get; private set; }
|
||||
public Timer PingTimer;
|
||||
|
||||
public Server()
|
||||
{
|
||||
Clients = new List<Client>();
|
||||
_server = new SocketServer(12205);
|
||||
_server.NewClient += HandleNewClient;
|
||||
Instance = this;
|
||||
StartTime = DateTime.Now;
|
||||
|
||||
PingTimer = new Timer(1000 * PolarisApp.Config.PingTime); // 1 Minute default
|
||||
PingTimer.Elapsed += PingClients;
|
||||
PingTimer.Start();
|
||||
|
||||
new QueryServer(QueryMode.Ship1, 12100); // Ship 1
|
||||
new QueryServer(QueryMode.Ship2, 12200); // Ship 2
|
||||
}
|
||||
|
||||
public void Run()
|
||||
{
|
||||
while (true)
|
||||
{
|
||||
// Run the underlying SocketServer
|
||||
_server.Run();
|
||||
|
||||
// Check Clients to make sure they still exist
|
||||
foreach (var client in Clients)
|
||||
if (client.IsClosed)
|
||||
{
|
||||
Clients.Remove(client);
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private void HandleNewClient(SocketClient client)
|
||||
{
|
||||
var newClient = new Client(this, client);
|
||||
Clients.Add(newClient);
|
||||
}
|
||||
|
||||
private void PingClients(object sender, ElapsedEventArgs e)
|
||||
{
|
||||
// Ping!
|
||||
// TODO: Disconnect a client if we don't get a response in a certain amount of time
|
||||
foreach (var client in Clients)
|
||||
{
|
||||
if (client != null && client.User != null)
|
||||
{
|
||||
Logger.Write("[HEY] Pinging " + client.User.Username);
|
||||
client.SendPacket(new NoPayloadPacket(0x03, 0x0B));
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
219
PSO2SERVER/Zone/Map.cs
Normal file
219
PSO2SERVER/Zone/Map.cs
Normal file
@ -0,0 +1,219 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.IO;
|
||||
|
||||
using PolarisServer.Models;
|
||||
using PolarisServer.Object;
|
||||
using PolarisServer.Packets;
|
||||
using PolarisServer.Packets.PSOPackets;
|
||||
|
||||
namespace PolarisServer.Zone
|
||||
{
|
||||
public class Map
|
||||
{
|
||||
public string Name { get; set; }
|
||||
public MapType Type { get; set; }
|
||||
public PSOObject[] Objects { get; set; }
|
||||
public PSONPC[] NPCs { get; set; }
|
||||
public ObjectHeader MapHeader { get; set; }
|
||||
|
||||
public int MapID { get; set; }
|
||||
public int VariantID { get; set; }
|
||||
|
||||
public MapFlags Flags { get; set; }
|
||||
|
||||
public List<Client> Clients { get; set; }
|
||||
|
||||
public GenParam GenerationArgs { get; set; }
|
||||
|
||||
public string InstanceName { get; set; }
|
||||
|
||||
public enum MapType : int
|
||||
{
|
||||
Lobby = 4,
|
||||
Casino = 11,
|
||||
MyRoom = 8,
|
||||
TeamRoom = 7,
|
||||
ChallengeLobby = 5,
|
||||
Campship = 1,
|
||||
Quest = 0,
|
||||
Other = ~0
|
||||
};
|
||||
|
||||
[Flags]
|
||||
public enum MapFlags : uint
|
||||
{
|
||||
None = 0,
|
||||
MultiPartyArea = 1,
|
||||
Unknown1 = 2,
|
||||
EnableMap = 4
|
||||
}
|
||||
|
||||
public Map(string name, int id, int variant, MapType type, MapFlags flags)
|
||||
{
|
||||
Name = name;
|
||||
MapID = id;
|
||||
VariantID = variant;
|
||||
Type = type;
|
||||
Flags = flags;
|
||||
Clients = new List<Client>();
|
||||
GenerationArgs = new GenParam();
|
||||
|
||||
Objects = ObjectManager.Instance.GetObjectsForZone(Name);
|
||||
NPCs = ObjectManager.Instance.getNPCSForZone(Name);
|
||||
}
|
||||
|
||||
public PSOLocation GetDefaultLocation()
|
||||
{
|
||||
PSOLocation location;
|
||||
|
||||
switch (Type)
|
||||
{
|
||||
case MapType.Lobby:
|
||||
location = new PSOLocation(0f, 1f, 0f, 0f, -0.417969f, 0f, 137.375f);
|
||||
break;
|
||||
|
||||
case MapType.Casino:
|
||||
location = new PSOLocation(0, 1f, 0, 0, 2, 6, 102);
|
||||
break;
|
||||
|
||||
default:
|
||||
location = new PSOLocation(0f, 1f, 0f, 0f, 0f, 0f, 0f);
|
||||
break;
|
||||
}
|
||||
|
||||
return location;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Spawns a client into a map at a given location
|
||||
/// </summary>
|
||||
/// <param name="c">Client to spawn into map</param>
|
||||
/// <param name="location">Location to spawn client at</param>
|
||||
/// <param name="questOveride">If this also sets the quest data, specify the quest name here to load the spawn from the bin rather then generate it.</param>
|
||||
public void SpawnClient(Client c, PSOLocation location, string questOveride = "")
|
||||
{
|
||||
if (Clients.Contains(c))
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
// Set area
|
||||
if (questOveride != "") // TODO: This is a temporary hack, fix me!!
|
||||
{
|
||||
var setAreaPacket = File.ReadAllBytes("Resources/quests/" + questOveride + ".bin");
|
||||
c.SendPacket(0x03, 0x24, 4, setAreaPacket);
|
||||
}
|
||||
else
|
||||
{
|
||||
PacketWriter writer = new PacketWriter();
|
||||
writer.WriteStruct(new ObjectHeader(3, EntityType.Map));
|
||||
writer.WriteStruct(new ObjectHeader((uint)c.User.PlayerId, EntityType.Player));
|
||||
writer.Write(0x1); // 8 Zeros
|
||||
writer.Write(0); // 8 Zeros
|
||||
writer.Write(~(uint)Type); // F4 FF FF FF
|
||||
writer.Write(MapID); // Map ID maybe
|
||||
writer.Write((uint)Flags);
|
||||
writer.Write(GenerationArgs.seed); // 81 8F E6 19 (Maybe seed)
|
||||
writer.Write(VariantID); // Randomgen enable / disable maybe
|
||||
writer.Write(GenerationArgs.xsize); // X Size
|
||||
writer.Write(GenerationArgs.ysize); // Y Size
|
||||
writer.Write(1);
|
||||
writer.Write(1);
|
||||
writer.Write(~0); // FF FF FF FF FF FF FF FF
|
||||
writer.Write(0x301);
|
||||
|
||||
c.SendPacket(0x3, 0x0, 0x0, writer.ToArray());
|
||||
}
|
||||
|
||||
if (c.CurrentZone != null)
|
||||
{
|
||||
c.CurrentZone.RemoveClient(c);
|
||||
}
|
||||
|
||||
var setPlayerId = new PacketWriter();
|
||||
setPlayerId.WritePlayerHeader((uint)c.User.PlayerId);
|
||||
c.SendPacket(0x06, 0x00, 0, setPlayerId.ToArray());
|
||||
|
||||
// Spawn Character
|
||||
c.SendPacket(new CharacterSpawnPacket(c.Character, location));
|
||||
c.CurrentLocation = location;
|
||||
c.CurrentZone = this;
|
||||
|
||||
// Objects
|
||||
foreach (PSOObject obj in Objects)
|
||||
{
|
||||
c.SendPacket(0x08, 0x0B, 0x0, obj.GenerateSpawnBlob());
|
||||
}
|
||||
|
||||
// NPCs
|
||||
foreach (PSONPC npc in NPCs)
|
||||
{
|
||||
c.SendPacket(0x08, 0xC, 0x4, npc.GenerateSpawnBlob());
|
||||
}
|
||||
|
||||
// Spawn for others, Spawn others for me
|
||||
CharacterSpawnPacket spawnMe = new CharacterSpawnPacket(c.Character, location, false);
|
||||
foreach (Client other in Clients)
|
||||
{
|
||||
other.SendPacket(spawnMe);
|
||||
c.SendPacket(new CharacterSpawnPacket(other.Character, other.CurrentLocation, false));
|
||||
}
|
||||
|
||||
// Unlock Controls
|
||||
c.SendPacket(new NoPayloadPacket(0x03, 0x2B)); // Inital spawn only, move this!
|
||||
|
||||
Clients.Add(c);
|
||||
|
||||
Logger.Write("[MAP] {0} has spawned in {1}.", c.User.Username, Name);
|
||||
|
||||
if (InstanceName != null && ZoneManager.Instance.playerCounter.ContainsKey(InstanceName))
|
||||
{
|
||||
ZoneManager.Instance.playerCounter[InstanceName] += 1;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
public void RemoveClient(Client c)
|
||||
{
|
||||
if (!Clients.Contains(c))
|
||||
return;
|
||||
|
||||
c.CurrentZone = null;
|
||||
Clients.Remove(c);
|
||||
|
||||
foreach (Client other in Clients)
|
||||
{
|
||||
PacketWriter writer = new PacketWriter();
|
||||
writer.WriteStruct(new ObjectHeader((uint)other.User.PlayerId, EntityType.Player));
|
||||
writer.WriteStruct(new ObjectHeader((uint)c.User.PlayerId, EntityType.Player));
|
||||
other.SendPacket(0x4, 0x3B, 0x40, writer.ToArray());
|
||||
}
|
||||
|
||||
if (InstanceName != null && ZoneManager.Instance.playerCounter.ContainsKey(InstanceName))
|
||||
{
|
||||
ZoneManager.Instance.playerCounter[InstanceName] -= 1;
|
||||
if (ZoneManager.Instance.playerCounter[InstanceName] <= 0)
|
||||
{
|
||||
ZoneManager.Instance.playerCounter.Remove(InstanceName);
|
||||
ZoneManager.Instance.instances.Remove(InstanceName);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public class GenParam
|
||||
{
|
||||
public GenParam()
|
||||
{
|
||||
}
|
||||
|
||||
public GenParam(uint seed, uint x, uint y)
|
||||
{
|
||||
this.seed = seed;
|
||||
this.xsize = x;
|
||||
this.ysize = y;
|
||||
}
|
||||
public uint seed, xsize, ysize;
|
||||
}
|
||||
}
|
||||
}
|
68
PSO2SERVER/Zone/ZoneManager.cs
Normal file
68
PSO2SERVER/Zone/ZoneManager.cs
Normal file
@ -0,0 +1,68 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace PolarisServer.Zone
|
||||
{
|
||||
public class ZoneManager
|
||||
{
|
||||
private static readonly ZoneManager instance = new ZoneManager();
|
||||
|
||||
internal Dictionary<string, List<Map>> instances = new Dictionary<string, List<Map>>();
|
||||
|
||||
internal Dictionary<string, int> playerCounter = new Dictionary<string, int>();
|
||||
|
||||
private ZoneManager()
|
||||
{
|
||||
// Create lobby instance
|
||||
List<Map> lobbyMaps = new List<Map>(){ new Map("lobby", 106, 0, Map.MapType.Lobby, Map.MapFlags.None),
|
||||
new Map("casino", 104, 0, Map.MapType.Casino, Map.MapFlags.MultiPartyArea | Map.MapFlags.Unknown1) };
|
||||
|
||||
instances.Add("lobby", lobbyMaps);
|
||||
}
|
||||
|
||||
public static ZoneManager Instance
|
||||
{
|
||||
get
|
||||
{
|
||||
return instance;
|
||||
}
|
||||
}
|
||||
|
||||
public Map MapFromInstance(string mapName, string instanceName)
|
||||
{
|
||||
if (!instances.ContainsKey(instanceName))
|
||||
throw new KeyNotFoundException();
|
||||
|
||||
Map dstMap = null;
|
||||
foreach (Map m in instances[instanceName])
|
||||
{
|
||||
if (m.Name == mapName)
|
||||
return m;
|
||||
}
|
||||
|
||||
return dstMap;
|
||||
}
|
||||
|
||||
public void NewInstance(string instanceName, Map initialMap)
|
||||
{
|
||||
if (instances.ContainsKey(instanceName))
|
||||
{
|
||||
return;
|
||||
}
|
||||
initialMap.InstanceName = instanceName;
|
||||
instances.Add(instanceName, new List<Map>() { initialMap });
|
||||
playerCounter.Add(instanceName, 0);
|
||||
}
|
||||
|
||||
public bool InstanceExists(string instanceName)
|
||||
{
|
||||
return instances.ContainsKey(instanceName);
|
||||
}
|
||||
|
||||
public void AddMapToInstance(string instance, Map m)
|
||||
{
|
||||
List<Map> maps = instances[instance];
|
||||
if (!maps.Contains(m))
|
||||
maps.Add(m);
|
||||
}
|
||||
}
|
||||
}
|
44
PSO2SERVER/app.config
Normal file
44
PSO2SERVER/app.config
Normal file
@ -0,0 +1,44 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<configuration>
|
||||
<configSections>
|
||||
<!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 -->
|
||||
<section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
|
||||
</configSections>
|
||||
<runtime>
|
||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="MySql.Data" publicKeyToken="c5687fc88969c44d" culture="neutral" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-9.0.0.0" newVersion="9.0.0.0" />
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Runtime.CompilerServices.Unsafe" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="6.0.0.0" />
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Memory" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-4.0.1.2" newVersion="4.0.1.2" />
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="ZstdSharp" publicKeyToken="8d151af33a4ad5cf" culture="neutral" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-0.8.1.0" newVersion="0.8.1.0" />
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.IO.Pipelines" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-8.0.0.0" newVersion="8.0.0.0" />
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="Google.Protobuf" publicKeyToken="a7d26565bac4d604" culture="neutral" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-3.28.0.0" newVersion="3.28.0.0" />
|
||||
</dependentAssembly>
|
||||
</assemblyBinding>
|
||||
</runtime>
|
||||
<entityFramework>
|
||||
<providers>
|
||||
<provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" />
|
||||
<provider invariantName="MySql.Data.MySqlClient" type="MySql.Data.MySqlClient.MySqlProviderServices, MySql.Data.EntityFramework, Version=9.0.0.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d">
|
||||
</provider></providers>
|
||||
</entityFramework>
|
||||
<startup>
|
||||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.8" />
|
||||
</startup>
|
||||
</configuration>
|
23
PSO2SERVER/packages.config
Normal file
23
PSO2SERVER/packages.config
Normal file
@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<packages>
|
||||
<package id="BCrypt-Official" version="0.1.109" targetFramework="net40" />
|
||||
<package id="BouncyCastle.Cryptography" version="2.4.0" targetFramework="net48" />
|
||||
<package id="EntityFramework" version="6.4.4" targetFramework="net48" />
|
||||
<package id="Google.Protobuf" version="3.28.0" targetFramework="net48" />
|
||||
<package id="K4os.Compression.LZ4" version="1.3.8" targetFramework="net48" />
|
||||
<package id="K4os.Compression.LZ4.Streams" version="1.3.8" targetFramework="net48" />
|
||||
<package id="K4os.Hash.xxHash" version="1.0.8" targetFramework="net48" />
|
||||
<package id="Microsoft.Bcl.AsyncInterfaces" version="8.0.0" targetFramework="net48" />
|
||||
<package id="MySql.Data" version="9.0.0" targetFramework="net48" />
|
||||
<package id="MySql.Data.EntityFramework" version="9.0.0" targetFramework="net48" />
|
||||
<package id="Newtonsoft.Json" version="13.0.3" targetFramework="net40" requireReinstallation="true" />
|
||||
<package id="System.Buffers" version="4.5.1" targetFramework="net48" />
|
||||
<package id="System.Configuration.ConfigurationManager" version="8.0.0" targetFramework="net48" />
|
||||
<package id="System.Diagnostics.DiagnosticSource" version="8.0.1" targetFramework="net48" />
|
||||
<package id="System.IO.Pipelines" version="8.0.0" targetFramework="net48" />
|
||||
<package id="System.Memory" version="4.5.5" targetFramework="net48" />
|
||||
<package id="System.Numerics.Vectors" version="4.5.0" targetFramework="net48" />
|
||||
<package id="System.Runtime.CompilerServices.Unsafe" version="6.0.0" targetFramework="net48" />
|
||||
<package id="System.Threading.Tasks.Extensions" version="4.5.4" targetFramework="net48" />
|
||||
<package id="ZstdSharp.Port" version="0.8.1" targetFramework="net48" />
|
||||
</packages>
|
77
README.md
Normal file
77
README.md
Normal file
@ -0,0 +1,77 @@
|
||||
PolarisServer rebuild
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
[](http://opensource.org/licenses/AGPL-3.0)
|
||||
[](https://ci.appveyor.com/project/cyberkitsune/polarisserver)
|
||||
|
||||
## Table of Contents
|
||||
|
||||
* [What is it?](#what-is-it)
|
||||
* [Installation](#installation)
|
||||
* [Building The Latest Version](#building-the-latest-version)
|
||||
* [Downloading The Latest Version](#downloading-the-latest-version)
|
||||
* [Documentation](#documentation)
|
||||
* [Licensing](#licensing)
|
||||
* [Third Party Licenses](#third-party-licenses)
|
||||
* [Contributing and Feedback](#contributing-and-feedback)
|
||||
* [Core Maintainers](#core-maintainers)
|
||||
|
||||
## What is it?
|
||||
`Polaris Private Server` is an open source game private server. It is currently work-in-progress alpha, under heavy development and is not yet recommended for production use.
|
||||
|
||||
## Installation
|
||||
As `Polaris Private Server` is a work-in-progress there is no set way of installaing and running, in future releases we hope to have this information stored in an INSTALL file. Until then you can either build or download and run the latest version.
|
||||
|
||||
### Building The Latest Version
|
||||
For the time being, we only support using mono in order to build Polaris.
|
||||
You need to have MonoDevelop 4 / Xamarin studio installed. You also need the Mono runtime, even on Windows!
|
||||
After installing MD / Xamarin and setting up the Mono runtime, open the solution and build!
|
||||
In the future we will hopefully have a buildserver, xbuild / msbuild support and other fancy things.
|
||||
|
||||
### Downloading The Latest Version
|
||||
As the `Polaris Private Server` is a work-in-progress alpha, you can find the latest unstable built version here @ [AppVeyor](https://ci.appveyor.com/project/cyberkitsune/polarisserver/build/artifacts)
|
||||
|
||||
### Documentation
|
||||
All available documentation for the server can be found on the project wiki @ [pso2proxy.cyberkitsune.net/wiki](http://pso2proxy.cyberkitsune.net/wiki)
|
||||
|
||||
## Licensing
|
||||
All code is licensed under the
|
||||
[AGPL](https://github.com/PolarisTeam/PolarisServer/blob/master/LICENSE), v3 or later.
|
||||
|
||||
### Third Party Licenses
|
||||
Copyright (c) 2006 Damien Miller <djm@mindrot.org> (jBCrypt)
|
||||
Copyright (c) 2013 Ryan D. Emerle (.Net port)
|
||||
|
||||
Permission to use, copy, modify, and distribute this software for any
|
||||
purpose with or without fee is hereby granted, provided that the above
|
||||
copyright notice and this permission notice appear in all copies.
|
||||
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
||||
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
||||
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
||||
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
||||
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
||||
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
||||
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
|
||||
## Contributing and Feedback
|
||||
Currently, you can contribute to the Polaris Private Server project by:
|
||||
* Submitting a detailed [issue](https://github.com/PolarisTeam/PolarisServer/issues/new).
|
||||
* [Forking the project](https://github.com/PolarisTeam/PolarisServer/fork), and sending a pull request back to for review.
|
||||
|
||||
There is an IRC channel `#pso2` on BadnikZone (irc.badnik.zone:6667), for talking directly
|
||||
with testers and developers (when awake and present, etc.). However any questions pertaining to the release dates or asking for hacks will be ignored, and you may be banned from the channel.
|
||||
|
||||
### Core Maintainers
|
||||
|
||||
* "cyberkitsune" <https://github.com/cyberkitsune>
|
||||
* "KeyPhact" <https://github.com/KeyPhact>
|
||||
* "Kyle873" <https://github.com/Kyle873>
|
||||
* "LightningDragon" <https://github.com/LightningDragon>
|
||||
* "SonicFreak94" <https://github.com/SonicFreak94>
|
||||
* "Treeki" <https://github.com/Treeki>
|
33
ServerTest/Properties/AssemblyInfo.cs
Normal file
33
ServerTest/Properties/AssemblyInfo.cs
Normal file
@ -0,0 +1,33 @@
|
||||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
// 有关程序集的一般信息由以下
|
||||
// 控制。更改这些特性值可修改
|
||||
// 与程序集关联的信息。
|
||||
[assembly: AssemblyTitle("ServerTest")]
|
||||
[assembly: AssemblyDescription("")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("")]
|
||||
[assembly: AssemblyProduct("ServerTest.Properties")]
|
||||
[assembly: AssemblyCopyright("Sancaros")]
|
||||
[assembly: AssemblyTrademark("")]
|
||||
[assembly: AssemblyCulture("")]
|
||||
|
||||
//将 ComVisible 设置为 false 将使此程序集中的类型
|
||||
//对 COM 组件不可见。 如果需要从 COM 访问此程序集中的类型,
|
||||
//请将此类型的 ComVisible 特性设置为 true。
|
||||
[assembly: ComVisible(false)]
|
||||
|
||||
// 如果此项目向 COM 公开,则下列 GUID 用于类型库的 ID
|
||||
[assembly: Guid("557f7a55-4115-4289-837b-ad4486865435")]
|
||||
|
||||
// 程序集的版本信息由下列四个值组成:
|
||||
//
|
||||
// 主版本
|
||||
// 次版本
|
||||
// 生成号
|
||||
// 修订号
|
||||
//
|
||||
[assembly: AssemblyVersion("1.0.0.0")]
|
||||
[assembly: AssemblyFileVersion("1.0.0.0")]
|
105
ServerTest/ServerTest.csproj
Normal file
105
ServerTest/ServerTest.csproj
Normal file
@ -0,0 +1,105 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="Build" ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<Import Project="..\packages\NUnitTestAdapter.2.3.0\build\NUnitTestAdapter.props" Condition="Exists('..\packages\NUnitTestAdapter.2.3.0\build\NUnitTestAdapter.props')" />
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<ProjectGuid>{024D84F3-734A-421E-BDA9-1C069F9FFD90}</ProjectGuid>
|
||||
<OutputType>Library</OutputType>
|
||||
<RootNamespace>ServerTest</RootNamespace>
|
||||
<AssemblyName>ServerTest</AssemblyName>
|
||||
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
|
||||
<ReleaseVersion>0.1.0-pre</ReleaseVersion>
|
||||
<NuGetPackageImportStamp>
|
||||
</NuGetPackageImportStamp>
|
||||
<TargetFrameworkProfile />
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>full</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>bin\Debug</OutputPath>
|
||||
<DefineConstants>DEBUG;</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<ConsolePause>false</ConsolePause>
|
||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||
<DebugType>full</DebugType>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>bin\Release</OutputPath>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<ConsolePause>false</ConsolePause>
|
||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="Newtonsoft.Json, Version=6.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
|
||||
<SpecificVersion>False</SpecificVersion>
|
||||
<HintPath>..\packages\Newtonsoft.Json.6.0.8\lib\net40\Newtonsoft.Json.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="nunit.framework, Version=2.7.1.0, Culture=neutral, PublicKeyToken=2638cd05610744eb, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\NUnit.2.7.1\lib\nunit.framework.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.Buffers, Version=4.0.3.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\System.Buffers.4.5.1\lib\net461\System.Buffers.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="System.Memory, Version=4.0.1.2, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\System.Memory.4.5.5\lib\net461\System.Memory.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="System.Numerics" />
|
||||
<Reference Include="System.Numerics.Vectors, Version=4.1.4.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\System.Numerics.Vectors.4.5.0\lib\net46\System.Numerics.Vectors.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="System.Runtime.CompilerServices.Unsafe, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\System.Runtime.CompilerServices.Unsafe.6.0.0\lib\net461\System.Runtime.CompilerServices.Unsafe.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="System.Threading.Tasks.Extensions, Version=4.2.0.1, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\System.Threading.Tasks.Extensions.4.5.4\lib\net461\System.Threading.Tasks.Extensions.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="System.ValueTuple, Version=4.0.3.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\System.ValueTuple.4.5.0\lib\net47\System.ValueTuple.dll</HintPath>
|
||||
</Reference>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
<Compile Include="Test.cs" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\PSO2SERVER\PSO2SERVER.csproj">
|
||||
<Project>{E54FC88C-B212-4F47-B2F1-927D39EE3DBA}</Project>
|
||||
<Name>PSO2SERVER</Name>
|
||||
</ProjectReference>
|
||||
</ItemGroup>
|
||||
<ProjectExtensions>
|
||||
<MonoDevelop>
|
||||
<Properties>
|
||||
<Policies>
|
||||
<TextStylePolicy inheritsSet="VisualStudio" inheritsScope="text/plain" scope="text/x-csharp" />
|
||||
<CSharpFormattingPolicy IndentSwitchBody="True" IndentBlocksInsideExpressions="True" AnonymousMethodBraceStyle="NextLine" PropertyBraceStyle="NextLine" PropertyGetBraceStyle="NextLine" PropertySetBraceStyle="NextLine" EventBraceStyle="NextLine" EventAddBraceStyle="NextLine" EventRemoveBraceStyle="NextLine" StatementBraceStyle="NextLine" ElseNewLinePlacement="NewLine" CatchNewLinePlacement="NewLine" FinallyNewLinePlacement="NewLine" WhileNewLinePlacement="DoNotCare" ArrayInitializerWrapping="DoNotChange" ArrayInitializerBraceStyle="NextLine" BeforeMethodDeclarationParentheses="False" BeforeMethodCallParentheses="False" BeforeConstructorDeclarationParentheses="False" NewLineBeforeConstructorInitializerColon="NewLine" NewLineAfterConstructorInitializerColon="SameLine" BeforeDelegateDeclarationParentheses="False" NewParentheses="False" SpacesBeforeBrackets="False" inheritsSet="Mono" inheritsScope="text/x-csharp" scope="text/x-csharp" />
|
||||
<TextStylePolicy inheritsSet="VisualStudio" inheritsScope="text/plain" scope="text/plain" />
|
||||
<TextStylePolicy inheritsSet="null" scope="application/config+xml" />
|
||||
<XmlFormattingPolicy inheritsSet="null" scope="application/config+xml" />
|
||||
<TextStylePolicy inheritsSet="null" scope="application/xml" />
|
||||
<XmlFormattingPolicy inheritsSet="Mono" inheritsScope="application/xml" scope="application/xml" />
|
||||
</Policies>
|
||||
</Properties>
|
||||
</MonoDevelop>
|
||||
</ProjectExtensions>
|
||||
<ItemGroup>
|
||||
<Service Include="{82A7F48D-3B50-4B1E-B82E-3ADA8210C358}" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="app.config" />
|
||||
<None Include="packages.config" />
|
||||
</ItemGroup>
|
||||
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
|
||||
<PropertyGroup>
|
||||
<ErrorText>这台计算机上缺少此项目引用的 NuGet 程序包。使用“NuGet 程序包还原”可下载这些程序包。有关更多信息,请参见 http://go.microsoft.com/fwlink/?LinkID=322105。缺少的文件是 {0}。</ErrorText>
|
||||
</PropertyGroup>
|
||||
<Error Condition="!Exists('..\packages\NUnitTestAdapter.2.3.0\build\NUnitTestAdapter.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\NUnitTestAdapter.2.3.0\build\NUnitTestAdapter.props'))" />
|
||||
</Target>
|
||||
</Project>
|
157
ServerTest/Test.cs
Normal file
157
ServerTest/Test.cs
Normal file
@ -0,0 +1,157 @@
|
||||
using System;
|
||||
using System.Linq;
|
||||
using System.Linq.Expressions;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
using Newtonsoft.Json;
|
||||
using NUnit.Framework;
|
||||
|
||||
using PolarisServer.Models;
|
||||
using PolarisServer.Packets;
|
||||
using PolarisServer.Packets.Handlers;
|
||||
|
||||
namespace PolarisTests
|
||||
{
|
||||
[TestFixture]
|
||||
public class ReflectionTests
|
||||
{
|
||||
[SetUp]
|
||||
public void Setup()
|
||||
{
|
||||
PacketHandlers.LoadPacketHandlers();
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void TestLoginLookup()
|
||||
{
|
||||
Assert.IsNotNull(PacketHandlers.GetHandlerFor(0x11, 0x0));
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void TestAllHandlers()
|
||||
{
|
||||
foreach (var p in PacketHandlers.GetLoadedHandlers())
|
||||
{
|
||||
Assert.IsNotNull(p);
|
||||
Assert.IsInstanceOf(typeof(PacketHandler), p, "Loaded PacketHandler is not a Packet Handler!");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[TestFixture]
|
||||
public class UnsafeTests
|
||||
{
|
||||
private readonly Character.JobParam _jp = new Character.JobParam();
|
||||
|
||||
[Test]
|
||||
public void CheckJobParam()
|
||||
{
|
||||
var size = Marshal.SizeOf(typeof(Character.JobParam));
|
||||
Assert.IsNotNull(_jp);
|
||||
var jpArr = new byte[size];
|
||||
var ptr = Marshal.AllocHGlobal(size);
|
||||
|
||||
Marshal.StructureToPtr(_jp, ptr, true);
|
||||
Marshal.Copy(ptr, jpArr, 0, size);
|
||||
Marshal.FreeHGlobal(ptr);
|
||||
|
||||
foreach (var b in jpArr)
|
||||
{
|
||||
Assert.AreEqual(0, b);
|
||||
}
|
||||
Assert.AreEqual(size, jpArr.Length);
|
||||
}
|
||||
}
|
||||
|
||||
[TestFixture]
|
||||
public class WriterTests
|
||||
{
|
||||
private PacketWriter _writer;
|
||||
|
||||
[SetUp]
|
||||
public void Setup()
|
||||
{
|
||||
_writer = new PacketWriter();
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void TestStructureWrite()
|
||||
{
|
||||
var structureSize = Marshal.SizeOf(typeof(Character.JobParam));
|
||||
var jp = new Character.JobParam();
|
||||
jp.entries.hunter.level = 7;
|
||||
_writer.WriteStruct(jp);
|
||||
var structArray = _writer.ToArray();
|
||||
Assert.AreEqual(structureSize, structArray.Length);
|
||||
Assert.AreEqual(7, structArray[12]);
|
||||
}
|
||||
}
|
||||
|
||||
[TestFixture]
|
||||
public class JsonTests
|
||||
{
|
||||
[Test]
|
||||
public void TestObjectSerialize()
|
||||
{
|
||||
var testObject = new PSOObject
|
||||
{
|
||||
Name = "testobj",
|
||||
Header = new ObjectHeader { ID = 1337, EntityType = EntityType.Object },
|
||||
Position = new PSOLocation
|
||||
{
|
||||
RotX = (float)3.3,
|
||||
RotY = (float)3.3,
|
||||
RotZ = (float)3.3,
|
||||
RotW = (float)3.3,
|
||||
PosX = (float)3.3,
|
||||
PosY = (float)3.3,
|
||||
PosZ = (float)3.3
|
||||
},
|
||||
ThingFlag = 4,
|
||||
Things = new PSOObject.PSOObjectThing[2]
|
||||
};
|
||||
|
||||
var thingData = BitConverter.ToUInt32(new byte[] { 0xff, 0xff, 0xff, 0xff }, 0);
|
||||
testObject.Things[0] = new PSOObject.PSOObjectThing { Data = thingData };
|
||||
var output = JsonConvert.SerializeObject(testObject);
|
||||
Console.Out.WriteLine(output);
|
||||
}
|
||||
}
|
||||
|
||||
[TestFixture]
|
||||
public class DataTests
|
||||
{
|
||||
[Test]
|
||||
public void TestShiftEnum()
|
||||
{
|
||||
byte[] bytes = { 0x1, 0x1, 0x1 };
|
||||
uint dataFlags = bytes[0];
|
||||
dataFlags |= (uint)(bytes[1] << 8);
|
||||
dataFlags |= (uint)(bytes[2] << 16);
|
||||
|
||||
Assert.AreEqual((PackedData.ENT1_ID | PackedData.ROT_Y | PackedData.UNK_Y),
|
||||
(PackedData)dataFlags);
|
||||
Console.Out.WriteLine((PackedData)dataFlags);
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void TestItemGUID()
|
||||
{
|
||||
byte[] itemData =
|
||||
{
|
||||
0xDA, 0x40, 0x99, 0x60, 0x79, 0x2E, 0xFF, 0x03, 0x01, 0x00, 0x0A, 0x00, 0x00, 0x00, 0x20, 0x00,
|
||||
0x00, 0x03, 0xFF, 0x0A, 0x64, 0x00, 0x12, 0x34, 0x01, 0x02, 0x02, 0x02, 0x03, 0x02, 0x04, 0x02,
|
||||
0x05, 0x02, 0x06, 0x02, 0x07, 0x02, 0x08, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
|
||||
};
|
||||
PSO2Item item = new PSO2Item(itemData);
|
||||
long guid = item.GetGUID();
|
||||
long newguid = 0x0123456789ABCDEF;
|
||||
|
||||
Assert.AreEqual(guid, 0x03FF2E79609940DA);
|
||||
|
||||
item.SetGUID(newguid);
|
||||
Assert.AreEqual(item.GetGUID(), 0x0123456789ABCDEF);
|
||||
}
|
||||
}
|
||||
}
|
31
ServerTest/app.config
Normal file
31
ServerTest/app.config
Normal file
@ -0,0 +1,31 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<configuration>
|
||||
<runtime>
|
||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="MySql.Data" publicKeyToken="c5687fc88969c44d" culture="neutral" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-9.0.0.0" newVersion="9.0.0.0" />
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Runtime.CompilerServices.Unsafe" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="6.0.0.0" />
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Memory" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-4.0.1.2" newVersion="4.0.1.2" />
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.IO.Pipelines" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-8.0.0.0" newVersion="8.0.0.0" />
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="Google.Protobuf" publicKeyToken="a7d26565bac4d604" culture="neutral" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-3.28.0.0" newVersion="3.28.0.0" />
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="ZstdSharp" publicKeyToken="8d151af33a4ad5cf" culture="neutral" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-0.8.1.0" newVersion="0.8.1.0" />
|
||||
</dependentAssembly>
|
||||
</assemblyBinding>
|
||||
</runtime>
|
||||
<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.8" /></startup></configuration>
|
11
ServerTest/packages.config
Normal file
11
ServerTest/packages.config
Normal file
@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<packages>
|
||||
<package id="NUnit" version="2.7.1" targetFramework="net48" />
|
||||
<package id="NUnitTestAdapter" version="2.3.0" targetFramework="net45" userInstalled="true" />
|
||||
<package id="System.Buffers" version="4.5.1" targetFramework="net48" />
|
||||
<package id="System.Memory" version="4.5.5" targetFramework="net48" />
|
||||
<package id="System.Numerics.Vectors" version="4.5.0" targetFramework="net48" />
|
||||
<package id="System.Runtime.CompilerServices.Unsafe" version="6.0.0" targetFramework="net48" />
|
||||
<package id="System.Threading.Tasks.Extensions" version="4.5.4" targetFramework="net48" />
|
||||
<package id="System.ValueTuple" version="4.5.0" targetFramework="net48" />
|
||||
</packages>
|
Loading…
Reference in New Issue
Block a user