I tried to fix the sit button and i found this solution, hope it will work for you. If i forgot something, please tell me :)
REVISION: RELEASE63-201211141113-913728051
Search in Incoming.cs:
Add under:Code:public static int ApplyAction;
Search for:Code:public static int Sit;
Add under:Code:Incoming.ApplySign = 1879;
Search in StaticClientMessageHandler.cs:Code:Incoming.Sit = 3679;
Add under:Code:handlers.Add(Incoming.ApplySign, new StaticRequestHandler(SharedPacketLib.Sign));
Search in SharedPacketLib:Code:handlers.Add(Incoming.Sit, new StaticRequestHandler(SharedPacketLib.Sit));
Add under:Code:internal static void Sign(GameClientMessageHandler handler) { handler.Sign(); }
Search in GameClientMessageHandler.cs:Code:internal static void Sit(GameClientMessageHandler handler) { handler.Sit(); }
Place above:Code:internal void DeclineRequest()
-----------------------------------------------------------------------Code:internal void Sit() { Room room = ButterflyEnvironment.GetGame().GetRoomManager().GetRoom(this.Session.GetHabbo().CurrentRoomId); int tries = 0; if (room != null) { RoomUser roomUserByHabbo = room.GetRoomUserManager().GetRoomUserByHabbo(Session.GetHabbo().Id); if (roomUserByHabbo != null) { roomUserByHabbo.Unidle(); if (!roomUserByHabbo.Statusses.ContainsKey("sit") && !roomUserByHabbo.Statusses.ContainsKey("lay")) { if ((roomUserByHabbo.RotBody % 2) == 0) { if (roomUserByHabbo == null) { return; } try { roomUserByHabbo.Statusses.Add("sit", "0.55"); roomUserByHabbo.acostadoBol = true; roomUserByHabbo.UpdateNeeded = true; } catch { } return; } else { if (tries <= 1) { roomUserByHabbo.RotBody--; tries++; Sit(); } else { Session.SendNotif("You cannot sit diagonally, try it again please"); tries = 0; } } } else if (roomUserByHabbo.acostadoBol == true) { roomUserByHabbo.Statusses.Remove("sit"); roomUserByHabbo.Statusses.Remove("0.55"); roomUserByHabbo.acostadoBol = false; roomUserByHabbo.UpdateNeeded = true; } } } }
packetneed.PNG - Bilder und Fotos kostenlos auf ImageBanana hochladen
For the Help tool, you need to replace the packet ID. Report a Bully, Take a tour or Ask a question will not work but "Immediate Help" will work fine at each time you click on it:
Find in Incoming.cs
Replace with:Code:Incoming.OpenHelpTool = 2599;
--------------------------------------------------------------------------------------------Code:Incoming.OpenHelpTool = 456;
Room Ban Button
Find in Incoming.cs
Replace with:Code:Incoming.BanUserOfRoom = 3002;
Don't forget to like if you like this thread :)Code:Incoming.BanUserOfRoom = 1515;


![[BCSTORM] FIX Sit Button + Packet ID for "Immediate Help" + Ban From Room Button](http://ragezone.com/hyper728.png)


