FIX fuse RELEASE63-31605-31594-201102162307_676ce1dc5ef8871e16a3af28d7323892)

Page 1 of 2 12 LastLast
Results 1 to 25 of 36
  1. #1
    Sorcerer Supreme capostrike93 is offline
    Member +Rank
    Jan 2011 Join Date
    366Posts

    FIX fuse RELEASE63-31605-31594-201102162307_676ce1dc5ef8871e16a3af28d7323892)

    change all mensajes of header 2


    Catalog.cs: Session.GetMessageH andler().GetResponse().Init(2);
    Catalog.cs: Session.GetMessageH andler().GetResponse().Init(2);
    GameClient.cs: GetMessageHandler().GetResponse().Init(2);
    ... etc..

    add 1 AppendInt32(1); ..

    example:


    in Login(string AuthTicket)

    before:
    Code:
                GetMessageHandler().GetResponse().Init(2);
                GetMessageHandler().GetResponse().AppendInt32(Rights.Count);
    
                foreach (string Right in Rights)
                {
                    GetMessageHandler().GetResponse().AppendStringWithBreak(Right);
                }
    
                GetMessageHandler().SendResponse();
    after:
    Code:
                GetMessageHandler().GetResponse().Init(2);
                GetMessageHandler().GetResponse().AppendInt32(1);
                GetMessageHandler().GetResponse().AppendInt32(Rights.Count);
    
                foreach (string Right in Rights)
                {
                    GetMessageHandler().GetResponse().AppendStringWithBreak(Right);
                }
    
                GetMessageHandler().SendResponse();
    now working the hc .. and others stuff


  2. #2
    Sorcerer Supreme Emerica is offline
    Member +Rank
    Oct 2010 Join Date
    GermanyLocation
    437Posts

    Re: FIX fuse RELEASE63-31605-31594-201102162307_676ce1dc5ef8871e16a3af28d7323892)

    thx for this fix, I'll test it

  3. #3
    The Legend Returns vista4life is offline
    Grand MasterRank
    Mar 2007 Join Date
    The NetherlandsLocation
    843Posts

    Re: FIX fuse RELEASE63-31605-31594-201102162307_676ce1dc5ef8871e16a3af28d7323892)

    Right this is my fix :

    PHP Code:

                      GetMessageHandler
    ().GetResponse().Init(2);

                if (
    GetHabbo().HasFuse("fuse_use_vip_outfits")) // VIP 
                
    {
                    
    GetMessageHandler().GetResponse().AppendInt32(0);
                    
    GetMessageHandler().GetResponse().AppendInt32(2);
                    
    GetMessageHandler().GetResponse().AppendInt32(0);
                }
                else if (
    GetHabbo().HasFuse("fuse_furni_chooser")) // HC
                
    {
                    
    GetMessageHandler().GetResponse().AppendInt32(0);
                    
    GetMessageHandler().GetResponse().AppendInt32(1);
                    
    GetMessageHandler().GetResponse().AppendInt32(0);
                }
                else
                {
                    
    GetMessageHandler().GetResponse().AppendInt32(0);
                    
    GetMessageHandler().GetResponse().AppendInt32(0);
                    
    GetMessageHandler().GetResponse().AppendInt32(0);
                }

                
    GetMessageHandler().SendResponse(); 
    HC works / VIP Works and normal users works.

    Have fun;)

    ---------- Post added at 07:20 PM ---------- Previous post was at 07:19 PM ----------

    to explain it :

    GetMessageHandler().GetResponse().AppendInt32(0);
    GetMessageHandler().GetResponse().AppendInt32(0); // status users (HC = 1 VIP = 2 )
    GetMessageHandler().GetResponse().AppendInt32(0);

    Give me thanks if u like IT hehe:p soz:]
    Last edited by vista4life; 23-02-11 at 07:21 PM.

  4. #4
    Sorcerer Supreme Emerica is offline
    Member +Rank
    Oct 2010 Join Date
    GermanyLocation
    437Posts

    Re: FIX fuse RELEASE63-31605-31594-201102162307_676ce1dc5ef8871e16a3af28d7323892)

    Quote Originally Posted by vista4life View Post
    Right this is my fix :

    PHP Code:

                      GetMessageHandler
    ().GetResponse().Init(2);

                if (
    GetHabbo().HasFuse("fuse_use_vip_outfits")) // VIP 
                
    {
                    
    GetMessageHandler().GetResponse().AppendInt32(0);
                    
    GetMessageHandler().GetResponse().AppendInt32(2);
                    
    GetMessageHandler().GetResponse().AppendInt32(0);
                }
                else if (
    GetHabbo().HasFuse("fuse_furni_chooser")) // HC
                
    {
                    
    GetMessageHandler().GetResponse().AppendInt32(0);
                    
    GetMessageHandler().GetResponse().AppendInt32(1);
                    
    GetMessageHandler().GetResponse().AppendInt32(0);
                }
                else
                {
                    
    GetMessageHandler().GetResponse().AppendInt32(0);
                    
    GetMessageHandler().GetResponse().AppendInt32(0);
                    
    GetMessageHandler().GetResponse().AppendInt32(0);
                }

                
    GetMessageHandler().SendResponse(); 
    HC works / VIP Works and normal users works.

    Have fun;)

    ---------- Post added at 07:20 PM ---------- Previous post was at 07:19 PM ----------

    to explain it :

    GetMessageHandler().GetResponse().AppendInt32(0);
    GetMessageHandler().GetResponse().AppendInt32(0); // status users (HC = 1 VIP = 2 )
    GetMessageHandler().GetResponse().AppendInt32(0);

    Give me thanks if u like IT hehe:p soz:]
    Mhm I think your Fix is better than the other.

  5. #5
    The Legend Returns vista4life is offline
    Grand MasterRank
    Mar 2007 Join Date
    The NetherlandsLocation
    843Posts

    Re: FIX fuse RELEASE63-31605-31594-201102162307_676ce1dc5ef8871e16a3af28d7323892)

    habbo don't send fuse_XXXX anymore :] they use now that status :] it's better to still load the fuse_rights because it's safer :] habbo just don't send it because (i guess) it's faster then i big list at the begin hehe (less sql:] Finaly<3)

  6. #6
    Sorcerer Supreme capostrike93 is offline
    Member +Rank
    Jan 2011 Join Date
    366Posts

    Re: FIX fuse RELEASE63-31605-31594-201102162307_676ce1dc5ef8871e16a3af28d7323892)

    Quote Originally Posted by vista4life View Post
    Right this is my fix :

    PHP Code:

                      GetMessageHandler
    ().GetResponse().Init(2);

                if (
    GetHabbo().HasFuse("fuse_use_vip_outfits")) // VIP 
                
    {
                    
    GetMessageHandler().GetResponse().AppendInt32(0);
                    
    GetMessageHandler().GetResponse().AppendInt32(2);
                    
    GetMessageHandler().GetResponse().AppendInt32(0);
                }
                else if (
    GetHabbo().HasFuse("fuse_furni_chooser")) // HC
                
    {
                    
    GetMessageHandler().GetResponse().AppendInt32(0);
                    
    GetMessageHandler().GetResponse().AppendInt32(1);
                    
    GetMessageHandler().GetResponse().AppendInt32(0);
                }
                else
                {
                    
    GetMessageHandler().GetResponse().AppendInt32(0);
                    
    GetMessageHandler().GetResponse().AppendInt32(0);
                    
    GetMessageHandler().GetResponse().AppendInt32(0);
                }

                
    GetMessageHandler().SendResponse(); 
    HC works / VIP Works and normal users works.

    Have fun;)

    ---------- Post added at 07:20 PM ---------- Previous post was at 07:19 PM ----------

    to explain it :

    GetMessageHandler().GetResponse().AppendInt32(0);
    GetMessageHandler().GetResponse().AppendInt32(0); // status users (HC = 1 VIP = 2 )
    GetMessageHandler().GetResponse().AppendInt32(0);

    Give me thanks if u like IT hehe:p soz:]
    your code is bad...

    use my code..

    the fuse flags still exist


    Quote Originally Posted by vista4life View Post
    habbo don't send fuse_XXXX anymore :] they use now that status :] it's better to still load the fuse_rights because it's safer :] habbo just don't send it because (i guess) it's faster then i big list at the begin hehe (less sql:] Finaly<3)

    :O

    mmm..

    may be true, I just look habbo.es and use the flags fuse, in habbo.com use the flags fuse?

    Give me a minute to enter. com and watch the packets

    EDIT:

    :o

    NEW VERSION

    RELEASE63-31731-31713-201102222307_864d9aa0509a3cb820e3150650731a52

    in habbo.es the fix work.. in habbo.com.. wait me few minutes

    EDIT...

    @BHHH{1}

    yes

    3 params

    I wonder which are each
    Last edited by capostrike93; 23-02-11 at 08:00 PM.

  7. #7
    Sorcerer Supreme DarkBreakX is offline
    Member +Rank
    Apr 2009 Join Date
    GermanyLocation
    364Posts

    Re: FIX fuse RELEASE63-31605-31594-201102162307_676ce1dc5ef8871e16a3af28d7323892)

    Huh, so which Code is actually better??

  8. #8
    Sorcerer Supreme capostrike93 is offline
    Member +Rank
    Jan 2011 Join Date
    366Posts

    Re: FIX fuse RELEASE63-31605-31594-201102162307_676ce1dc5ef8871e16a3af28d7323892)

    Quote Originally Posted by DarkBreakX View Post
    Huh, so which Code is actually better??
    My code is for RELEASE63-31605-31594-201102162307_676ce1dc5ef8871e16a3af28d7323892

    habbo.com now release

    RELEASE63-31731-31713-201102222307_864d9aa0509a3cb820e3150650731a52

    the code published

    Code:
     GetMessageHandler().GetResponse().Init(2);
    
                if (GetHabbo().HasFuse("fuse_use_vip_outfits")) // VIP 
                {
                    GetMessageHandler().GetResponse().AppendInt32(0);
                    GetMessageHandler().GetResponse().AppendInt32(2);
                    GetMessageHandler().GetResponse().AppendInt32(0);
                }
                else if (GetHabbo().HasFuse("fuse_furni_chooser")) // HC
                {
                    GetMessageHandler().GetResponse().AppendInt32(0);
                    GetMessageHandler().GetResponse().AppendInt32(1);
                    GetMessageHandler().GetResponse().AppendInt32(0);
                }
                else
                {
                    GetMessageHandler().GetResponse().AppendInt32(0);
                    GetMessageHandler().GetResponse().AppendInt32(0);
                    GetMessageHandler().GetResponse().AppendInt32(0);
                }
    
                GetMessageHandler().SendResponse();
    works in habbo.com..

    but not is 100%

  9. #9
    Sorcerer Supreme grimske1 is offline
    Member +Rank
    Mar 2009 Join Date
    The NetherlandsLocation
    346Posts

    Re: FIX fuse RELEASE63-31605-31594-201102162307_676ce1dc5ef8871e16a3af28d7323892)

    off topic: i search a coder for my phpretro r63 i can login in client but i must set the auth ticket and ip_last everytime by myself can anyone add me on msn or send me a pm
    msn: stefangrims@hotmail.com

  10. #10
    Elite Member Bifi2000 is offline
    Member +Rank
    Aug 2007 Join Date
    GermanyLocation
    215Posts

    Re: FIX fuse RELEASE63-31605-31594-201102162307_676ce1dc5ef8871e16a3af28d7323892)

    It's not really "clean".

    Better would be:

    Code:
                GetMessageHandler().GetResponse().Init(2);
                GetMessageHandler().GetResponse().AppendInt32(0);
                    
                if (GetHabbo().HasFuse("fuse_use_vip_outfits")) // VIP 
                    GetMessageHandler().GetResponse().AppendInt32(2);
                else if (GetHabbo().HasFuse("fuse_furni_chooser")) // HC
                    GetMessageHandler().GetResponse().AppendInt32(1);
                else
                    GetMessageHandler().GetResponse().AppendInt32(0);
    
                GetMessageHandler().GetResponse().AppendInt32(0);
                GetMessageHandler().SendResponse();
    Reduced from 22 lines to 12 :P

    If you never need to change the other values then you should do it like this.
    Last edited by Bifi2000; 23-02-11 at 08:54 PM.

  11. #11
    The Legend Returns vista4life is offline
    Grand MasterRank
    Mar 2007 Join Date
    The NetherlandsLocation
    843Posts

    Re: FIX fuse RELEASE63-31605-31594-201102162307_676ce1dc5ef8871e16a3af28d7323892)

    Quote Originally Posted by Bifi2000 View Post
    It's not really "clean".

    Better would be:

    Code:
                GetMessageHandler().GetResponse().Init(2);
                GetMessageHandler().GetResponse().AppendInt32(0);
                    
                if (GetHabbo().HasFuse("fuse_use_vip_outfits")) // VIP 
                    GetMessageHandler().GetResponse().AppendInt32(2);
                else if (GetHabbo().HasFuse("fuse_furni_chooser")) // HC
                    GetMessageHandler().GetResponse().AppendInt32(1);
                else
                    GetMessageHandler().GetResponse().AppendInt32(0);
    
                GetMessageHandler().GetResponse().AppendInt32(0);
                GetMessageHandler().SendResponse();
    Reduced from 22 lines to 12 :P

    If you never need to change the other values then you should do it like this.
    like i said i give people temp coding to let them understand how it works so they can read much easyer there alot of beginners in this new world so they will not 100% understand that code :P
    and yes that code is better i use that too :p

  12. #12
    Grand Master Miggs is offline
    Grand MasterRank
    Oct 2010 Join Date
    711Posts

    Re: FIX fuse RELEASE63-31605-31594-201102162307_676ce1dc5ef8871e16a3af28d7323892)

    3 codes -.-'Witch one is better??

  13. #13
    Sorcerer Supreme capostrike93 is offline
    Member +Rank
    Jan 2011 Join Date
    366Posts

    Re: FIX fuse RELEASE63-31605-31594-201102162307_676ce1dc5ef8871e16a3af28d7323892)

    Quote Originally Posted by Miggs View Post
    3 codes -.-'Witch one is better??
    read messages -.-"

  14. #14
    Sorcerer Supreme Emerica is offline
    Member +Rank
    Oct 2010 Join Date
    GermanyLocation
    437Posts

    Re: FIX fuse RELEASE63-31605-31594-201102162307_676ce1dc5ef8871e16a3af28d7323892)

    Quote Originally Posted by Bifi2000 View Post
    It's not really "clean".

    Better would be:

    Code:
                GetMessageHandler().GetResponse().Init(2);
                GetMessageHandler().GetResponse().AppendInt32(0);
                    
                if (GetHabbo().HasFuse("fuse_use_vip_outfits")) // VIP 
                    GetMessageHandler().GetResponse().AppendInt32(2);
                else if (GetHabbo().HasFuse("fuse_furni_chooser")) // HC
                    GetMessageHandler().GetResponse().AppendInt32(1);
                else
                    GetMessageHandler().GetResponse().AppendInt32(0);
    
                GetMessageHandler().GetResponse().AppendInt32(0);
                GetMessageHandler().SendResponse();
    Reduced from 22 lines to 12 :P

    If you never need to change the other values then you should do it like this.
    Nice code

  15. #15
    Sorcerer Supreme pepijndut is offline
    Member +Rank
    Oct 2009 Join Date
    328Posts

    Re: FIX fuse RELEASE63-31605-31594-201102162307_676ce1dc5ef8871e16a3af28d7323892)

    @Bifi2000 Nice code!

  16. #16
    Banned c0mma is offline
    BannedRank
    Jan 2011 Join Date
    ^RaGEZONE^Location
    696Posts

    Re: FIX fuse RELEASE63-31605-31594-201102162307_676ce1dc5ef8871e16a3af28d7323892)

    What's new in; RELEASE63-31731-31713-201102222307_864d9aa0509a3cb820e3150650731a52 ??

  17. #17
    Elite Member iDream is offline
    Member +Rank
    May 2010 Join Date
    NorwayLocation
    176Posts

    Re: FIX fuse RELEASE63-31605-31594-201102162307_676ce1dc5ef8871e16a3af28d7323892)

    Nice fix, but I prefer vista's

  18. #18
    Member Habbi is offline
    MemberRank
    Feb 2011 Join Date
    88Posts

    Re: FIX fuse RELEASE63-31605-31594-201102162307_676ce1dc5ef8871e16a3af28d7323892)

    Nice!

  19. #19
    Sorcerer Supreme GuikBretas is offline
    Member +Rank
    Apr 2009 Join Date
    NorwayLocation
    332Posts

    Re: FIX fuse RELEASE63-31605-31594-201102162307_676ce1dc5ef8871e16a3af28d7323892)

    Quote Originally Posted by Bifi2000 View Post
    It's not really "clean".

    Better would be:

    Code:
                GetMessageHandler().GetResponse().Init(2);
                GetMessageHandler().GetResponse().AppendInt32(0);
                    
                if (GetHabbo().HasFuse("fuse_use_vip_outfits")) // VIP 
                    GetMessageHandler().GetResponse().AppendInt32(2);
                else if (GetHabbo().HasFuse("fuse_furni_chooser")) // HC
                    GetMessageHandler().GetResponse().AppendInt32(1);
                else
                    GetMessageHandler().GetResponse().AppendInt32(0);
    
                GetMessageHandler().GetResponse().AppendInt32(0);
                GetMessageHandler().SendResponse();
    Reduced from 22 lines to 12 :P

    If you never need to change the other values then you should do it like this.

    Don't works here :( how to resolve?
    (i need to use new swfs)?

  20. #20
    Sorcerer Supreme capostrike93 is offline
    Member +Rank
    Jan 2011 Join Date
    366Posts

    Re: FIX fuse RELEASE63-31605-31594-201102162307_676ce1dc5ef8871e16a3af28d7323892)

    Quote Originally Posted by GuikBretas View Post
    Don't works here :( how to resolve?
    (i need to use new swfs)?
    Give me a moment to see the new packets

  21. #21
    Sorcerer Supreme GuikBretas is offline
    Member +Rank
    Apr 2009 Join Date
    NorwayLocation
    332Posts

    Re: FIX fuse RELEASE63-31605-31594-201102162307_676ce1dc5ef8871e16a3af28d7323892)

    Resolved, i have downloaded AutoUpdateVersion and updated my SWFs, :D

  22. #22
    [̲̅$̲̅(̲̅1̲̅)̲̅$ ̲̅] leenster is offline
    Grand MasterRank
    May 2008 Join Date
    KanaadaLocation
    992Posts

    Re: FIX fuse RELEASE63-31605-31594-201102162307_676ce1dc5ef8871e16a3af28d7323892)

    so any good reason to update swf's or should i just wait?

  23. #23
    Elite Member Marlon Colhado is offline
    Member +Rank
    Jan 2009 Join Date
    BrazilLocation
    178Posts

    Re: FIX fuse RELEASE63-31605-31594-201102162307_676ce1dc5ef8871e16a3af28d7323892)

    Quote Originally Posted by iPixelHotel View Post
    What's new in; RELEASE63-31731-31713-201102222307_864d9aa0509a3cb820e3150650731a52 ??
    What's New SWF[²] ?

  24. #24
    Sorcerer Supreme Richardjuhh is offline
    Member +Rank
    Dec 2010 Join Date
    NetherlandsLocation
    351Posts

    Re: FIX fuse RELEASE63-31605-31594-201102162307_676ce1dc5ef8871e16a3af28d7323892)

    Quote Originally Posted by iPixelHotel View Post
    What's new in; RELEASE63-31731-31713-201102222307_864d9aa0509a3cb820e3150650731a52 ??

    New fuse packets...

    with this code..

    if (GetHabbo().HasFuse("fuse_use_vip_outfits")) // VIP
    GetMessageHandler().GetResponse().AppendInt32(2);
    else if (GetHabbo().HasFuse("fuse_furni_chooser")) // HC
    GetMessageHandler().GetResponse().AppendInt32(1);
    else
    GetMessageHandler().GetResponse().AppendInt32(0);

    will you have working vip clothes and dances..

    GetMessageHandler().GetResponse().AppendInt32(1); HC

    GetMessageHandler().GetResponse().AppendInt32(2);VIP

    GetMessageHandler().GetResponse().AppendInt32(0); Normal user


    and if you have fuse_furni_chooser (a hc addon)
    you will have
    GetMessageHandler().GetResponse().AppendInt32(1);

    but i didn't know how you're making an emulator and dont know wat this code does or how to create a masscredits command.


    Your emu is een fcking renaming, and you're realy a newb

    ---------- Post added at 08:14 PM ---------- Previous post was at 08:10 PM ----------

    Oh, Nice to see your packets it's really usefull

    Keep it up!

    Are you also on Kekomundo?
    It's a cool forum but the emu's are mostly closed source and thas its really shitty.(not because i'm a renamer but because i will have some snippets...)
    Last edited by Richardjuhh; 11-03-11 at 08:12 PM.

  25. #25
    Elite Member Marlon Colhado is offline
    Member +Rank
    Jan 2009 Join Date
    BrazilLocation
    178Posts

    Re: FIX fuse RELEASE63-31605-31594-201102162307_676ce1dc5ef8871e16a3af28d7323892)

    Quote Originally Posted by Richardjuhh View Post
    New fuse packets...

    with this code..

    if (GetHabbo().HasFuse("fuse_use_vip_outfits")) // VIP
    GetMessageHandler().GetResponse().AppendInt32(2);
    else if (GetHabbo().HasFuse("fuse_furni_chooser")) // HC
    GetMessageHandler().GetResponse().AppendInt32(1);
    else
    GetMessageHandler().GetResponse().AppendInt32(0);

    will you have working vip clothes and dances..

    GetMessageHandler().GetResponse().AppendInt32(1); HC

    GetMessageHandler().GetResponse().AppendInt32(2);VIP

    GetMessageHandler().GetResponse().AppendInt32(0); Normal user


    and if you have fuse_furni_chooser (a hc addon)
    you will have
    GetMessageHandler().GetResponse().AppendInt32(1);

    but i didn't know how you're making an emulator and dont know wat this code does or how to create a masscredits command.


    Your emu is een fcking renaming, and you're realy a newb

    ---------- Post added at 08:14 PM ---------- Previous post was at 08:10 PM ----------

    Oh, Nice to see your packets it's really usefull

    Keep it up!

    Are you also on Kekomundo?
    It's a cool forum but the emu's are mostly closed source and thas its really shitty.(not because i'm a renamer but because i will have some snippets...)
    Teach me how to get packets from habbo?



Page 1 of 2 12 LastLast

Advertisement