MsgWeather

This message updates the weather on a game map.

Table of Contents

Patch 4267

Message Definition

☑️ Assumed (Soul)

PosTypeNameDescriptionExample
0UInt16MsgSizeSize of the message20
2UInt16MsgTypeType of message1016
4UInt32WeatherThe type of weather to display2
8UInt32IntensityScale of 1 to 102450
12Int32DirectionAngle delta of plus or minus 6014
16UInt32ColorARGB color0x00FFFFFF

Weather Type

☑️ Assumed (Soul)

enum WeatherTypes {

    WEATHER_NONE = 0;
    WEATHER_FINE = 1;
    WEATHER_RAINY = 2;
    WEATHER_SNOWY = 3;
    WEATHER_SANDS = 4;
    WEATHER_LEAF = 5;
    WEATHER_FLOWER = 7;
    WEATHER_FLY = 8;
    WEATHER_DANDELION = 9;
    WEATHER_WORM = 10;
    WEATHER_CLOUD = 11;
}