|
You last visited: Today at 22:38
Advertisement
Lottery Packet Type
Discussion on Lottery Packet Type within the CO2 Private Server forum part of the Conquer Online 2 category.
02/07/2012, 18:24
|
#1
|
elite*gold: 0
Join Date: Aug 2007
Posts: 1,525
Received Thanks: 230
|
Lottery Packet Type
Any1 know the packet Type of Lottery ?
|
|
|
02/07/2012, 18:32
|
#2
|
elite*gold: 20
Join Date: Jun 2006
Posts: 3,296
Received Thanks: 925
|
Lottery is not a packet.
|
|
|
02/07/2012, 19:41
|
#3
|
elite*gold: 12
Join Date: Jul 2011
Posts: 8,282
Received Thanks: 4,191
|
Lottery is just a bunch of NPCs.
|
|
|
02/07/2012, 20:11
|
#4
|
elite*gold: 0
Join Date: Aug 2007
Posts: 1,525
Received Thanks: 230
|
Quote:
Originally Posted by Kiyono
Lottery is not a packet.
|
Quote:
Originally Posted by Fаng
Lottery is just a bunch of NPCs.
|
guyz Iam talkin About when u Pick up lottery Box GUI Open and Alot of items Come till it Stops on the item that u wins...if no1 understand Tell me
|
|
|
02/07/2012, 20:17
|
#5
|
elite*gold: 20
Join Date: Jun 2006
Posts: 3,296
Received Thanks: 925
|
Sounds like the Eudemons system, CO doesn't use that method unless they changed it in the last few months.
|
|
|
02/07/2012, 20:22
|
#6
|
elite*gold: 0
Join Date: Feb 2009
Posts: 920
Received Thanks: 3,514
|
they changed lottery, you have now 5 boxes inside lotto, you pick on and it starts moving items till it stops on one, if you dont want that item you can add a lotto jade or something to try again, and yea it was added few months ago
|
|
|
02/07/2012, 20:36
|
#7
|
elite*gold: 0
Join Date: Aug 2007
Posts: 1,525
Received Thanks: 230
|
Gr8 Seems Everybody now Understand So Surely its Either Data Packet 10010 Subtype or Just Separated packet Type ...So what is it ?? i've seen it in Angelic Co and i Liked it Alot
|
|
|
02/07/2012, 21:43
|
#8
|
elite*gold: 20
Join Date: Jun 2006
Posts: 3,296
Received Thanks: 925
|
Well if you think it's a 10010 subtype, start testing.
Example command:
Code:
private static bool Command_Test(Player user, string[] data)
{
if (user.Permission < PlayerPermission.Player) return false;
for (uint i = 0; i < 10000; i++)
{
for (ushort x = 155; x < 500; x++)
{
user.Send(Packet.DataPacket.test(user.UID, i, x, user.X, user.Y));
}
}
return true;
}
Code:
public static byte[] test(uint id, uint subtype, ushort action, ushort x, ushort y)
{
byte[] Packet = new byte[8 + 37];
Packets.WriteUInt16(37, 0, Packet);
Packets.WriteUInt16(10010, 2, Packet);
Packets.WriteUInt32(id, 4, Packet);
Packets.WriteUInt32(subtype, 8, Packet);
Packets.WriteUInt16(0, 12, Packet);
Packets.WriteUInt16(0, 14, Packet);
Packets.WriteUInt32(0, 16, Packet);
Packets.WriteUInt16(action, 20, Packet);
Packets.WriteUInt16(0, 22, Packet);
Packets.WriteUInt32(0, 24, Packet);
Packets.WriteUInt32(0, 28, Packet);
Packets.WriteUInt32(0, 32, Packet);
Packets.WriteByte(0, 36, Packet);
return Packet;
}
Don't use it like this though, will crash the server.
|
|
|
02/07/2012, 21:46
|
#9
|
elite*gold: 0
Join Date: Dec 2011
Posts: 1,537
Received Thanks: 785
|
Log packets.
|
|
|
02/07/2012, 23:59
|
#10
|
elite*gold: 21
Join Date: Jul 2005
Posts: 9,193
Received Thanks: 5,380
|
What patch did it change in? If It's a newer client then you're using then you're out of luck really.
|
|
|
02/08/2012, 00:07
|
#11
|
elite*gold: 0
Join Date: Aug 2007
Posts: 1,525
Received Thanks: 230
|
Quote:
Originally Posted by pro4never
What patch did it change in? If It's a newer client then you're using then you're out of luck really.
|
Well i've Asked Friends About this ..They said it have been working 5 Months ago Which means it was 5530+ i guess ..But Angelic Co Got it Fully Working ...Maybe he used Updated Packet sniffer ????
Anyways all i want is Packet Type Or its subtype Number And Handling issue is Mine
|
|
|
02/08/2012, 00:09
|
#12
|
elite*gold: 0
Join Date: Dec 2011
Posts: 1,537
Received Thanks: 785
|
May I ask if it's something like this?
Why don't you packetsniff Angelic?
|
|
|
02/08/2012, 00:33
|
#13
|
elite*gold: 0
Join Date: Aug 2007
Posts: 1,525
Received Thanks: 230
|
Quote:
Originally Posted by I don't have a username
May I ask if it's something like this?
Why don't you packetsniff Angelic?
|
well Hell Yea same Concept ...i thought so but is there any released Packet sniffer that Support 5517 - 5528 or i have to update them ?
|
|
|
02/08/2012, 00:37
|
#14
|
elite*gold: 12
Join Date: Jul 2011
Posts: 8,282
Received Thanks: 4,191
|
Quote:
Originally Posted by shadowman123
well Hell Yea same Concept ...i thought so but is there any released Packet sniffer that Support 5517 - 5528 or i have to update them ?
|
Yep. Chris's and my proxy both can handle it. Use Chris's though. My proxy is from ages ago.
Also, it's probably it's own packet if you can do things with the window. It should be brought up using 10010... so if you can guess the window's id, you might be able to wing it from there.
|
|
|
02/08/2012, 09:10
|
#15
|
elite*gold: 0
Join Date: Aug 2007
Posts: 1,525
Received Thanks: 230
|
Quote:
Originally Posted by Fаng
Yep. Chris's and my proxy both can handle it. Use Chris's though. My proxy is from ages ago.
Also, it's probably it's own packet if you can do things with the window. It should be brought up using 10010... so if you can guess the window's id, you might be able to wing it from there.
|
i Created Command by which i can check the Windows IDs i tried from 1- 700 and just got the ChangeName WIndow and Degrade Item too nothing more
|
|
|
Similar Threads
|
Packet Type 15000?
01/30/2012 - CO2 Programming - 8 Replies
Hi,
Anyone know what this packet is for? It looks like it's full of a random mess.
|
Packet Type
03/20/2011 - CO2 Private Server - 5 Replies
Problem solved.
Special Thanks to pro4never and impulse.
#request close.
|
[HELP] handle packet type 1151 coemu
10/18/2009 - CO2 Private Server - 4 Replies
anyone know this error handle packet type 1151
regard
antulilin
|
[HELP] packet Type [CoEmu v2]
10/02/2009 - CO2 Private Server - 1 Replies
i need help with "Unknown packet type: 1015" GameServer, could someone help me plz? no hair, no char name...
|
0x3f2 packet type 0x64
12/20/2008 - Conquer Online 2 - 12 Replies
Hwello
|
All times are GMT +1. The time now is 22:39.
|
|