I think he means "trade"
I think he means "trade"
Does anybody have a Plus Emulator fixed?
2 mus commands:
case "ha":
{
ServerMessage HotelAlert = new ServerMessage(Outgoing.SendNotif);
HotelAlert.AppendString(LanguageLocale.GetValue("hotelallert.notice") + "\r\n" +
param + "\r\n");
HotelAlert.AppendString("");
SilverwaveEnvironment.GetGame().GetClientManager().QueueBroadcaseMessage(HotelAlert);
break;
}
case "useralert":
{
String extradata = data.Split(Convert.ToChar(1))[2];
String url = extradata.Split(Convert.ToChar(1))[0];
GameClient TargetClient = null;
TargetClient = SilverwaveEnvironment.GetGame().GetClientManager().GetClientByUsername(param);
if (TargetClient == null)
{
return;
}
if (url.Contains("://"))
{
extradata = extradata + Convert.ToChar(2) + url;
}
TargetClient.SendNotif(extradata);
break;
}
Anyone here that has any packets related to marketplace even if it is for an old release! Any packetlogs, headers, structures are welcome! Willing to code marketplace for plus.
Should it starts to set groups forums.
Bug:
Sometimes if you create a group, the room name becomes '...' and you can't click edit room settings, if you edit the rooms table and change the groupid to 0 then everything works again. Not sure if it's a bug or not but I don't think it's suppose to do that.
![]()
IGNORE:
internal void IgnoreUser()
{
Room Room = Session.GetHabbo().CurrentRoom;
if (Room == null)
return;
String username = Request.PopFixedString();
Habbo user = SilverwaveEnvironment.GetGame().GetClientManager().GetClientByUsername(username).GetHabbo();
if (user == null)
return;
if (Session.GetHabbo().MutedUsers.Contains(user.Id) || user.Rank > 4)
return;
Session.GetHabbo().MutedUsers.Add(user.Id);
Response.Init(Outgoing.UpdateIgnoreStatus);
Response.AppendInt32(1);
Response.AppendString(username);
SendResponse();
}
Last edited by Noman; 03-08-14 at 10:12 PM.
Works fine for me
http://gyazo.com/a9a732292fc46ceee062452636fbb9ef
@The General: This is from an old BcStorm release I found, let me know if you need anything else.
http://pastebin.com/7iMWSBiZ
Like this said, look at the line 20 on Authenticator.cs file. Maybe a sql column is wrong in the parametersAuthenticator.cs:linje 20