/irc names does nothing for me
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts MenuQuote from: TagRuler on April 22, 2010, 01:55 AMJust google for starcraft cd key, any generated cd key will work, but I'm sure there are public keys on the internet that are banned on Battle.net.
I haven't "forgotten" this website.
I have been checking it every day.
Quote from: Mesiah / haiseM on March 07, 2010, 06:58 PMCould be due to the delay in communication between the gateway and the bot? Or the gateway is being overloaded and has a buffer overflow perhaps?
Invert:
BNX is a great bot. Kudos. I have issues connecting it with my binary gateway program for some reason, same with other console bots.. I have to add a somewhat lengthy delay to everything sent to BNX in order for it to work. Without the delay, it crashes as soon as it opens.
I have this same problem with chewbot 1.x ... it took me hours of scouring on the internet just to find them, can you provide any insight as to why they want to crash without the lengthy delay in between all packets?
Quote
In honor of Black History Month (I am making a mental note to myself to add "ghetto-themed" parties to this list), UCSD students organized a party with the following invitation:
February marks a very important month in American society. No, i'm not referring to Valentines day or Presidents day. I'm talking about Black History month. As a time to celebrate and in hopes of showing respect, the Regents community cordially invites you to its very first Compton Cookout.
For guys: I expect all males to be rockin Jersey's, stuntin' up in ya White T (XXXL smallest size acceptable), anything FUBU, Ecko, Rockawear, High/low top Jordans or Dunks, Chains, Jorts, stunner shades, 59 50 hats, Tats, etc.
For girls: For those of you who are unfamiliar with ghetto chicks-Ghetto chicks usually have gold teeth, start fights and drama, and wear cheap clothes - they consider Baby Phat to be high class and expensive couture...Ghetto chicks have a very limited vocabulary, and attempt to make up for it, by forming new words, such as "constipulated", or simply cursing persistently, or using other types of vulgarities, and making noises, such as "hmmg!", or smacking their lips, and making other angry noises,grunts, and faces.
Quote from: Thing on March 04, 2010, 08:54 AMIT'S ALIVE!
I'm getting pretty ramped up on caffeine already.
Quote from: Invert on March 03, 2010, 05:26 PMDefinitely fun. I'm surprised you posted this link though, I seem to remember catching crap from you a few years ago for posting a file sharing URL
http://www.gossipgamer.com/starcraft-2-beta-cracked-available-for-download/
Quote from: Michael on February 25, 2010, 04:51 PMSame exact situation here. The game just isn't that great. I got tired of it in less than a week and a half
I played it for awhile but i lost interest and ended up wasting money
Quote from: Mesiah / haiseM on February 10, 2010, 10:13 PMLol i dunno, laurion maybe? I've gone through a lot of nicks, who knows. Glad to hear your plans are going well Stonerbot eh? Hash bash is coming up soon... (ann arbor, 4/20 every year, heard of it?)
lol what nick did u have back then tazo? ur name doesn't ring a bell.. and I'm good now, ice is updating flux and i've got this lil war2 gate thing goin on myself. And I'm programming a new bot as well, STONERBOT!
static void timerTick()
{
if (stmBnet.DataAvailable)
{
int i = stmBnet.Read(RecvData, 0, size);
if (i > 0)
{
//data exists, separate it up and remove the null bytes
SplitPacket(RecvData);
if (DataQ.Count > 0)
{
//parse the separated packets
ParsePackets();
}
RecvData = new byte[size]; //reset the buffer
}
}
}
static void SplitPacket(byte[] bData)
{
for (int i = 0; i < bData.Length; i++)
{
if (bData[i] == (byte)0xff)
{
//found 0xFF, check if it's a header
if (bData.Length >= i + 2) //check that we can move up 2 more bytes to check for packet size
{
//i is still the location of 0xFF
byte packetid = bData[i + 1];
int packetsize = BitConverter.ToInt16(bData, i + 2);
if (bData.Length >= i + (packetsize - 1) && packetsize > 3 && packetsize < 512)
{
Console.WriteLine("Packet ID: 0x{0} :: Size: {1}", packetid.ToString("x2"), packetsize);
string splitPacket = Encoding.Unicode.GetString(bData, i, packetsize);
DataFormatter.WriteToConsole(Encoding.Unicode.GetBytes(splitPacket));
DataQ.Add(splitPacket);
}
}
}
}
}
FF 30 09 00 01 00 00 00 00, the packet splitter function will somehow end up with
FF 30 09 00 01 00 00 00 FD FFinstead.
string splitPacket = Encoding.Unicode.GetString(bData, i, packetsize);
static void SplitPacket(byte[] bData)
{
for (int i = 0; i < bData.Length; i++)
{
if (bData[i] == (byte)0xff)
{
//found FF, check if it's a header
if (bData.Length >= i + 2) //check that we can move up 2 more bytes to check for packet size
{
byte packetid = bData[i + 1];
int packetsize = BitConverter.ToInt16(bData, i + 2);
if (bData.Length >= i + (packetsize - 1) && packetsize > 3 && packetsize < 512)
{
//we have enough room to separate the packet, it is a valid BNCS packet\
Console.WriteLine("Packet ID: 0x{0} :: Size: {1}", packetid.ToString("x2"), packetsize);
byte[] tempData = new byte[packetsize];
Array.Copy(bData, i, tempData, 0, packetsize);
DataFormatter.WriteToConsole(tempData);
DataQ.Add(tempData);
}
}
}
}
}
Page created in 0.304 seconds with 16 queries.