Wall Item Interaction [BcSTORM]

Results 1 to 11 of 11
  1. #1
    Run, but I'll find you. Ddos Attack is offline
    MemberRank
    Jan 2011 Join Date
    AustraliaLocation
    908Posts

    Wall Item Interaction [BcSTORM]

    Hey guys

    Just a simple fix for wall items.
    There was an error in the Packet for handling wall items!

    In incoming.cs
    search for:

    Code:
    Incoming.HandleWallItem
    Replace that with:

    Code:
                Incoming.HandleWallItem = 2622;
    Wall items will now have their interaction states back!
    Like +1


  2. #2
    Apprentice Fiorenzito is offline
    MemberRank
    Jan 2012 Join Date
    14Posts

    Re: Wall Item Interaction [BcSTORM]

    Quote Originally Posted by Ddos Attack View Post
    Hey guys

    Just a simple fix for wall items.
    There was an error in the Packet for handling wall items!

    In incoming.cs
    search for:

    Code:
    Incoming.HandleWallItem
    Replace that with:

    Code:
                Incoming.HandleWallItem = 2622;
    Wall items will now have their interaction states back!
    Like +1
    thank you very much! great and simple fix

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

    Re: Wall Item Interaction [BcSTORM]

    Quote Originally Posted by Fiorenzito View Post
    thank you very much! great and simple fix
    No problem! ;)

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

    Re: Wall Item Interaction [BcSTORM]

    Nice, something like this was released by me, but for other revision like this little fixes :D!

  5. #5
    Member Redsn0w is offline
    MemberRank
    Oct 2012 Join Date
    59Posts

    Re: Wall Item Interaction [BcSTORM]

    Still dont work for me :S?

  6. #6

    Re: Wall Item Interaction [BcSTORM]

    Nice work, simple and easy fix!

  7. #7
    Owner of Habbo.ac iRaged is offline
    MemberRank
    Nov 2011 Join Date
    229Posts

    Re: Wall Item Interaction [BcSTORM]

    Does anyone have a fix for placing items on the wall? They won't place for me at the moment.

  8. #8
    1 + 3 + 3 = 7 EvilCoder is offline
    MemberRank
    Jul 2009 Join Date
    /home/mvdworpLocation
    334Posts

    Re: Wall Item Interaction [BcSTORM]

    Quote Originally Posted by iRaged View Post
    Does anyone have a fix for placing items on the wall? They won't place for me at the moment.
    Search for the following text in Butterfly >> TextHandling
    Code:
            internal static int Parse(string a)
            {
                int num = 0;
                int num2 = 0;
                int length = a.Length;
    
                if (length == 0)
                {
                    return 0;
                }
                do
                {
                    num2++;
                    int num4 = a[num2];
                    if ((num4 < 0x30) || (num4 > 0x3b))
                    {
                        return 0;
                    }
                    num = ((10 * num) + num4) - 0x30;
                }
                while (num2 < length);
                return num;
            }
    Replace that function with:
    Code:
    internal static int Parse(string a)
            {
                int w = 0, i = 0, length = a.Length, k;
    
                if (length == 0)
                    return 0;
    
                do
                {
                    k = a[i++];
                    if (k < 48 || k > 59)
                        return 0;
                    w = 10 * w + k - 48;
                }
                while (i < length);
    
                return w;
            }
    Goodluck <3

  9. #9
    Wall Item Interaction [BcSTORM]Wall Item Interaction [BcSTORM] pel is offline
    MemberRank
    Jan 2012 Join Date
    Munich, GermanyLocation
    384Posts

    Re: Wall Item Interaction [BcSTORM]

    Can anyone give me your Emulator? I haven't got this things in mine.

  10. #10
    Apprentice HabboHelper1 is offline
    MemberRank
    Oct 2012 Join Date
    7Posts

    Re: Wall Item Interaction [BcSTORM]

    i tryed both of these things and none of them worked

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

    Re: Wall Item Interaction [BcSTORM]

    Why did you bump this thread? these fixes are old and have been added to the emulator months ago -.-



Advertisement