i want the droprates.ini very classicy
like real game if any body can do that
w8ing ....
thanks....
like real game if any body can do that
w8ing ....
thanks....
Quote:
Read the error message then see if you can figure it out.
Also why did you use an external camera to take the picture x.x
Try not to Tripple Post,Quote:
ok....i fixed everything thanks to your guides, i finally joined my server, but none of the commands work....i made myself GM and all but yet nothing.
That's a very nice blank you've got there.Quote:
[Only registered and activated users can see links. Click Here To Register...]
Quote:
Problem me or coders cant resolve, my server keeps closing itself randomely sometimes. maybe twice in a day. Maybe 3 times, maybe not once, which is rare. But it just closes off. No exception... No errors... Nothing.. Just shuts off. Like it was never even started. Anyone have any suggestions or solutions?
static void Main()
{
AppDomain.CurrentDomain.UnhandledException += new UnhandledExceptionEventHandler(Handle);
}
static void Handle(object sender, UnhandledExceptionEventArgs e)
{
FileLog GlobalExceptionLog = new FileLog("globalexceptions.txt");
GlobalExceptionLog.Open();
GlobalExceptionLog.Write("[Global Unhandled Exception - " + DateTime.Now + "]");
GlobalExceptionLog.Write("Exception:\n" + e.ExceptionObject.ToString());
GlobalExceptionLog.End();
GlobalUnhandledError = true;
}
}
public unsafe void AddSend(COPacket Packet)
{
try
{
byte[] P = Packet.Get;
fixed (byte* p = P)
{
string TQServer = "TQServer";
for (int i = 0; i < 8; i++)
*(p + i + P.Length - 8) = Convert.ToByte(TQServer[i]);
}
PacketGroup.Add(P);
}
catch { }
}