and i did search all i got was day/night packet
and this
Quote:
define_message (
weather => [
weather_type => enum("WEATHER_TYPE", uint32()),
#number between 0 - 999 (higher is more visible)
intensity => uint32(),
#number between 0-359 (angle in degrees)
direction => uint32(),
#some WEATHER_TYPE have multiple appearances/colors, try 1, 2, 3 etc.
appearance => uint32(),
], 0x3f8,
};
enum WEATHER_TYPE
{
WEATHER_NONE=0,
WEATHER_NORMAL,
WEATHER_RAINY,
WEATHER_SNOWY,
WEATHER_SANDY,
WEATHER_LEAFY,
WEATHER_BAMBOO,
WEATHER_SAKURA,
WEATHER_FLYING,
WEATHER_DANDELION,
WEATHER_UNKNOWN,
WEATHER_CLOUDY,
WEATHER_ALL
};
|
^^i found this from unknownone. dont no what t is
and i got this dont no whre i got it from or how to us it
Quote:
public byte[] Packet0x3f8(uint UID, uint dwParam, ushort wParam1, ushort wParam2, ushort wParam3, ushort ID)
{
byte[] Buffer = new byte[24];
fixed (byte* lpBuffer = Buffer)
{
*((ushort*)(lpBuffer)) = 24;
*((ushort*)(lpBuffer + 2)) = 0x3f8;
*((uint*)(lpBuffer + 4)) = (uint)Environment.TickCount;
*((uint*)(lpBuffer + 8)) = UID;
*((uint*)(lpBuffer + 12)) = dwParam;
*((ushort*)(lpBuffer + 16)) = wParam1;
*((ushort*)(lpBuffer + 18)) = wParam2;
*((ushort*)(lpBuffer + 20)) = wParam3;
*((ushort*)(lpBuffer + 22)) = ID;
}
return Buffer;
}
|
so can somone plz help me?