本文整理汇总了C#中GoldTree.HabboHotel.GameClients.GameClient.method_6方法的典型用法代码示例。如果您正苦于以下问题:C# GameClient.method_6方法的具体用法?C# GameClient.method_6怎么用?C# GameClient.method_6使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类GoldTree.HabboHotel.GameClients.GameClient
的用法示例。
在下文中一共展示了GameClient.method_6方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Handle
public void Handle(GameClient Session, ClientMessage Event)
{
if (Session.GetHabbo() == null)
{
Session.method_6(Event.PopFixedString());
if (Session.GetHabbo() != null && Session.GetHabbo().list_2 != null && Session.GetHabbo().list_2.Count > 0)
{
using (DatabaseClient @class = GoldTree.GetDatabase().GetClient())
{
try
{
ServerMessage Message = new ServerMessage(420u);
Message.AppendInt32(Session.GetHabbo().list_2.Count);
foreach (uint current in Session.GetHabbo().list_2)
{
string string_ = @class.ReadString("SELECT username FROM users WHERE Id = " + current + " LIMIT 1;");
Message.AppendStringWithBreak(string_);
}
Session.SendMessage(Message);
}
catch
{
Console.ForegroundColor = ConsoleColor.Red;
Logging.WriteLine("Login error: User is ignoring a user that no longer exists");
Console.ForegroundColor = ConsoleColor.Gray;
}
}
}
}
}