HoloEMU
Member
- Sep 24, 2011
- 31
- 1
Thanks to Sleddeh and Jammeh.
Go to virtualusers.cs and add this.
When your in-Hotel then type :logout you will log out and nobody can hit you.
Go to virtualusers.cs and add this.
Code:
#region :logout
case "logout":
{
Room.sendShout(roomUser, "--- Logging out in 5 seconds ---");
sendData("BK" + "You Will Auto DC In 5 Seconds");
roomUser.walkLock = false;
Thread.Sleep(5000);
Room.removeUser(roomUser.roomUID, false, "");
Disconnect();
break;
}
#endregion
When your in-Hotel then type :logout you will log out and nobody can hit you.