Another Wardrobe Packet Change?

Results 1 to 10 of 10
  1. #1
    Proficient Member HabsHotel is offline
    MemberRank
    Jan 2011 Join Date
    CanadaLocation
    167Posts

    config Another Wardrobe Packet Change?

    In RELEASE63-32030-31958-201103091351 the VIP clothing nor that My wardrobe thing to the right is not longer working..

    May have to downgrade now untill I can be fixed, this sucks with these packet changes..


  2. #2
    Banned PEjump2 is offline
    BannedRank
    Jan 2010 Join Date
    The NetherlandsLocation
    2,838Posts

    Re: Another Wardrobe Packet Change?

    You added vista4life's fuse fixes?

  3. #3
    Proficient Member HabsHotel is offline
    MemberRank
    Jan 2011 Join Date
    CanadaLocation
    167Posts

    Re: Another Wardrobe Packet Change?

    Quote Originally Posted by PEjump2 View Post
    You added vista4life's fuse fixes?
    Yes I've add it awhile back,
    http://forum.ragezone.com/f353/fix-f...1594-a-730585/

  4. #4
    Account Upgraded | Title Enabled! FlyCoder is offline
    MemberRank
    Jan 2011 Join Date
    United KingdomLocation
    469Posts

    Re: Another Wardrobe Packet Change?

    Quote Originally Posted by PEjump2 View Post
    You added vista4life's fuse fixes?
    They actually fix that so the answer to your question is USE VISTA's

    ---------- Post added at 11:19 PM ---------- Previous post was at 11:19 PM ----------

    Quote Originally Posted by HabsHotel View Post
    Change Emulator???


    EDIT:

    This is the packet fix by vista4life;

    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();
    Last edited by FlyCoder; 13-03-11 at 12:24 AM.

  5. #5
    Proficient Member HabsHotel is offline
    MemberRank
    Jan 2011 Join Date
    CanadaLocation
    167Posts

    Re: Another Wardrobe Packet Change?

    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();
    I'll give this code a shot.

  6. #6
    Banned PEjump2 is offline
    BannedRank
    Jan 2010 Join Date
    The NetherlandsLocation
    2,838Posts

    Re: Another Wardrobe Packet Change?

    Hmm, 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();

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

    Re: Another Wardrobe Packet Change?

    Quote Originally Posted by PEjump2 View Post
    Hmm, 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();

    Soo this is a fix, if so, where do I add

  8. #8
    Banned PEjump2 is offline
    BannedRank
    Jan 2010 Join Date
    The NetherlandsLocation
    2,838Posts

    Re: Another Wardrobe Packet Change?

    /facepalm
    Jeeez, read this topic.

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

    Re: Another Wardrobe Packet Change?

    Haha, Thx PE ;D

  10. #10
    i didnt do this. Donkjam is offline
    MemberRank
    Jul 2007 Join Date
    4,494Posts

    Re: Another Wardrobe Packet Change?

    so ive been gone a few days and this is what happens :( spam..

    Habbo Help - Habbo Development - RaGEZONE forums is there for a reason :)



Advertisement