Client stays black can someone help me?
Anyone got a suggestion?
Help XD
Printable View
Client stays black can someone help me?
Anyone got a suggestion?
Help XD
how you fix the diamonds :?:
User_bots've created the table but when i buy a boy it did not show up on my inventory ..
pass a SQL code
please
I was trying some things, and coded the "Mute all" button in room settings (it's functioning like a roommute);
Add to Incomming.cs somewhere in the first part:
In the second part this:Code:public static int AlgemeenSpreekverbodIn;
In Outgoing.cs add this in the first part:Code:Incoming.AlgemeenSpreekverbodIn = 574;
And this in the second part:Code:public static int AlgemeenSpreekverbodKnop;
In StaticClientMessageHandler.cs in the RegisterPacketLibary void add this:Code:Outgoing.AlgemeenSpreekverbodKnop = 2132;
In SharedPacketLib.cs add this in the SharedPacketLib:Code:handlers.Add(Incoming.AlgemeenSpreekverbodIn, new StaticRequestHandler(SharedPacketLib.AlgemeenSpreekverbodIn));
Add this void to your GameClientMessageHandler.cs (above //furnimatic or something):Code:internal static void AlgemeenSpreekverbodIn(GameClientMessageHandler handler)
{
handler.AlgemeenSpreekverbodIn();
}
When you click, it will mute the room and change the text to "Unmute all" (or something), when you click again it will unmute the room and change the text back to "Mute all".Code:internal void AlgemeenSpreekverbodIn()
{
Room currentRoom = this.Session.GetHabbo().CurrentRoom;
if (this.Session.GetHabbo().CurrentRoom.RoomMuted)
{
this.Session.GetHabbo().CurrentRoom.RoomMuted = false;
ServerMessage Message = new ServerMessage(Outgoing.AlgemeenSpreekverbodKnop);
Message.AppendBoolean(false);
Session.SendMessage(Message);
return;
}
else
{
this.Session.GetHabbo().CurrentRoom.RoomMuted = true;
ServerMessage Message = new ServerMessage(Outgoing.AlgemeenSpreekverbodKnop);
Message.AppendBoolean(true);
Session.SendMessage(Message);
return;
}
}
If you want to improve, feel free :). I know the packet names are in Dutch (because I'm from Belgium), that's just Ducth for General Mute :P.
- Matthias
Thanks for the mute all button, will add to my edit later.
kick for room is a bug :S is a exit hotel
use the right swf.
Can please someone help me with my black screen issue. Would really appreciate it.