[help]paket

07/04/2009 08:12 taylor2846#1
Can someone give me the packet for weather? like snow/rain plz.
07/04/2009 18:04 Pete1990#2
Whats wrong with it? do you need it if so use Search it will show
07/04/2009 18:39 damianpesta#3
Quote:
Originally Posted by Pete1990 View Post
Whats wrong with it? do you need it if so use Search it will show
Its simply shit lol.
07/04/2009 22:35 taylor2846#4
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?
07/04/2009 23:14 lostsolder05#5
Quote:
Originally Posted by taylor2846 View Post
and i did search all i got was day/night packet
and this


^^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


so can somone plz help me?
you already have all you need to get weather working
07/05/2009 03:33 taylor2846#6
i no .. i just dont no how i mest with it a bit with no results So.. can u give me a bit of help?
07/05/2009 06:01 CptSky#7
Your packet is wrong but with the other information, you can get the weather packet...