mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-04-02 19:42:05 -04:00
Added !set weather <weathertype>and populated weather table
This commit is contained in:
parent
2c18016a29
commit
11a371f32b
@ -454,6 +454,38 @@ namespace FFXIVClassic_Lobby_Server
|
|||||||
return; // catch any invalid warps here
|
return; // catch any invalid warps here
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void doWeather(ConnectedPlayer client, string weatherID)
|
||||||
|
{
|
||||||
|
|
||||||
|
|
||||||
|
long weather = Convert.ToInt64(weatherID);
|
||||||
|
|
||||||
|
if (client != null)
|
||||||
|
{
|
||||||
|
client.queuePacket(BasePacket.createPacket(SetWeatherPacket.buildPacket(client.actorID, weather), true, false));
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* WIP: Change weather serverside, currently only clientside
|
||||||
|
*
|
||||||
|
uint currentZoneID;
|
||||||
|
if (client != null)
|
||||||
|
{
|
||||||
|
currentZoneID = client.getActor().zoneId;
|
||||||
|
|
||||||
|
foreach (KeyValuePair<uint, ConnectedPlayer> entry in mConnectedPlayerList)
|
||||||
|
{
|
||||||
|
// Change the weather for everyone in the same zone
|
||||||
|
if (currentZoneID == entry.Value.getActor().zoneId)
|
||||||
|
{
|
||||||
|
BasePacket weatherPacket = BasePacket.createPacket(SetWeatherPacket.buildPacket(entry.Value.actorID, weather), true, false);
|
||||||
|
entry.Value.queuePacket(weatherPacket);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
*/
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// We only use the default options for SendMessagePacket.
|
/// We only use the default options for SendMessagePacket.
|
||||||
/// May as well make it less unwieldly to view
|
/// May as well make it less unwieldly to view
|
||||||
@ -528,6 +560,26 @@ namespace FFXIVClassic_Lobby_Server
|
|||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
|
#region !dev
|
||||||
|
else if (split[0].Equals("test"))
|
||||||
|
{
|
||||||
|
#region !test weather
|
||||||
|
if (split[1].Equals("weather"))
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
doWeather(client, split[2]);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
catch (Exception e)
|
||||||
|
{
|
||||||
|
Log.error("Could not change weather: " + e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
#endregion
|
||||||
|
}
|
||||||
|
#endregion
|
||||||
|
|
||||||
#region !mypos
|
#region !mypos
|
||||||
else if (split[0].Equals("mypos"))
|
else if (split[0].Equals("mypos"))
|
||||||
{
|
{
|
||||||
|
@ -9,28 +9,31 @@ namespace FFXIVClassic_Map_Server.packets.send
|
|||||||
{
|
{
|
||||||
class SetWeatherPacket
|
class SetWeatherPacket
|
||||||
{
|
{
|
||||||
//TODO: Fix these ids!
|
// Use the first value to change without a transition, the second value to do a standard transition
|
||||||
public const uint WEATHER_CLEAR = 0x011F41;
|
public const uint WEATHER_CLEAR = 0x011F41; // 8001 / 73537
|
||||||
public const uint WEATHER_FINE = 0x011F42;
|
public const uint WEATHER_FINE = 0x011F42; // 8002 / 73538
|
||||||
public const uint WEATHER_CLOUDY = 0x011F3;
|
public const uint WEATHER_CLOUDY = 0x011F43; // 8003 / 73539
|
||||||
public const uint WEATHER_FOGGY = 0x011F4;
|
public const uint WEATHER_FOGGY = 0x011F44; // 8004 / 73540
|
||||||
public const uint WEATHER_WINDY = 0x011F5; //NOT SUPPORTED in v1.23
|
public const uint WEATHER_WINDY = 0x011F45; // 8005 / 73541 - NOT SUPPORTED in v1.23b
|
||||||
public const uint WEATHER_BLUSTERY = 0x011F6;
|
public const uint WEATHER_BLUSTERY = 0x011F46; // 8006 / 73542
|
||||||
public const uint WEATHER_RAINY = 0x011F7;
|
public const uint WEATHER_RAINY = 0x011F47; // 8007 / 73543
|
||||||
public const uint WEATHER_SHOWERY = 0x011F8; //NOT SUPPORTED in v1.23
|
public const uint WEATHER_SHOWERY = 0x011F48; // 8008 / 73544 - NOT SUPPORTED in v1.23b
|
||||||
public const uint WEATHER_THUNDERY = 0x011F9; //NOT SUPPORTED in v1.23
|
public const uint WEATHER_THUNDERY = 0x011F49; // 8009 / 73545 - NOT SUPPORTED in v1.23b
|
||||||
public const uint WEATHER_STORMY = 0x011FA;
|
public const uint WEATHER_STORMY = 0x011F4A; // 8010 / 73546
|
||||||
public const uint WEATHER_DUSTY = 0x011FB; //NOT SUPPORTED in v1.23
|
public const uint WEATHER_DUSTY = 0x011F4B; // 8011 / 73547 - NOT SUPPORTED in v1.23b
|
||||||
public const uint WEATHER_SANDY = 0x011FC;
|
public const uint WEATHER_SANDY = 0x011F4C; // 8012 / 73548
|
||||||
public const uint WEATHER_IFRIT = 0x011F4E;
|
public const uint WEATHER_HOT = 0x011F4D; // 8013 / 73549 - NOT SUPPORTED in v1.23b
|
||||||
public const uint WEATHER_GARUDA = 0x011F5C;
|
public const uint WEATHER_BLISTERING = 0x011F4E; // 8014 / 73550 - Bowl Of Embers Weather
|
||||||
public const uint WEATHER_BLISTERIN = 0x011FD; //NOT SUPPORTED in v1.23
|
public const uint WEATHER_SNOWY = 0x011F4F; // 8015 / 73551 - NOT SUPPORTED in v1.23b
|
||||||
public const uint WEATHER_SNOWY = 0x011FE; //NOT SUPPORTED in v1.23
|
public const uint WEATHER_WINTRY = 0x011F50; // 8016 / 73552 - NOT SUPPORTED in v1.23b
|
||||||
public const uint WEATHER_WINTRY = 0x011FF; //NOT SUPPORTED in v1.23
|
public const uint WEATHER_GLOOMY = 0x011F51; // 8017 / 73553
|
||||||
public const uint WEATHER_GLOOMY = 0x01200;
|
// 8018 - 8026 / 73554 - 73562 - NOT SUPPORTED in v1.23b
|
||||||
public const uint WEATHER_PREDALAMUD = 0x011F5F;
|
public const uint WEATHER_SEASONAL = 0x011F5B; // 8027 / 73563 - Snow in Black Shroud, nothing elsewhere
|
||||||
public const uint WEATHER_DALAMUD = 0x011F5E;
|
public const uint WEATHER_PRIMAL = 0x011F5C; // 8028 / 73564 - Howling Eye and Thornmarch Weather
|
||||||
public const uint WEATHER_SCARYDALAMUD = 0x011F60;
|
// 8029 / 73565 - Not supported
|
||||||
|
public const uint WEATHER_DALAMUD = 0x011F5E; // 8030 / 73566
|
||||||
|
public const uint WEATHER_AURORA = 0x011F5F; // 8031 / 73567
|
||||||
|
public const uint WEATHER_DALAMUDTHUNDER = 0x011F60; // 8032 / 73568
|
||||||
|
|
||||||
public const ushort OPCODE = 0x000D;
|
public const ushort OPCODE = 0x000D;
|
||||||
public const uint PACKET_SIZE = 0x28;
|
public const uint PACKET_SIZE = 0x28;
|
||||||
|
Loading…
Reference in New Issue
Block a user