ok if u have the lotf source or many others for that matter wen u log out while dead and log back in you have 0 health and still in the same place how do you make it so it revs wen u disconnect or you client is dropped
im thinkin it has somethin to do with this line of code...
Code:
public void GameDisconnectionHandler(object Sender, HybridSocket Socket, string Debug)
{
try
{
Client Cli = (Client)Socket.Wrapper;
if (Cli != null && Cli.Online)
Cli.Drop();
}
catch (Exception Exc) { WriteLine(Exc.ToString()); }
}