Plus Emu - HAL doesn't open link in a new tab
Title says it all,
I'm using the old R63B Plus emulator (v1) - and HAL doesn't open links in a new tab, what could be causing this?
It's opening tabs in the client window so it closes client and takes them to the HAL'd link..
Quote:
#region Hotel alert w/link (:hal) case "hal":
{
if (Session.GetHabbo().HasCmd("hal") || Session.GetHabbo().IsCool)
{
Room TargetRoom = Session.GetHabbo().CurrentRoom;
// Hotel Alert pluss link :hal <link> <message>
string Link = Params[1];
string Message = MergeParams(Params, 2);
ServerMessage nMessage = new ServerMessage(Outgoing.SendNotif);
nMessage.AppendString(LanguageLocale.GetValue("hotelallert.notice") + "\r\n" + Message + "\r\n-" + Session.GetHabbo().Username);
nMessage.AppendString(Link);
SilverwaveEnvironment.GetGame().GetClientManager().QueueBroadcaseMessage(nMessage);
SilverwaveEnvironment.GetGame().GetModerationTool().LogStaffEntry(Session.GetHabbo().Username, string.Empty, "HotelAlert", "Hotel alert [" + Message + "]");
}
return true;
}
#endregion