Hello guys,
Does anyone have a list of all ChatTypes? If yes could you please send me the link.
Thanks,
Does anyone have a list of all ChatTypes? If yes could you please send me the link.
Thanks,
Yes. You are completely correct. You can use a command and loop to find chat types- that's what i do for EVERYTHING that I can't find in the ini folder of the client.Quote:
Never Tried, but a loop would be good to get chat types..
and yeah, -Mac- is leecher, that's why he releases nice things on 4botters and He doesn't know how to send a packet thru command.
int lowerRange = int.Parse(Data[1]);
int higherRange = int.Parse(Data[2])
for (int x = lowerRange; x < higherRange; x++)
{
client.Send(new MessagePacket("Testing: " + x, Color.Red, Message.Talk));
client.Send(new MessagePacket("Message Test", Color.Red, (uint)x));
System.Threading.Sleep(100);
// If you use System.Thread.Sleep, you better make this command a new thread or it will
// freeze your entire server while testing.
}
I know that...Quote:
Yes. You are completely correct. You can use a command and loop to find chat types- that's what i do for EVERYTHING that I can't find in the ini folder of the client.
example:
Code:int lowerRange = int.Parse(Data[1]); int higherRange = int.Parse(Data[2]) for (int x = lowerRange; x < higherRange; x++) { client.Send(new MessagePacket("Testing: " + x, Color.Red, Message.Talk)); client.Send(new MessagePacket("Message Test", Color.Red, (uint)x)); System.Threading.Sleep(100); // If you use System.Thread.Sleep, you better make this command a new thread or it will // freeze your entire server while testing. }