[BCSTORM] FIX Sit Button + Packet ID for "Immediate Help" + Ban From Room Button

Results 1 to 19 of 19
  1. #1
    En Français? Bjork is offline
    MemberRank
    Apr 2007 Join Date
    854Posts

    [BCSTORM] FIX Sit Button + Packet ID for "Immediate Help" + Ban From Room Button

    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:

    Code:
    public static int ApplyAction;
    Add under:

    Code:
    public static int Sit;
    Search for:

    Code:
    Incoming.ApplySign = 1879;
    Add under:

    Code:
    Incoming.Sit = 3679;
    Search in StaticClientMessageHandler.cs:

    Code:
    handlers.Add(Incoming.ApplySign, new StaticRequestHandler(SharedPacketLib.Sign));
    Add under:

    Code:
    handlers.Add(Incoming.Sit, new StaticRequestHandler(SharedPacketLib.Sit));
    Search in SharedPacketLib:

    Code:
    internal static void Sign(GameClientMessageHandler handler)
            {
                handler.Sign();
            }
    Add under:

    Code:
    internal static void Sit(GameClientMessageHandler handler)
            {
                handler.Sit();
            }
    Search in GameClientMessageHandler.cs:

    Code:
    internal void DeclineRequest()
    Place above:

    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
    Code:
    Incoming.OpenHelpTool = 2599;
    Replace with:

    Code:
    Incoming.OpenHelpTool = 456;
    --------------------------------------------------------------------------------------------
    Room Ban Button

    Find in Incoming.cs
    Code:
    Incoming.BanUserOfRoom = 3002;
    Replace with:

    Code:
    Incoming.BanUserOfRoom = 1515;
    Don't forget to like if you like this thread :)
    Last edited by Bjork; 17-01-13 at 02:13 AM.


  2. #2
    Eye Eye Capt'n Spheral is offline
    MemberRank
    May 2010 Join Date
    TumptonshireLocation
    2,488Posts

    Re: [BCSTORM] FIX Sit Button + Packet ID for "Immediate Help"

    I wish people could post the swf revision for these fixes, so i know what to change for different revisions.

  3. #3
    Banned rafa95123 is offline
    BannedRank
    May 2009 Join Date
    /home/RaphaLocation
    564Posts

    Re: [BCSTORM] FIX Sit Button + Packet ID for "Immediate Help"

    Me too, and one tip... You don't need make a code big equal to this!
    But, very thanks and Good Work ^^

  4. #4
    Eye Eye Capt'n Spheral is offline
    MemberRank
    May 2010 Join Date
    TumptonshireLocation
    2,488Posts

    Re: [BCSTORM] FIX Sit Button + Packet ID for "Immediate Help"

    I think its for RELEASE63-201211141113-913728051, not too sure. That's the swf revision that works for me on BCStorm

  5. #5
    :joy: Jonteh is offline
    MemberRank
    Apr 2007 Join Date
    New York, USALocation
    3,372Posts

    Re: [BCSTORM] FIX Sit Button + Packet ID for "Immediate Help"

    Quote Originally Posted by JohnHearfield View Post
    I think its for RELEASE63-201211141113-913728051, not too sure. That's the swf revision that works for me on BCStorm
    Do you have an issue with using Quacksters header tool on the habbo_scripts for this revision? If you don't can you send me the outputted files via pm

  6. #6
    Eye Eye Capt'n Spheral is offline
    MemberRank
    May 2010 Join Date
    TumptonshireLocation
    2,488Posts

    Re: [BCSTORM] FIX Sit Button + Packet ID for "Immediate Help"

    Quote Originally Posted by Jonteh View Post
    Do you have an issue with using Quacksters header tool on the habbo_scripts for this revision? If you don't can you send me the outputted files via pm
    I will do in a minute, my friend :)

  7. #7
    En Français? Bjork is offline
    MemberRank
    Apr 2007 Join Date
    854Posts

    Re: [BCSTORM] FIX Sit Button + Packet ID for "Immediate Help"

    Added the revision: RELEASE63-201211141113-913728051

    And here are the habbo scripts from quackster tool for RELEASE63-201211141113-913728051:

    Incoming: Incoming-habbo-RELEASE63-201211141113-913728051 - Pastebin.com
    Outgoing: Outgoing-habbo-RELEASE63-201211141113-913728051 - Pastebin.com

  8. #8
    Eye Eye Capt'n Spheral is offline
    MemberRank
    May 2010 Join Date
    TumptonshireLocation
    2,488Posts

    Re: [BCSTORM] FIX Sit Button + Packet ID for "Immediate Help"

    Quote Originally Posted by Bjork View Post
    Added the revision: RELEASE63-201211141113-913728051

    And here are the habbo scripts from quackster tool for RELEASE63-201211141113-913728051:

    Incoming: Incoming-habbo-RELEASE63-201211141113-913728051 - Pastebin.com
    Outgoing: Outgoing-habbo-RELEASE63-201211141113-913728051 - Pastebin.com
    Lol, i was gonna send em to him. But thanks anyway

  9. #9
    Just out there.. Flare is offline
    MemberRank
    Jun 2012 Join Date
    269Posts

    Re: [BCSTORM] FIX Sit Button + Packet ID for "Immediate Help"

    thanks, ive used everyones and all releases/ fix's . im slowly learning c# :D . i will soon try to release some more fixes but otherwiese + 1 like

  10. #10
    Proficient Member TheRook is offline
    MemberRank
    Dec 2009 Join Date
    USALocation
    191Posts

    Re: [BCSTORM] FIX Sit Button + Packet ID for "Immediate Help"

    Immediate Help still dosen't work for me. Have to first click on "Immediate Help" and then click on one of the others buttons for it to work. Also, I get disconnected if I hit the "Panic button"

  11. #11
    Valued Member GheddoMonsta is offline
    MemberRank
    Feb 2011 Join Date
    127Posts

    Re: [BCSTORM] FIX Sit Button + Packet ID for "Immediate Help"

    thank you ;)

  12. #12
    Gamma Spamma Liam is online now
    MemberRank
    Dec 2011 Join Date
    Down UnderLocation
    2,945Posts

    Re: [BCSTORM] FIX Sit Button

    Quote Originally Posted by Squashing View Post
    Already had it
    Can you stop replying to threads, do you know how annoying you are!? No one cares if you have it or not, you've replied to about every single thread saying you already have it.. We don't care!

    But thanks for this fix, it's another step towards fixing BCStorm!

  13. #13
    Just out there.. Flare is offline
    MemberRank
    Jun 2012 Join Date
    269Posts

    Re: [BCSTORM] FIX Sit Button

    nice. nice . nice. just added the ban button update now.

  14. #14
    Run, but I'll find you. Ddos Attack is offline
    MemberRank
    Jan 2011 Join Date
    AustraliaLocation
    908Posts

    Re: [BCSTORM] FIX Sit Button + Packet ID for "Immediate Help" + Ban From Room Button

    Added this, now the Sit button does not appear in Actions. ;o

  15. #15
    Valued Member smasher1994 is offline
    MemberRank
    Sep 2008 Join Date
    122Posts

    Re: [BCSTORM] FIX Sit Button + Packet ID for "Immediate Help" + Ban From Room Button

    But this fix have detailed faults. If I stand up again, my Habbo looks like
    he go up stairs. And i miss the Sit Shadow :s

  16. #16
    En Français? Bjork is offline
    MemberRank
    Apr 2007 Join Date
    854Posts

    Re: [BCSTORM] FIX Sit Button + Packet ID for "Immediate Help" + Ban From Room Button

    I corrected the "stairs" effect, on first post.

    Sit works but Stand not, you need to move your character to stand up.

    I'm not a coder, i'm just trying to learn and doing little things. So if someone has a better code, feel free to post it.

  17. #17
    :joy: Jonteh is offline
    MemberRank
    Apr 2007 Join Date
    New York, USALocation
    3,372Posts

    Re: [BCSTORM] FIX Sit Button + Packet ID for "Immediate Help"

    Quote Originally Posted by Bjork View Post
    Added the revision: RELEASE63-201211141113-913728051

    And here are the habbo scripts from quackster tool for RELEASE63-201211141113-913728051:

    Incoming: Incoming-habbo-RELEASE63-201211141113-913728051 - Pastebin.com
    Outgoing: Outgoing-habbo-RELEASE63-201211141113-913728051 - Pastebin.com
    Much appreciated Bjork!

    Quote Originally Posted by JohnHearfield View Post
    Lol, i was gonna send em to him. But thanks anyway
    Haha, thanks John. You're both gods ;)

  18. #18
    Developer Quackster is offline
    DeveloperRank
    Dec 2010 Join Date
    AustraliaLocation
    3,484Posts

    Re: [BCSTORM] FIX Sit Button + Packet ID for "Immediate Help"

    Quote Originally Posted by Bjork View Post
    Added the revision: RELEASE63-201211141113-913728051

    And here are the habbo scripts from quackster tool for RELEASE63-201211141113-913728051:

    Incoming: Incoming-habbo-RELEASE63-201211141113-913728051 - Pastebin.com
    Outgoing: Outgoing-habbo-RELEASE63-201211141113-913728051 - Pastebin.com
    Appreciated, thanks for using my tool 8)

  19. #19
    Account Upgraded | Title Enabled! Chapo is offline
    MemberRank
    Jul 2010 Join Date
    United StatesLocation
    944Posts

    Re: [BCSTORM] FIX Sit Button + Packet ID for "Immediate Help"

    Nice fix.

    Quote Originally Posted by Quackster View Post
    Appreciated, thanks for using my tool 8)
    Which tool?



Advertisement