[PLUSEMU] RELEASE2014-06 - THREAD [#m]

Results 1 to 12 of 12
  1. #1
    Valued Member VabboWorld is offline
    MemberRank
    Oct 2013 Join Date
    FranceLocation
    124Posts

    shout [PLUSEMU] RELEASE2014-06 - THREAD [#m]

    Hello RaGEZONE,

    I noticed that it's been a few days that no shared fixs, I decided to give you a helping hand while doing a story on the latest releases of Habbo. I will not deny that we take the packets found KM.
    #TRANSFORM COMMAND : FOR PLUSEMU

    (Based on UberEMU)

    SOURCE ORIGINAL:
    Code:
    #region :pet
                        case "pet": // pet transform command
                            {
                                if (rankManager.containsRight(this, "fuse_administrator_access", userID) == false)
                                    return false;
                                else
                                {
                                    if (Room != null) // In room?
                                    {
                                        try
                                        {
                                            if (args[1] == "cat")
                                            {
                                                _petType = "1";
                                            }
                                            else if (args[1] == "dog")
                                            {
                                                _petType = "0";
                                            }
                                            else if (args[1] == "croc")
                                            {
                                                _petType = "2";
                                            }
                                            else
                                            {
                                                _petType = "0";
                                            }
                                        }
                                        catch { _petType = "1"; }
    
                                        try
                                        {
                                            if (args[2] == "red")
                                            {
                                                _petColour = "FF0000";
                                            }
                                            else if (args[2] == "green")
                                            {
                                                _petColour = "00FF00";
                                            }
                                            else if (args[2] == "blue")
                                            {
                                                _petColour = "0025FF";
                                            }
                                            else if (args[2] == "black")
                                            {
                                                _petColour = "000000";
                                            }
                                            else if (args[2] == "white")
                                            {
                                                _petColour = "FFFFFF";
                                            }
                                            else if (args[2] == "random" || args[2] == "?")
                                            {
                                                Random rndInt = new Random();
    
                                                _petColour = rndInt.Next(5, 9).ToString() + rndInt.Next(0, 9).ToString() + rndInt.Next(5, 9).ToString() + rndInt.Next(0, 9) + rndInt.Next(5, 9).ToString() + rndInt.Next(0, 9).ToString();
                                            }
                                        }
                                        catch
                                        {
                                            Random rndInt = new Random();
    
                                            _petColour = rndInt.Next(5, 9).ToString() + rndInt.Next(0, 9).ToString() + rndInt.Next(5, 9).ToString() + rndInt.Next(0, 9) + rndInt.Next(5, 9).ToString() + rndInt.Next(0, 9).ToString();
                                        }
    
                                        _isPet = !_isPet;
                                        Room.sendData(@"@\" + roomUser.detailsString);
                                    }
                                }
    
                                break;
                            }
                        #endregion
    Yours to make it functional for PlusEMU, if no one comes I'll do it myself, for now I'm focusing on the development of the new RELEASE! :)

    ClientPacketHeader:

    Code:
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    
    namespace Silverwave.Communication.Packets.Incoming
    {
        static class ClientPacketHeader
        {
    //Actualizado por GRIMEY
            // HANDSHAKE
            public const int GetClientVersionMessageEvent = 4000;
            public const int InitCryptoMessageEvent = 3155; //Updated
            public const int GenerateSecretKeyMessageEvent = 893; //Updated
            public const int UniqueIDMessageEvent = 2576; //Updated
            public const int SSOTicketMessageEvent = 1539; //Updated
            public const int InfoRetrieveMessageEvent = 3971; //Updated
    
            // CATALOG
            public const int GetCatalogIndexMessageEvent = 3318; //Updated
            public const int GetCatalogPageMessageEvent = 1642; //Updated
            public const int CatalogProductOfferMessageEvent = 2846; //Updated
            public const int GetCatalogOfferEvent = 3149; //Updated
            public const int BuildersStatusLimitEvent = 3269; //Updated
            public const int PurchaseFromCatalogMessageEvent = 2690; //Updated
            public const int PurchaseFromCatalogAsGiftMessageEvent = 2729;//Updated
            public const int ReloadRecyclerMessageEvent = 3046;// No se ha encontrado en el antiguo Habbo.SWF
            public const int PurchaseRoomPromotionMessageEvent = 2416; //Updated
            public const int GetMarketplaceConfigurationMessageEvent = 3787;//Updated
            public const int GetGiftWrappingConfigurationMessageEvent = 256;// No se ha encontrado en el antiguo Habbo.SWF
            public const int GetRecyclerRewardsMessageEvent = 3062; //Updated
            public const int CheckPetNameMessageEvent = 2643; //Updated
            public const int RedeemVoucherMessageEvent = 3257; // No se ha encontrado en el antiguo Habbo.SWF
            public const int GetSellablePetBreedsMessageEvent = 2304; //Updated 
    
            // NAVIGATOR
            public const int AddFavouriteRoomMessageEvent = 1202; //Updated
            public const int GetOfficialRoomsMessageEvent = 3013; //Updated
            public const int PopularRoomsSearchEvent = 3945; //Updated
            public const int RemoveFavouriteRoomMessageEvent = 1038; //Updated
            public const int GetUserFlatCatsEvent = 2333; //Updated
    
            // QUESTS
            public const int GetQuestListMessageEvent = 1149; //Updated
    
            // AVATAR
            public const int ActionMessageEvent = 1431; //Updated
    
            // CONNECTION
            public const int OpenFlatConnectionMessageEvent = 3242; //Updated
    
            // CHAT
            public const int ChatMessageEvent = 1659; //Updated
            public const int ShoutMessageEvent = 3828; //Updated
            public const int WhisperMessageEvent = 3316; //Updated
            public const int StartTypingMessageEvent = 3083; //Updated (Posible cambio de estructura)
            public const int CancelTypingMessageEvent = 2027; //Updated (Posible cambio de estructura)
        }
    }


    ServerPacketHeader:

    Code:
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    
    namespace Silverwave.Communication.Packets.Outgoing
    {
        static class ServerPacketHeader
        {
            // SPH - RELEASE63-2014 - NEW BUILD
            // UPDATED BY Grimey
    
            // HANDSHAKE
            public const int InitCryptoMessageComposer = 1176;//Updated
            public const int SecretKeyMessageComposer = 3429;//Updated
            public const int UserObjectMessageComposer = 2680;//Updated
            public const int UserPerksMessageComposer = 44;//Updated
            public const int AuthenticationOKMessageComposer = 2979;//Updated
            public const int UserRightsMessageComposer = 2554;//Updated
    
            // CATALOG
            public const int CatalogIndexMessageComposer = 3310; //Updated
            public const int CatalogPageMessageComposer = 3900; //Updated
            public const int CatalogOfferMessageComposer = 3434; //Updated
            public const int PurchaseOKMessageComposer = 1500; //Updated
            public const int ReloadEcotronMessageComposer = 2897; //Updated
            public const int MarketplaceConfigurationMessageComposer = 2655; //Updated
            public const int GiftWrappingConfigurationMessageComposer = 244; //Updated
            public const int RecyclerRewardsMessageComposer = 2832; //Updated
            public const int CatalogOffersConfigurationComposer = 315; //Updated
            public const int BuildersStatusEventComposer = 1329; //Updated
            public const int CheckPetNameMessageComposer = 2655; //Updated
            public const int SellablePetBreedsMessageComposer = 3828;//Updated
    
            // QUESTS
            public const int QuestListMessageComposer = 3966; //Updated
    
            // AVATAR (SALA)
            public const int ActionMessageComposer = 3737;//Grimey
            public const int SleepMessageComposer = 1130; //Grimey
    
            // CHAT (SALA)
            public const int FloodControlComposer = 795;//Grimey
            public const int UserTypingMessageComposer = 1362;//Grimey
            public const int ChatMessageComposer = 3424;  //Grimey
            public const int WhisperMessageComposer = 2110; //Grimey
            public const int ShoutMessageComposer = 2642; //Grimey
    
            // SESIÓN (SALA)
            public const int RoomForwardMessageComposer = 3613; //Grimey
    
            // Navigator
            public const int UpdateFavouriteRoomComposer = 3203;//Grimey
        }
    }
    Events:

    Code:
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    
    namespace Silverwave.Messages.Headers
    {
        internal static class Incoming
        {
            //Updated by Grimey
    
    
            internal static int BotSpeechList = 1577;//Updated
            internal static int FloorplanSave = 601;//Updated
            internal static int ClientVars = 753;//Updated
            internal static int OnEventHappend = 3234;//Updated
            internal static int SerializeClub = 2818;//Updated
            internal static int GetBalance = 3577;//Updated
            internal static int HotelViewBadge = 105;//Updated
            internal static int AddStaffPick = 560;//Updated
            internal static int LoadCategorys = 984;//Updated
            internal static int Pong = 2502;//Updated
            internal static int GetPlaylistYoutube = 562;//Updated
            internal static int LatencyTest = 1613;//Updated
            internal static int DisconnectEvent = 2499; //Updated
            internal static int ReceptionViewEvent = 2477; //Updated
            internal static int RefreshPromoEvent = 260; //Updated
            internal static int RefreshRewardEvent = 553; //Updated
            internal static int RetrieveCitizenshipStatus = 3007; //Updated
            internal static int OpenHelpTool = 3413;//Updated
            internal static int GetWardrobe = 1146;//Updated
            internal static int SaveWardrobe = 1522;//Updated
            internal static int OpenAchievements = 1591;//Updated
            internal static int CheckPetName = 2832;//Updated
            internal static int PurchaseGift = 2729;//Update
            internal static int OpenGift = 1891;//Updated
            internal static int GetRoomData1 = 263; //Updated
            internal static int GetRoomEditData = 2724; //Updated
            internal static int WidgetEvent = 1689; //Updated
            internal static int GetBotInv = 1015;//Updated
            internal static int SaveRoomData = 134;//Updated
            internal static int InviteFriendsToMyRoom = 3078;//Updated
            internal static int HandleWallItem = 3532;//Updated
            internal static int SaveCondition = 338;//Updated
            internal static int ReleaseIssue = 2980;//CS7
            internal static int AcceptTrade = 3284;//Updated
            internal static int AnswerDoorBell = 1882;//Updated
            internal static int SaveWiredMatchthing = 1443;//Updated
            internal static int EditWallItem = 1925;//Updated
            internal static int PickupPet = 3812;//Updated
            internal static int CheckName = 3056;//Updated
            internal static int SaveRoomBg = 924;//Updated
            internal static int SendOffer = 3779;//Updated
            internal static int IssueChatlog = 740;//Updated
            internal static int LoadHeightMap = 3160;//Updated
            internal static int AnswerQuestion = 874;//Updated
            internal static int SearchRoomByName = 1298;//Updated
            internal static int MuteUser = 3393;//Updated
            internal static int StopTyping = 2027;//Updated
            internal static int AddSaddleToPet = 3761;//Updated
            internal static int EnableEffect = 2347;//Updated
            internal static int MoveWall = 3033;//Updated
            internal static int CreateTicket = 2453;//Updated
            internal static int RedeemVoucher = 780;//Updated
            internal static int SaveMannequin2 = 2812;//Updated
            internal static int RecycleAgain = 1374;//Updated
            internal static int HandleItem = 376;//Updated
            internal static int CloseIssue = 2573; //CS7
            internal static int HighRatedRooms = 3976; //Updated
            internal static int GetTrainerList = 2099; //Updated
            internal static int CancelMysteryOpening = 3136; //Updated
            internal static int DeclineMembership = 663; //Updated
            internal static int UpdateGroupColours = 773; //Updated
            internal static int CancelTrade = 3387; //CS7
            internal static int StartQuest = 1604; //Updated
            internal static int RemoveMember = 943; //Updated
            internal static int PlacePet = 3695; //Updated
            internal static int UnignoreUser = 3632; //Updated
            internal static int SendUserMessage = 3191; //Updated
            internal static int DeclineRequest = 794; //Updated
            internal static int SitFromMenu = 484; //CS7
            internal static int LoadMyRooms = 2636;//Updated
            internal static int OneWayGate = 857;//Updated
            internal static int ClickedPet = 2894; //Updated
            internal static int RespetPet = 1001; //Updated
            internal static int MoveOrRotate = 679; //Updated
            internal static int GetGroupBuy = 3540; //Updated
            internal static int JoinGroup = 2388; //Updated
            internal static int UpdateItemTileHeight = 791; //Updated
            internal static int ApplyMoodlightChanges = 3567; //Updated
            internal static int ApplySpace = 1363; //Updated
            internal static int RedeemExchangeFurni = 2346; //Updated
            internal static int FindNewFriends = 1717; //Updated
            internal static int FriendRequest = 894; //Updated
            internal static int StartMoodlight = 2922; //Updated
            internal static int StartTrade = 1137; //Updated
            internal static int ChangeMotto = 3164; //Updated
            internal static int IgnoreUser = 2503; //Updated
            internal static int PrepareCampaing = 3279; //Updated
            internal static int SaveBranding = 1663; //Updated
            internal static int SendInstantMessenger = 17; //Updated
            internal static int GetGroupBuyEdit = 3319; //Updated
            internal static int GetUserTags = 3102; //CS7
            internal static int CancelTrade2 = 456; //Updated
            internal static int CreateRoom = 23; //Updated
            internal static int SubmitQuestion = 884; //Updated
            internal static int PlaceBot = 3063; //Updated
            internal static int ModActionMuteUser = 39; //Updated
            internal static int UpdateFriendsState = 2378; //Updated
            internal static int PickupItem = 226; //Updated
            internal static int GuideChat = 1705; //Updated
            internal static int GetCurrentQuest = 3768; //Updated
            internal static int SaveWiredTrigger = 3097; //Updated
            internal static int AddFloorItem = 10000; //Updated
            internal static int LoadFirstRoomData = 3242;//Updated
            internal static int RoomsOfMyFriends = 131; //Updated
            internal static int PetInventory = 2166; //Updated
            internal static int GetTalentsTrack = 2312;//Updated
            internal static int GetUserBadges = 3968; //CS7
            internal static int AcceptRequest = 897; //Updated
            internal static int UserChatlog = 1116; //Updated
            internal static int UnbanUser = 2540; //Updated
            internal static int ToolForThisRoom = 3415; //Updated
            internal static int StopQuest = 1987; //Updated
            internal static int ChangeLook = 1175; //Updated
            internal static int UpdateEventInfo = 244; //Updated
            internal static int MakeFav = 0x0E00; //Updated
            internal static int GetBannedUsers = 2026; //Updated
            internal static int StartEffect =1777; //Updated
            internal static int LookTo = 2831; //Updated
            internal static int DeleteFriend = 2786; //CS7
            internal static int RemoveSaddle = 1095; //Updated
            internal static int KickUserOfRoom = 74; //Updated
            internal static int MyFavs = 20000; //Updated
            internal static int SendRespects = 2041; //CS7
            internal static int ManageGroup = 1708; //Updated
            internal static int RollDice = 2324; //Updated
            internal static int CancelOffer = 3742; //Updated
            internal static int BotActions = 2601; //Updated
            internal static int LoadAllRooms = 3945; //Updated
            internal static int PickUpBot = 0x0606; //Updated
            internal static int PickIssue = 3975; //CS7
            internal static int RecycleItems = 182; //Updated
            internal static int Talk = 1659; //Updated
            internal static int RemoveAllRights = 3629; //Updated
            internal static int SetHome = 2824; //Updated
            internal static int MountOnPet = 302; //Updated
            internal static int PurchaseEvent = 2416; //Updated
            internal static int GiveRights = 359; //Updated
            internal static int BadgesInventary = 3072; //No encontrado
            internal static int AllowAllRide = 3554; //Updated
            internal static int PetInfo = 3; //No encontrado
            internal static int LoadPopularTags = 1649;//Updated
            internal static int AddFavourite = 1202; //Updated
            internal static int PurchaseGroup = 989; //Updated
            internal static int ModActionKickUser = 184; //Updated
            internal static int DeletePostIt = 3253; //Updated
            internal static int GetRoomData = 3235; //Updated
            internal static int OwnerJoinedRoomComposer = 3308; //Updated
            internal static int RemoveGroupAdmin = 3431; //Updated
            internal static int ApplyBadge = 3315; //Updated
            internal static int ModActionBanUser = 3503; //Updated
            internal static int SaveWiredEffect = 1162; //Updated
            internal static int ApplyDance = 1339; //Updated
            internal static int GetRoomVisits = 1763; //Updated
            internal static int Whisp = 3316; //Updated
            internal static int RemoveRightsFrom = 3411; //Updated
            internal static int UpdateGroupBadge = 8; //Updated
            internal static int OpenAskQuestion = 2620; //Updated
            internal static int SaveMannequin = 3889; //Updated
            internal static int GiveRoomScore = 242; //CS7
            internal static int SendRoomAlert = 1017; //Updated
            internal static int UnacceptTrade = 3751; //Updated
            internal static int GetGroupMembers = 2909; //Updated
            internal static int UpdateGroupSettings = 1929; //Update
            internal static int OpenPostIt = 929; //Updated
            internal static int AcceptMembership = 3013; //Updated
            internal static int GetEventRooms = 682; //Updated
            internal static int RoomBanUser = 3292; //Update
            internal static int Move = 216; //Updated
            internal static int RemoveFav = 3763; //Updated
            internal static int OpenQuestList = 1149; //Updated
            internal static int UpdateGroupName = 3232; //Misma id que OpenAskQuestion = error
            internal static int RemoveHanditem = 1690; //Updated
            internal static int EjectFurni = 307; //Updated
            internal static int FollowFriend = 1673; //Updated
            internal static int LoadFeaturedRooms = 3735; //No encontrado
            internal static int GetGameAchievements = 567; //Updated
            internal static int LoadProfile = 2435; //Update
            internal static int AddPostIt = 3369; //Updated
            internal static int OpenRoomChatlog = 3515; //Updated
            internal static int OpenGuideTool = 1693; //Updated
            internal static int RecyclerRewards = 878; //Updated
            internal static int SearchFriend = 2736; //Updated
            internal static int GetPlaylists = 1272; //Updated
            internal static int GetRoomCompetitionWinners = 3095; //Updated
            internal static int ApplySign = 873; //No encontrado
            internal static int PerformRoomAction = 1356; //Updated
            internal static int OpenInventory = 1692; //Updated
            internal static int AddPlayListItem = 2944; //Updated
            internal static int ChangeName = 889; //Updated
            internal static int GetGroupFurniPage = 3240; //Updated
            internal static int LoadSettings = 2095; //Updated
            internal static int GiveObject = 53; //Updated
            internal static int TurnDiceOff = 523; //Updated
            internal static int GetFriends = 2566; //Updated
            internal static int Shout = 3828; //Updated
            internal static int RemoveRoom = 1556; //Updated
            internal static int StartTyping = 3083; //Updated
            internal static int CanCreateRoom =611; //Updated
            internal static int GetGroupInfo = 1527; //Updated
            internal static int RemovePlayListItem = 3080; //Updated              
            internal static int SaveSettings = 2962; //Updated
            internal static int RecentRooms = 2897; //Updated
            internal static int HandleRequest = 3738; //Updated
            internal static int ToolForUser = 1528; //Updated
            internal static int TurnOnMoodlight = 2994; //Updated
            internal static int StartSeasonalQuest = 1784; //Updated
            internal static int GetDiscs = 3583; //Updated
            internal static int ConfirmTrade = 2395; //CS7
            internal static int GetMusicData = 1275; //Updated
            internal static int SavePostIt = 3655; //Updated
            internal static int ReqLoadByDoorBell = 2676; //Updated
            internal static int OpenFlat = 120; //Updated
            internal static int GetClubGiftsPage = 2320; //Updated
            internal static int SendCaution = 2706; //Updated
            internal static int MakeGroupAdmin = 2822; //Updated
            internal static int PageWidgetEvent = 2211; //Updated
            internal static int GetRelationships = 429; //Updated
            internal static int SetRelationship = 207; //Updated
            internal static int AutoRoom = 100000; //Update
            internal static int MuteAll = 2771; //Updated
            internal static int UsersWithRights = 3410; //Updated
            internal static int CompleteSafteyQuiz = 3461; //Updated
            internal static int GetGameLeaderboards = 2521; //Updated
            internal static int GetRoomAdsPage = 3608; //Updated
            internal static int Stacktitle = 30000;//Update
            internal static int PlayYoutubeVideo = 1156; //Updated
            internal static int PlayNextVideo = 2968; //Updated
            internal static int TopGroups = 1866; // Updated
            internal static int GetEvents = 378; //Updated
    
    
            //Desactivados y Desactualizados
    
            internal static int OnlineConfirmationEvent = 99946; //CS7
            internal static int GetFastFoodAch = 99936; //CS7
            internal static int JoinFastFoodQueue = 99937; //CS7
            internal static int InitGameCenter = 99939; //CS7
            internal static int Game2GetAccountGameStatusMessageEvent = 99938; //CS7
            internal static int SnowJoinGame = 99991; //CS7
            internal static int SnowGetJoinWindow = 99992; //CS7
            internal static int SnowWalk = 99993; //CS7
            internal static int SnowExitGame = 99994; //CS7
            internal static int SnowLeaveGame = 99995; //CS7
            internal static int SnowChat = 99996; //CS7
        }
    }
    Composers:

    Code:
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    
    namespace Silverwave.Messages.Headers
    {
        internal static class Outgoing
        {
        //Updated by Grimey
            internal static int Talk = 3424; //Updated
            internal static int Shout = 2642; //Updated
            internal static int SerializeSpeechList = 1780;//Updated  
            internal static int SmallPromoComposer = 1417;//Updated
            internal static int RewardEvent = 1808; //Updated
            internal static int MuteAllOut = 463;//Updated
            internal static int SendNewTicket = 689;//Updated
            internal static int LatencyTestResponse = 1765; //Updated
            internal static int InGameRemoval = 425; //Updated
            internal static int RefreshFavState = 244;//Updated
            internal static int SaveWired = 776;//Updated
            internal static int ValidDoorBell = 353;//Updated
            internal static int SerializeRoomEvent = 641;//Updated
            internal static int UserLeftRoom = 200;//Updated
            internal static int ComposeSongs = 1440;//Updated
            internal static int RoomTool = 3673;//Updated
            internal static int SerializeFavChange = 2014;//Updated
            internal static int UpdateFloorItemExtraData = 67;//Updated
            internal static int DoorBellNoPerson = 2373;//Updated
            internal static int RoomRightsLevel = 1275;//Updated
            internal static int RateRoom = 36;//Updated
            internal static int VoucherOkComposer = 884; //Updated
            internal static int VoucherFailureComposer = 3828;//Updated
            internal static int RoomErrorToEnter = 2560;//No encontrado en esta Release
            internal static int UnlockAchievement = 3658;//Updated
            internal static int SerializeMiniMailCount = 3081;//Updated
            internal static int PetInventory = 435;//No encontrado
            internal static int RespectPet = 9;//Updated
            internal static int ValidRoom = 1380;//Updated
            internal static int GiveRespect = 2027;//Updated
            internal static int PetData = 997;//No encontrado
            internal static int WiredEffect = 2418;//Updated
            internal static int PetInformation = 842;//Updated
            internal static int UpdateItemOnRoom = 1299;//Updated
            internal static int Doorbell = 3203;//Updated
            internal static int GetTalentsTrack = 1278;//Updated
            internal static int SendNotif = 2338; //Updated
            internal static int NewNotif = 29;//Updated
            internal static int CanCreateRoom = 482;//Updated
            internal static int StopEffect = 2167;//Updated
            internal static int QuestCompletedCompser = 3751;//Updated
            internal static int QuestListComposer = 2735;//Updated
            internal static int Ping = 704;//Updated
            internal static int RemovePowers = 2102;//Updated
            internal static int TradeUpdate = 948;//Updated
            internal static int SerializeMessengerAction = 2197;//Updated
            internal static int ComposeMysteryColours = 3851;//Updated
            internal static int SetRoomUser = 3216;//Updated
            internal static int OpenPostIt = 3631;//Updated
            internal static int ComposeNoFriendReqMsg = 657;//Updated
            internal static int SendPurchaseAlert = 705;//Updated
            internal static int OpenGift = 738;//Desactivado (Updated)
            internal static int ClosingAlert = 3711;//Updated
            internal static int CheckPetName = 893;//Updated
            internal static int OutOfRoom = 3094;//Updated
            internal static int InitialRoomInformation = 1225;//Updated
            internal static int GiftError = 722;//Updated
            internal static int UpdateUserInformation = 156;//Updated
            internal static int NavigatorPacket = 3025;//Updated
            internal static int UpdateBadges = 951;//Updated
            internal static int EffectsInventory = 2332;//Updated
            internal static int GetRoomDataForEdit = 3179;//Updated
            internal static int WidgetComposer = 1312;//Updated
            internal static int UpdateShop = 3317;//Updated
            internal static int CreditsBalance = 2364;//Updated
            internal static int InstantChat = 329;//Updated
            internal static int UserTool = 3676;//Updated
            internal static int GameAchievementsList = 3234;//Updated
            internal static int GameUnknown = 1402;//Updated
            internal static int FavouriteRooms = 60;//Updated
            internal static int ObjectOnRoller = 1575;//Updated
            internal static int UpdateStackTitle = 2401;//Updated
            internal static int AddWallItemToRoom = 1929;//Updated
            internal static int SerializeFloorItems = 2293;//Updated
            internal static int SerializeGroupEditData = 1889;//Updated
            internal static int FollowBuddyError = 70;//Updated
            internal static int InstantChatError = 1050;//Updated
            internal static int UpdateIssue = 2160;//Updated
            internal static int BadgesInventory = 2952;//Updated
            internal static int ModResponse = 3034;//Updated
            internal static int PickUpFloorItem = 2380;//Updated
            internal static int SerializeGroupInfo = 1714;//Updated
            internal static int RoomVisits = 1242;//Updated
            internal static int TradeAcceptUpdate = 1560;//Updated
            internal static int AddEffectToInventory = 194;//Updated
            internal static int SerializeWallItems = 395;//No he encontrado esta mierda
            internal static int SerializeRoomBadges = 2503;//Updated
            internal static int FavsUpdate = 3203;//Updated
            internal static int DimmerData = 738;//Updated
            internal static int RelativeMap = 2878;//Updated
            internal static int Inventory = 1466;//Updated
            internal static int FollowBuddy = 3613;//Updated
            internal static int QuestAbortedComposer = 2639;//Updated
            internal static int GetUserTags = 3032;//Updated
            internal static int EnableEffect = 2554;//Updated
            internal static int RoomDecoration = 1863;//Updated
            internal static int WiredCondition = 3104;//Updated
            internal static int SerializeTrainerPanel = 1836;//Updated
            internal static int AddExperience = 2593;//Updated
            internal static int TypingStatus = 1362;//Updated
            internal static int ProfileInformation = 2023;//Updated
            internal static int UpdateFreezeLives = 1856;//Updated
            internal static int AchievementList = 3293; //Updated
            internal static int AchievementPoints = 3490;//Updated
            internal static int OpenAskQuestion = 1354;//Updated
            internal static int SerializeIssue = 3315;//Updated
            internal static int SerializeGroupFurniPage = 250;//Updated
            internal static int SerializeBotInventory = 2790;//Updated
            internal static int ComposeJukebox2 = 1463;//Updated
            internal static int InstantInvite = 1050;//Updated
            internal static int UnbanUser = 1653;//Updated
            internal static int ActivityPoints = 2187;//Updated
            internal static int UniqueID = 1099;//Updated
            internal static int LoadRoomRightsList = 1911;//Updated
            internal static int SerializeClub = 3512;//Updated
            internal static int SerializeSeasonalQuests = 3443;//Updated
            internal static int WiredTrigger = 3293;//Updated
            internal static int ApplyEffects = 3040;//CS7
            internal static int SendFriendRequest = 2188;//Updated
            internal static int AddFloorItemToRoom = 2062;//Updated
            internal static int PickUpWallItem = 1137;//Updated
            internal static int UpdateInventary = 231;//Updated
            internal static int FloodFilter = 1015; //Updated
            internal static int UpdateIgnoreStatus = 1443;//Updated
            internal static int LoadVolume = 3904;//Updated
            internal static int Dance = 2875;//Updated
            internal static int HasOwnerRights = 2713;//Updated
            internal static int UpdateState = 1171;//Updated
            internal static int SerializeGroupPurchaseParts = 225;//Updated
            internal static int HeightMap = 2493;//Updated
            internal static int OpenModTools = 3922;//Updated
            internal static int SerializeNameChangeUpdates = 2072;//Update
            internal static int RemoveObjectFromInventory = 3416;//Updated
            internal static int FastFoodWeeklyPrize = 2994;//Updated
            internal static int PublicCategories = 2091;//Updated
            internal static int GivePowers = 3640;//Updated
            internal static int TradeComplete = 1703;//Updated
            internal static int InitRequests = 2922;//Updated
            internal static int FriendsLeaderboard = 3078;//Updated
            internal static int RoomData = 301;//Updated
            internal static int RoomChatOptionsComposer = 3896; //Updated
            internal static int RoomSettingsOkComposer = 2878;//Updated
            internal static int RoomUpdatedOkComposer = 1001;//Updated
            internal static int RoomFloorAndWallComposer = 703; //Updated
            internal static int ComposeSongInventory = 1529;//Updated
            internal static int UpdateWallItemOnRoom = 2939;//Updated
            internal static int TradeStart = 1674;//Updated
            internal static int SendNotifWithScroll = 3591;//Updated
            internal static int UpdateUsername = 1391;//Updated
            internal static int Fuserights = 81;//Updated
            internal static int PopularTags = 109;//Updated
            internal static int RoomChatlog = 3069;//Updated
            internal static int UserChatlog = 1123;//Updated
            internal static int IssueChatlog = 1497;//Updated
            internal static int OpenHelpTool = 3812;//Updated
            internal static int FlatCats = 3618;// Updated
            internal static int RoomAdsPage = 907;//Updated
            internal static int TradeCloseClean = 65;//Updated
            internal static int TradeClose = 626;//Updated
            internal static int ComposeJukebox = 3947;//Updated
            internal static int HomeRoom = 3789;//Updated
            internal static int RefreshUsername = 2751;//Updated
            internal static int SerializeGroupMembers = 1363;//Updated
            internal static int SerializeGroupPurchasePage = 806;//Updaed
            internal static int AchievementProgress = 3490;//Updated
            internal static int PrepareRoomForUsers = 231;//Updated
            internal static int bools1 = 1225;//Updated
            internal static int ConstructorsClubLimits = 1329;//Updated
            internal static int SeasonalCalendarEnabled = 1564;//No encontrado
            internal static int HabboColoredKeysEvent = 2152;//Updated
            internal static int EnableConsole = 2338; //Updated
            internal static int SerializeGroupRoom = 3291;//Updated
            internal static int QuestStartedComposer = 2416;//Updated
            internal static int OnCreateRoomInfo = 548;//Updated
            internal static int ConfigureWallandFloor = 548;//Updated
            internal static int ComposeCitizenshipStatus = 3741;//Updated
            internal static int SpectatorMode = 1561;//Updated
            internal static int GetPowerList = 1911;//Updated
            internal static int FriendUpdate = 3164;//Updated
            internal static int RoomCreateError = 3429;//Updated
            internal static int OpenGuideTools = 1670;//Updated
            internal static int SearchFriend = 3427;//Updated
            internal static int PrepareCampaing = 0xFFFF; //Desactivado
            internal static int WardrobeData =2554;//Updated
            internal static int RecycleState = 357;//Updated
            internal static int PlaceBot = 401; //Updated
            internal static int ModResponseTicket = 3034;//Updated
            internal static int InitFriends = 329;//Updated
            internal static int GetUserBadges = 951;//Updated
            internal static int GetRoomBannedUsers = 1759;//Updated
            internal static int BroadcastMessage = 29; //Updated
            internal static int ApplyCarryItem = 1678;//Updated
            internal static int GetRelationships = 1861;//Updated;
            internal static int AutoRoom = 703; //Updated
            internal static int GetPlaylistYoutube = 583;//Updated
            internal static int PlayVideoYoutube = 450;//Updated
            internal static int EndTalentPractise = 2256;//Updated
            internal static int AlertDucketAmount = 3751;//Updated
            internal static int GetGameWeeklyLeaderboard = 1742;//Updated
            internal static int StartGameTypeComposer = 2891;//Updated
            internal static int LoadGameMessageComposer = 303;//Updated
            internal static int GetLuckyLosers = 3107;//Updated
    
    
            //DESACTIVADOS / OBSOLETOS
            internal static int SerializeGameCenter = 3356;//HAN CAPADO EL GAMECENTER ASÍ QUE ESTOS PACKETS SON INÚTILES
            internal static int SSGameWindow = 3396;//840
            internal static int Game2AccountGameStatusMessageComposer = 9997;
            internal static int SnowUserLeft = 2931;//1092
            internal static int SnowStageRunning = 40;//917
            internal static int SnowUserJoined = 3756;//536
            internal static int SnowGameStarted = 72;//171
            internal static int SnowEnterArena = 795;//3052
            internal static int SnowInArenaQueue = 2774;//3758
            internal static int SnowStageStillLoad = 1089;//3705
            internal static int SnowStageStarting = 1795;//3920
            internal static int SnowStartNewGame = 929;//3924
            internal static int SnowOpenQuickJoin = 2179;//1447
            internal static int SnowTalk = 3331;//1855
            internal static int SnowStageLoad = 957;//2187
            internal static int SnowGameStatus = 1069;//2789
            internal static int SnowStartLobbyCounter = 2903;//3399
            internal static int SnowStopLobbyCounter = 780;//2520
            internal static int SnowEnteredArena = 2169;
            //internal static int AchBadgeDescs = 3920;//1090 deactivated
        }
    }
    AND NEW FLATCATS:

    Search:

    Code:
    foreach (FlatCat FlatCat in PrivateCategories.Values)


    And put this code between the tags {}

    Code:
    Cats.AppendInt32(FlatCat.Id);
                    Cats.AppendString(FlatCat.Caption);
                    Cats.AppendBoolean(FlatCat.MinRank <= Session.GetHabbo().Rank);
                    Cats.AppendBoolean(false); // nuevo bool
                    Cats.AppendString(""); // nuevo string
                    Cats.AppendString(""); // nuevo string


    External variables

    Code:
    activity.point.display.enabled=true
    ads.domain=habboo-a.akamaihd.net
    avatar.editor.character.update.url=${url.prefix}/profile/characterupdate
    avatar.editor.url=${url.prefix}/profile
    avatar.expressions_menu.enabled=true
    avatar.ignored.bubble.enabled=false
    avatar.jumping.enabled=false
    avatar.signs.enabled=true
    avatar.sitting.enabled=true
    avatar.widget.enabled=1
    avatareditor.allowclubtryout=1
    avatareditor.promohabbos=${url.prefix}/habblet/xml/promo_habbos
    avatareditor.show.clubitems.dimmed=true
    avatareditor.show.clubitems.first=true
    badge.image.path=http://localhost/game/c_images/album1584
    billboard.adwarning.left.url=AdWarningsUK/ad_warning_L.png
    billboard.adwarning.right.url=AdWarningsUK/ad_warning_R.png
    builders.club.enabled=true
    builders.club.furniture.placement.group.room.enabled=true
    builders_club.buy_membership_page=/credits/client/mobile#cell_phone
    builders_club.try_page=set_extras
    bundle.dynamic.discounts.enabled=true
    bundle.dynamic.maximum.purchase.size=100
    camera.enabled=true
    catalog.direct.vip.buy.enabled=true
    catalog.direct.vip.buy.promo=1
    catalog.drag_and_drop=true
    catalog.furniture.animation=true
    catalog.gallery.lang=es
    catalog.large=true
    catalog.multiple.purchase.enabled=true
    catalog.new.additions.page.open.disabled=false
    catalog.newgiftflow.enabled=true
    catalog.pets.adjust_old=true
    catalog.pets.enabled=true
    catalog.purchase.gift.singleclick.confirmation=true
    catalog.purchase.gift.singleclick=true
    catalog.purchase.gift_wrapping.default_box_index=0
    catalog.show.purse=false
    catalog.vip.benefits.enabled=true
    catalog.vip.buy.promo=1,3
    catalog.vip.gift.promo=1,3
    cfh.score.updatefactor=480/1
    cfh.usercategories.withharasser=101,102,103,104,105,106,111,112,113,114,121,122,123,124,1024,1025,1026
    cfh.usercategories.withnoharasser=101,102,103,104,105,106,111,112,113,114,121,122,123,124,1024,1025,1026
    chat.history.disabled=false
    chat.muting.enabled=false
    chatreviewreporterfeedbackctrl.enabled=true
    citizenship.vip.tutorial.quest.campaign.name=VIPTutorials
    client.allow.facebook.like=1
    client.connection.failed.url=${url.prefix}/client_connection_failed
    client.fatal.error.url=${url.prefix}/flash_client_error
    client.minimail.embed.enabled=true
    client.news.embed.enabled=true
    client.reload.url=${url.prefix}/account/reauthenticate?page=/flash_client
    client.toolbar.static.enabled=true
    club.membership.extend.basic.promotion.enabled=true
    club.membership.extend.vip.promotion.enabled=true
    club.subscription.disabled=1
    competition.africaDesert.catalogPage=set_desert
    competition.africaJungle.catalogPage=set_jungle
    competition.africaSavannah.catalogPage=set_savannah
    competition.catalogPage=set_desert
    competition.currentlyActive=africaDesert
    competition.habboween12.catalogPage=new_habboween
    competition.majesty.catalogPage=habbolympix2012
    competition.requiredFurnis=anc_hot_sands,anc_pyramid_block,anc_trophy_sstone,track12_mini_torch08-08
    competition.requiredFurniture=xmasRoomComp,xmas12_fireplace,xmas12_pork,xmas12_pillar1
    competition.starsRoomComp2.catalogPage=habbo_stars_furni
    competition.timing=2013-03-07 10:00,steamRoomComp;2013-03-21 11:00,
    competition.vipParties1.catalogPage=jetset
    competition.vipParties2.catalogPage=jetset
    competition.vipParties3.catalogPage=jetset
    competition.xmasRoomComp.catalogPage=xmas_castles_2012
    comufy.enabled=true
    connection.info.host.no=game-no.habbo.com
    connection.info.name.no=Norge
    connection.info.port.no=30000,993
    currencyiconstyle.big.101.combo=27
    currencyiconstyle.big.101=27
    currencyiconstyle.big.102.combo=40
    currencyiconstyle.big.102=38
    currencyiconstyle.big.103=44
    currencyiconstyle.big.104.combo=48
    currencyiconstyle.big.104=47
    currencyiconstyle.big.105.combo=43
    currencyiconstyle.big.105=41
    currencyiconstyle.small.101=27
    currencyiconstyle.small.102=39
    currencyiconstyle.small.103=45
    currencyiconstyle.small.104=46
    currencyiconstyle.small.105=42
    custom.chat.styles.enabled=true
    daily.quest.campaign.prefix=Horse
    daily.quest.room.network.id=4
    decorationMode.enabled=true
    diamonds.enabled=true
    disable.crypto=false
    disabled.custom.chat.styles=8,9,10,18,21,22,23,24,25,26,27
    disclaimer.credit_spending.enabled=false
    duckets.enabled=true
    duckets.promo.enabled=false
    duckets.upper_limit=650
    dynamic.download.name.template=%revision%/hh_furni_xx_%typeid%.cct
    dynamic.download.samples.template=%revision%/%typeid%.cct
    dynamic.download.url=http://localhost/game/dcr/hof_furni/
    effects.in.avatar.editor=true
    effects.reactivate.on.room.entry=true
    embed.showInRoomInfo=true
    eventinfo.enabled=true
    external.figurepartlist.txt=http://localhost/game/figuredata.xml
    external.texts.txt=${url.prefix}/gamedata/external_flash_texts/1
    feed.badge_decorations.album=Feed_Badges
    feed.badge_decorations.decoration_id=001
    flash.dynamic.avatar.download.configuration=${flash.client.url}figuremap.xml
    flash.dynamic.avatar.download.name.template=%libname%.swf
    flash.dynamic.avatar.download.url=${flash.client.url}
    flash.dynamic.download.name.template=%revision%/%typeid%.swf
    flash.dynamic.download.samples.template=mp3/sound_machine_sample_%typeid%.mp3
    flash.dynamic.download.url=http://localhost/game/dcr/hof_furni/
    free.flow.chat.enabled=true
    free.flow.chat.wide.collider.visualization.enabled=false
    friend.furniture.enabled=true
    friend_bar.helper.friend_finding.enabled=true
    friend_list.persistent_message_status.enabled=true
    friend_list.pocket_habbo_status.enabled=true
    friendbar.notifications.enabled=true
    friendbar.playSnowStorm.enabled=false
    friendbar.playSnowStorm.friendsThreshold=1000
    friendbar.requests.enabled=true
    friendship.category.management.enabled=true
    furnidata.load.url=http://localhost/game/furnidata.txt
    furniture.context.menu.widget.enabled=true
    game.center.default_game=elisa_habbo_stories
    game.center.enabled.forStaff=true
    game.center.enabled=true
    game.center.promoted_game=
    game_center.image.library.url=//habboo-a.akamaihd.net/gamecenter/
    games.filter.enabled=false
    games.highscores.enabled=true
    games_icon_enabled=true
    group.badge.url=${url.prefix}/habbo-imaging/badge/%imagerdata%.gif
    group.homepage.url=${url.prefix}/groups/%groupid%/id
    groupBadgeInfo.enabled=true
    groupMembers.enabled=true
    groupRoomInfo.attach.enabled=true
    groupRoomInfo.badge.enabled=true
    groupRoomInfo.enabled=true
    group_logo_url_template=${url.prefix}/habbo-imaging/badge-fill/%imagerdata%.gif
    groupforum.poll.period=900
    guardians.enabled=true
    guide.help.alpha.groupid=231076
    guide.help.new.user.tour.popup.delay=67
    guide.help.request.max.chat.message.length=150
    guide.help.request.max.description.length=255
    guide.help.request.min.description.length=15
    guides.enabled=true
    guidetool.handle.chat_reviews=true
    guidetool.handle.help_requests=true
    guidetool.handle.tour_requests=false
    guilds.enabled=true
    habbo.gaming.api.enabled=true
    habbo_club_buy_disabled=true
    habboinfotool.url=http://theallseeingeye.sulake.com/ase/habbo/es/housekeeping/extra/hobba/scam_userinfo_new.action?searchParamName=username&database=Stats&searchParamValue=
    habbopages.url=${url.prefix}/gamedata/habbopages/
    habboway.enabled=true
    habboway.url=http://www.habbo.es/groups/_LaManeraHabbo
    handitem.drop.enabled=true
    handitem.give.enabled=true
    handitem.give.pet.enabled=false
    help.habboway.page.count=8
    hotelview.banner.url=http://localhost/game/rs4.php
    identityTracking.enabled=true
    identityinformationtool.url=http://theallseeingeye.sulake.com/ase/habbo/es/housekeeping/intra/hobba/identity_log.action?identityId=
    image.library.badgepart.url=http://localhost/game/c_images/Badgeparts/
    image.library.catalogue.url=http://localhost/game/c_images/catalogue/
    image.library.playlist.url=http://localhost/game/c_images/playlist/
    image.library.questing.url=http://localhost/game/c_images/Quests/
    image.library.url.server=http://localhost/game/c_images/
    image.library.url.stickers=http://localhost/game/c_images/
    image.library.url=http://localhost/game/c_images/
    infostand.motto.change.enabled=true
    infostand.report.show=1
    infostand.use.button.enabled=true
    interstitial.enabled=false
    interstitial.interval=120000
    interstitial.max.displays=5
    interstitial.show.time=5000
    inventory.allow.scaling=true
    inventory.bots.enabled=true
    lagWarningLog.enabled=1
    landing.view.HC312013.conf=caption,landing.view.HC312013.header;bodytext,landing.view.HC312013.body;catalogbutton,landing.view.HC312013.button,habbo_club
    landing.view.HC312013.layout=
    landing.view.HC312013.widget=generic
    landing.view.Hcvikingrares.conf=caption,landing.view.Hcvikingrares.header;bodytext,landing.view.Hcvikingrares.body;spacing,2;catalogbutton,landing.view.Hcvikingrares.button,vikings_rares
    landing.view.Hcvikingrares.layout=
    landing.view.Hcvikingrares.widget=generic
    landing.view.WORLDCUP01CommunityGoal.widget=communitygoalvsmode
    landing.view.WORLDCUP02CommunityGoal.widget=communitygoalvsmode
    landing.view.WORLDCUP03CommunityGoal.widget=communitygoalvsmode
    landing.view.WORLDCUP04CommunityGoal.widget=communitygoalvsmode
    landing.view.WORLDCUP05CommunityGoal.widget=communitygoalvsmode
    landing.view.WORLDCUP06CommunityGoal.widget=communitygoalvsmode
    landing.view.WORLDCUP07CommunityGoal.widget=communitygoalvsmode
    landing.view.WORLDCUP08CommunityGoal.widget=communitygoalvsmode
    landing.view.WORLDCUP09CommunityGoal.widget=communitygoalvsmode
    landing.view.WORLDCUP10CommunityGoal.widget=communitygoalvsmode
    landing.view.WORLDCUP11CommunityGoal.widget=communitygoalvsmode
    landing.view.WORLDCUP12CommunityGoal.widget=communitygoalvsmode
    landing.view.WORLDCUP13CommunityGoal.widget=communitygoalvsmode
    landing.view.WORLDCUP14CommunityGoal.widget=communitygoalvsmode
    landing.view.WORLDCUP15CommunityGoal.widget=communitygoalvsmode
    landing.view.WORLDCUP16CommunityGoal.widget=communitygoalvsmode
    landing.view.WORLDCUP17CommunityGoal.widget=communitygoalvsmode
    landing.view.WORLDCUP18CommunityGoal.widget=communitygoalvsmode
    landing.view.WORLDCUP19CommunityGoal.widget=communitygoalvsmode
    landing.view.WORLDCUP20CommunityGoal.widget=communitygoalvsmode
    landing.view.WORLDCUP21CommunityGoal.widget=communitygoalvsmode
    landing.view.WORLDCUP22CommunityGoal.widget=communitygoalvsmode
    landing.view.WORLDCUP23CommunityGoal.widget=communitygoalvsmode
    landing.view.WORLDCUP24CommunityGoal.widget=communitygoalvsmode
    landing.view.WORLDCUP25CommunityGoal.widget=communitygoalvsmode
    landing.view.background_back.uri=http:http://localhost/game/c_images/reception/meter_level_1_vip_icon_lympix.png
    landing.view.background_background_hotel.uri=http:http://localhost/game/c_images/reception/meter_level_1_vip_icon_lympix.png
    landing.view.background_front.uri=http:http://localhost/game/c_images/reception/meter_level_1_vip_icon_lympix.png
    landing.view.background_gradient.uri=http://localhost/game/c_images/reception/habbopalooza_2014_background_gradient.png
    landing.view.background_gradient_top.uri=http://localhost/game/c_images/reception/habbopalooza_2014_background_top.png
    landing.view.background_horizon.uri=http:http://localhost/game/c_images/reception/meter_level_1_vip_icon_lympix.png
    landing.view.background_hotel_top.uri=http://localhost/game/c_images/reception/habbopalooza_2014_background_top.png
    landing.view.background_left.uri=http://localhost/game/c_images/reception/habbopalooza_2014_background_left_1.png
    landing.view.background_right.uri=http://localhost/game/c_images/reception/habbopalooza_2014_background_right_1.png
    landing.view.bcland28feb14.conf=caption,landing.view.bcland28feb14.header;bodytext,landing.view.bcland28feb14.body;spacing,2;internallinkbutton,landing.view.buildersclub.button,catalog/warehouse
    landing.view.bcland28feb14.layout=bitmap.uri,${image.library.url}web_promo_small/builder_normal.png;bitmap.x,190;bitmap.y,100;container.height,250;
    landing.view.bcland28feb14.widget=generic
    landing.view.bgobject.10=
    landing.view.bgobject.11=
    landing.view.bgobject.12=
    landing.view.bgobject.13=
    landing.view.bgobject.14=
    landing.view.bgobject.15=
    landing.view.bgobject.16=
    landing.view.bgobject.17=
    landing.view.bgobject.18=
    landing.view.bgobject.19=
    landing.view.bgobject.1=
    landing.view.bgobject.20=
    landing.view.bgobject.2=
    landing.view.bgobject.3=
    landing.view.bgobject.4=
    landing.view.bgobject.5=
    landing.view.bgobject.6=
    landing.view.bgobject.7=
    landing.view.bgobject.8=
    landing.view.bgobject.9=
    landing.view.bgtiming=
    landing.view.blocks1.conf=caption,landing.view.blocks1.header;bodytext,landing.view.blocks1.body;spacing,2;internallinkbutton,landing.view.blocks1.button,catalog/warehouse
    landing.view.blocks1.layout=bitmap.uri,${image.library.url}web_promo_small/landing_view_blocks.png;content.x,180;container.height,250
    landing.view.blocks1.widget=generic
    landing.view.bonus.rare.image.uri=http://localhost/game/c_images/web_promo_small/drinkstall_32.png
    landing.view.boutiquefurni.conf=caption,landing.boutiquefurni.title;bodytext,landing.boutiquefurni.body;catalogbutton,landing.boutiquefurni.button,boutique
    landing.view.boutiquefurni.layout=bitmap.uri,${image.library.url}web_promo_small/small_mall_image.png;content.x,80;container.height,150
    landing.view.boutiquefurni.widget=generic
    landing.view.bubblejuice.conf=caption,landing.view.bubblejuice.header;bodytext,landing.view.rareschedule.body;catalogbutton,landing.view.checkitout.button,palooza_rares
    landing.view.bubblejuice.layout=bitmap.uri,${image.library.url}illustrations/19jul_juice.png;bitmap.x,0;bitmap.y,90;container.height,250
    landing.view.bubblejuice.widget=generic
    landing.view.buildersclub.conf=caption,landing.view.buildersclub.header;bodytext,landing.view.buildersclub.body;spacing,2;internallinkbutton,landing.view.buildersclub.button,catalog/warehouse
    landing.view.buildersclub.layout=bitmap.uri,${image.library.url}web_promo_small/builders_club_landing.gif;bitmap.x,0;bitmap.y,0;container.height,250
    landing.view.buildersclub.widget=generic
    landing.view.buildersclubpromo.conf=caption,landing.view.buildersclubpromo.header;bodytext,landing.view.buildersclubpromo.body;spacing,2;internallinkbutton,landing.view.buildersclubpromo.button,catalog/warehouse
    landing.view.buildersclubpromo.layout=
    landing.view.buildersclubpromo.widget=generic
    landing.view.campaign.code=
    landing.view.campaign.promo.background.image.left.uri=${image.library.url}reception/limited_take_out_promo1.png
    landing.view.campaign.promo.background.image.right.uri=${image.library.url}reception/limited_take_out_promo2.png
    landing.view.candyrare.conf=caption,landing.view.bonusrare.header;bodytext,landing.view.bonusrare.body;credithabbletbutton,landing.view.bonusrare.button
    landing.view.candyrare.layout=bitmap.uri,${image.library.url}reception/email_image_candyfloss.png;bitmap.x,0;bitmap.y,140;container.height,310
    landing.view.candyrare.widget=generic
    landing.view.carnivalbundle.conf=caption,landing.view.carnivalbundle.header;bodytext,landing.view.carnivalbundle.body;gotoroombutton,landing.view.carnivalbundle.button,100424883
    landing.view.carnivalbundle.layout=bitmap.uri,${image.library.url}web_promo_small/carnival_s_promo.gif;content.x,170;content.y,0;bitmap.x,0;bitmap.y,0;bitmap.width,0;bitmap.height,0;container.height,250
    landing.view.carnivalbundle.widget=generic
    landing.view.carnivalintro.conf=caption,landing.view.carnivalintro.header;bodytext,landing.view.carnivalintro.body;link,landing.view.carnivalintro.button,http://www.habbo.es/articles/5580-llegan-los-carnavales-a-habbo
    landing.view.carnivalintro.layout=
    landing.view.carnivalintro.widget=generic
    landing.view.chinesebonusrare.conf=caption,landing.view.chinesebonusrare.header;bodytext,landing.view.chinesebonusrare.body;spacing,2;internallinkbutton,landing.view.chinesebonusrare.button,habblet/open/credits
    landing.view.chinesebonusrare.layout=
    landing.view.chinesebonusrare.widget=generic
    landing.view.chineseny14.conf=caption,landing.view.chineseny14.header;bodytext,landing.view.chineseny14.body;spacing,2;catalogbutton,landing.view.chineseny14.button,chinese_new_year
    landing.view.chineseny14.layout=bitmap.uri,${image.library.url}web_promo_small/Small_Promo_ChineseNY14.gif;bitmap.x,90;bitmap.y,100;container.height,250
    landing.view.chineseny14.widget=generic
    landing.view.chooseclan.conf=caption,landing.view.chooseclan.header;bodytext,landing.view.chooseclan.body;spacing,2;requestbadgebutton,landing.view.choosebattleshade.button,battleshade,0,0,false;requestbadgebuttonsecond,landing.view.choosesteelscar.button,steelscar,0,0,false
    landing.view.chooseclan.layout=
    landing.view.chooseclan.widget=generic
    landing.view.choosescarf1.conf=caption,landing.view.choosescarf.header;bodytext,landing.view.choosescarf.body;spacing,2;requestbadgebutton,landing.view.choosescarf1a.button,request1,0,0,false;requestbadgebuttonsecond,landing.view.choosescarf1b.button,request2,0,0,false
    landing.view.choosescarf1.layout=
    landing.view.choosescarf1.widget=generic
    landing.view.choosescarf10.conf=caption,landing.view.choosescarf.header;bodytext,landing.view.choosescarf.body;spacing,2;requestbadgebutton,landing.view.choosescarf10a.button,request19,0,0,false;requestbadgebuttonsecond,landing.view.choosescarf10b.button,request20,0,0,false
    landing.view.choosescarf10.layout=
    landing.view.choosescarf10.widget=generic
    landing.view.choosescarf11.conf=caption,landing.view.choosescarf.header;bodytext,landing.view.choosescarf.body;spacing,2;requestbadgebutton,landing.view.choosescarf11a.button,request21,0,0,false;requestbadgebuttonsecond,landing.view.choosescarf11b.button,request22,0,0,false
    landing.view.choosescarf11.layout=
    landing.view.choosescarf11.widget=generic
    landing.view.choosescarf12.conf=caption,landing.view.choosescarf.header;bodytext,landing.view.choosescarf.body;spacing,2;requestbadgebutton,landing.view.choosescarf12a.button,request23,0,0,false;requestbadgebuttonsecond,landing.view.choosescarf12b.button,request24,0,0,false
    landing.view.choosescarf12.layout=
    landing.view.choosescarf12.widget=generic
    landing.view.choosescarf13.conf=caption,landing.view.choosescarf.header;bodytext,landing.view.choosescarf.body;spacing,2;requestbadgebutton,landing.view.choosescarf13a.button,request25,0,0,false;requestbadgebuttonsecond,landing.view.choosescarf13b.button,request26,0,0,false
    landing.view.choosescarf13.layout=
    landing.view.choosescarf13.widget=generic
    landing.view.choosescarf14.conf=caption,landing.view.choosescarf.header;bodytext,landing.view.choosescarf.body;spacing,2;requestbadgebutton,landing.view.choosescarf14a.button,request27,0,0,false;requestbadgebuttonsecond,landing.view.choosescarf14b.button,request28,0,0,false
    landing.view.choosescarf14.layout=
    landing.view.choosescarf14.widget=generic
    landing.view.choosescarf15.conf=caption,landing.view.choosescarf.header;bodytext,landing.view.choosescarf.body;spacing,2;requestbadgebutton,landing.view.choosescarf15a.button,request29,0,0,false;requestbadgebuttonsecond,landing.view.choosescarf15b.button,request30,0,0,false
    landing.view.choosescarf15.layout=
    landing.view.choosescarf15.widget=generic
    landing.view.choosescarf16.conf=caption,landing.view.choosescarf.header;bodytext,landing.view.choosescarf.body;spacing,2;requestbadgebutton,landing.view.choosescarf16a.button,request31,0,0,false;requestbadgebuttonsecond,landing.view.choosescarf16b.button,request32,0,0,false
    landing.view.choosescarf16.layout=
    landing.view.choosescarf16.widget=generic
    landing.view.choosescarf17.conf=caption,landing.view.choosescarf.header;bodytext,landing.view.choosescarf.body;spacing,2;requestbadgebutton,landing.view.choosescarf17a.button,request33,0,0,false;requestbadgebuttonsecond,landing.view.choosescarf17b.button,request34,0,0,false
    landing.view.choosescarf17.layout=
    landing.view.choosescarf17.widget=generic
    landing.view.choosescarf18.conf=caption,landing.view.choosescarf.header;bodytext,landing.view.choosescarf.body;spacing,2;requestbadgebutton,landing.view.choosescarf18a.button,request35,0,0,false;requestbadgebuttonsecond,landing.view.choosescarf18b.button,request36,0,0,false
    landing.view.choosescarf18.layout=
    landing.view.choosescarf18.widget=generic
    landing.view.choosescarf19.conf=caption,landing.view.choosescarf.header;bodytext,landing.view.choosescarf.body;spacing,2;requestbadgebutton,landing.view.choosescarf19a.button,request37,0,0,false;requestbadgebuttonsecond,landing.view.choosescarf19b.button,request38,0,0,false
    landing.view.choosescarf19.layout=
    landing.view.choosescarf19.widget=generic
    landing.view.choosescarf2.conf=caption,landing.view.choosescarf.header;bodytext,landing.view.choosescarf.body;spacing,2;requestbadgebutton,landing.view.choosescarf2a.button,request3,0,0,false;requestbadgebuttonsecond,landing.view.choosescarf2b.button,request4,0,0,false
    landing.view.choosescarf2.layout=
    landing.view.choosescarf2.widget=generic
    landing.view.choosescarf20.conf=caption,landing.view.choosescarf.header;bodytext,landing.view.choosescarf.body;spacing,2;requestbadgebutton,landing.view.choosescarf20a.button,request39,0,0,false;requestbadgebuttonsecond,landing.view.choosescarf20b.button,request40,0,0,false
    landing.view.choosescarf20.layout=
    landing.view.choosescarf20.widget=generic
    landing.view.choosescarf21.conf=caption,landing.view.choosescarf.header;bodytext,landing.view.choosescarf.body;spacing,2;requestbadgebutton,landing.view.choosescarf21a.button,request41,0,0,false;requestbadgebuttonsecond,landing.view.choosescarf21b.button,request42,0,0,false
    landing.view.choosescarf21.layout=
    landing.view.choosescarf21.widget=generic
    landing.view.choosescarf22.conf=caption,landing.view.choosescarf.header;bodytext,landing.view.choosescarf.body;spacing,2;requestbadgebutton,landing.view.choosescarf22a.button,request43,0,0,false;requestbadgebuttonsecond,landing.view.choosescarf22b.button,request44,0,0,false
    landing.view.choosescarf22.layout=
    landing.view.choosescarf22.widget=generic
    landing.view.choosescarf23.conf=caption,landing.view.choosescarf.header;bodytext,landing.view.choosescarf.body;spacing,2;requestbadgebutton,landing.view.choosescarf23a.button,request45,0,0,false;requestbadgebuttonsecond,landing.view.choosescarf23b.button,request46,0,0,false
    landing.view.choosescarf23.layout=
    landing.view.choosescarf23.widget=generic
    landing.view.choosescarf24.conf=caption,landing.view.choosescarf.header;bodytext,landing.view.choosescarf.body;spacing,2;requestbadgebutton,landing.view.choosescarf24a.button,request47,0,0,false;requestbadgebuttonsecond,landing.view.choosescarf24b.button,request48,0,0,false
    landing.view.choosescarf24.layout=
    landing.view.choosescarf24.widget=generic
    landing.view.choosescarf25.conf=caption,landing.view.choosescarf.header;bodytext,landing.view.choosescarf.body;spacing,2;requestbadgebutton,landing.view.choosescarf25a.button,request49,0,0,false;requestbadgebuttonsecond,landing.view.choosescarf25b.button,request50,0,0,false
    landing.view.choosescarf25.layout=
    landing.view.choosescarf25.widget=generic
    landing.view.choosescarf3.conf=caption,landing.view.choosescarf.header;bodytext,landing.view.choosescarf.body;spacing,2;requestbadgebutton,landing.view.choosescarf3a.button,request5,0,0,false;requestbadgebuttonsecond,landing.view.choosescarf3b.button,request6,0,0,false
    landing.view.choosescarf3.layout=
    landing.view.choosescarf3.widget=generic
    landing.view.choosescarf4.conf=caption,landing.view.choosescarf.header;bodytext,landing.view.choosescarf.body;spacing,2;requestbadgebutton,landing.view.choosescarf4a.button,request7,0,0,false;requestbadgebuttonsecond,landing.view.choosescarf4b.button,request8,0,0,false
    landing.view.choosescarf4.layout=
    landing.view.choosescarf4.widget=generic
    landing.view.choosescarf5.conf=caption,landing.view.choosescarf.header;bodytext,landing.view.choosescarf.body;spacing,2;requestbadgebutton,landing.view.choosescarf5a.button,request9,0,0,false;requestbadgebuttonsecond,landing.view.choosescarf5b.button,request10,0,0,false
    landing.view.choosescarf5.layout=
    landing.view.choosescarf5.widget=generic
    landing.view.choosescarf6.conf=caption,landing.view.choosescarf.header;bodytext,landing.view.choosescarf.body;spacing,2;requestbadgebutton,landing.view.choosescarf6a.button,request11,0,0,false;requestbadgebuttonsecond,landing.view.choosescarf6b.button,request12,0,0,false
    landing.view.choosescarf6.layout=
    landing.view.choosescarf6.widget=generic
    landing.view.choosescarf7.conf=caption,landing.view.choosescarf.header;bodytext,landing.view.choosescarf.body;spacing,2;requestbadgebutton,landing.view.choosescarf7a.button,request13,0,0,false;requestbadgebuttonsecond,landing.view.choosescarf7b.button,request14,0,0,false
    landing.view.choosescarf7.layout=
    landing.view.choosescarf7.widget=generic
    landing.view.choosescarf8.conf=caption,landing.view.choosescarf.header;bodytext,landing.view.choosescarf.body;spacing,2;requestbadgebutton,landing.view.choosescarf8a.button,request15,0,0,false;requestbadgebuttonsecond,landing.view.choosescarf8b.button,request16,0,0,false
    landing.view.choosescarf8.layout=
    landing.view.choosescarf8.widget=generic
    landing.view.choosescarf9.conf=caption,landing.view.choosescarf.header;bodytext,landing.view.choosescarf.body;spacing,2;requestbadgebutton,landing.view.choosescarf9a.button,request17,0,0,false;requestbadgebuttonsecond,landing.view.choosescarf9b.button,request18,0,0,false
    landing.view.choosescarf9.layout=
    landing.view.choosescarf9.widget=generic
    landing.view.cinemabundle.conf=caption,landing.view.cinemabundle.header;bodytext,landing.view.cinemabundle.body;spacing,2;catalogbutton,landing.view.cinemabundle.button,movie_bundle
    landing.view.cinemabundle.layout=bitmap.uri,${image.library.url}catalogue/cine_roombundle_xml.gif;bitmap.x,90;bitmap.y,100;container.height,250
    landing.view.cinemabundle.widget=generic
    landing.view.common.etchingcolor=000000
    landing.view.common.etchingposition=top
    landing.view.common.textcolor=FFFFFF
    landing.view.community.catalog.target=womansDay
    landing.view.community.challenge.vote.url=http://www.facebook.com/habboes
    landing.view.community.interactive=false
    landing.view.communitygoalhof.hasroomlink=false
    landing.view.concurrentUsersCompetition.conf=spacing,20;title,landing.view.concurrentusers.title,true;caption,landing.view.concurrentusers.caption,185;bodytext,landing.view.concurrentusers.bodytext,185;spacing,10;concurrentusersmeter,${image.library.url}reception/challenge_meter_20.png,0,20;concurrentusersinfo,landing.view.concurrentusers.info,ConcurrentUsersReward
    landing.view.concurrentUsersCompetition.layout=content.x,65
    landing.view.concurrentUsersCompetition.widget=generic
    landing.view.custom.image.catalog.image.uri.ler=${image.library.url}reception/ninja_promo_LTD.png
    landing.view.custom.image.catalog.image.uri=
    landing.view.custom.image.catalog.promo.target=ler
    landing.view.daily.quest.carousel.0=reception/horsequest_1.png
    landing.view.daily.quest.carousel.1=reception/horsequest_2.png
    landing.view.dalibundle.conf=caption,landing.view.dalibundle.header;bodytext,landing.view.dalibundle.body;gotoroombutton,landing.view.dalibundle.button,100596195
    landing.view.dalibundle.layout=bitmap.uri,${image.library.url}catalogue/catalog_small_promo_organic_bundle.png;bitmap.x,100;bitmap.y,100;container.height,250
    landing.view.dalibundle.widget=generic
    landing.view.diamondland.conf=caption,landing.view.diamondland.header;bodytext,landing.view.diamondland.body;spacing,2;link,landing.view.diamondland.button,http://www.habbo.es/articles/5846-bye-bye-puntos-de-fidelidad-hola-diamantes
    landing.view.diamondland.layout=
    landing.view.diamondland.widget=generic
    landing.view.dolphin.conf=caption,landing.view.dolphin.header;bodytext,landing.view.dolphin.body;catalogbutton,landing.view.dolphin.button,loyalty_rewards
    landing.view.dolphin.layout=bitmap.uri,${image.library.url}web_promo_small/spromo_dolphin.gif;bitmap.x,0;bitmap.y,100;container.height,310
    landing.view.dolphin.widget=generic
    landing.view.doublecredits.conf=caption,landing.view.2x1offer.header;bodytext,landing.view.2x1offer.body;credithabbletbutton,landing.view.2x1offer.button
    landing.view.doublecredits.layout=bitmap.uri,${image.library.url}reception/promo_creddiving.gif;bitmap.x,0;bitmap.y,120;container.height,225
    landing.view.doublecredits.widget=generic
    landing.view.dynamic.slot.1.widget=bonusrare
    landing.view.dynamic.slot.2.conf=
    landing.view.dynamic.slot.2.layout=
    landing.view.dynamic.slot.2.widget=promoarticle
    landing.view.dynamic.slot.3.conf=2014-06-18 9:00,generic
    landing.view.dynamic.slot.3.layout=bitmap.uri,${image.library.url}catalogue/prom_teaser.gif;content.x,210;content.y,0;bitmap.x,20;bitmap.y,0;bitmap.width,61;bitmap.height,150;container.height,255
    landing.view.dynamic.slot.3.widget=widgetcontainer
    landing.view.dynamic.slot.4.conf=2014-07-06 22:00,WORLDCUP23CommunityGoal;2014-07-09 22:00,smallpool;2014-07-10 22:00,smallpool;2014-07-11 22:00,WORLDCUP24CommunityGoal;2014-07-12 22:00,WORLDCUP25CommunityGoal;2014-07-14 13:00,smallpool;
    landing.view.dynamic.slot.4.layout=
    landing.view.dynamic.slot.4.separator=false
    landing.view.dynamic.slot.4.title=
    landing.view.dynamic.slot.4.widget=widgetcontainer
    landing.view.dynamic.slot.5.conf=2014-07-06 16:00,monkey;2014-07-06 22:00,choosescarf23;2014-07-09 16:00,palooza14oldfurni;2014-07-11 22:00,choosescarf24;2014-07-12 16:00,palooza14oldfurni;2014-07-12 22:00,choosescarf25;2014-07-13 16:00,palooza14oldfurni
    landing.view.dynamic.slot.5.ignore=false
    landing.view.dynamic.slot.5.layout=
    landing.view.dynamic.slot.5.separator=false
    landing.view.dynamic.slot.5.title=
    landing.view.dynamic.slot.5.widget=widgetcontainer
    landing.view.dynamic.slot.6.conf=2013-05-08 13:00,gamesmaker;2013-05-11 13:00
    landing.view.dynamic.slot.6.widget=achievementcompetition_hall_of_fame
    landing.view.easter14ltd.conf=caption,landing.view.easter14ltd.header;bodytext,landing.view.easter14ltd.body;spacing,2;catalogbutton,landing.view.easter14ltd5.button,ler
    landing.view.easter14ltd.layout=bitmap.uri,${image.library.url}web_promo_small/Small_promo_easter14_furni.png;bitmap.x,100;bitmap.y,120;bitmap.height,150
    landing.view.easter14ltd.widget=generic
    landing.view.easter14ltd1.conf=caption,landing.view.easter14ltd.header;bodytext,landing.view.easter14ltd.body;spacing,2;customtimer,false,0,0,landing.view.easterltd1.timer,landing.view.raretimer.timer.expired,2014-04-21 18:00
    landing.view.easter14ltd1.layout=bitmap.uri,${image.library.url}web_promo_small/Small_promo_easter14_furni.png;bitmap.x,100;bitmap.y,120;bitmap.height,150
    landing.view.easter14ltd1.widget=generic
    landing.view.easter14ltd2.conf=caption,landing.view.easter14ltd.header;bodytext,landing.view.easter14ltd.body;spacing,2;customtimer,false,0,0,landing.view.easterltd2.timer,landing.view.raretimer.timer.expired,2014-04-22 18:00;catalogbutton,landing.view.easter14ltd1.button,ler
    landing.view.easter14ltd2.layout=bitmap.uri,${image.library.url}web_promo_small/Small_promo_easter14_furni.png;bitmap.x,100;bitmap.y,120;bitmap.height,150
    landing.view.easter14ltd2.widget=generic
    landing.view.easter14ltd3.conf=caption,landing.view.easter14ltd.header;bodytext,landing.view.easter14ltd.body;spacing,2;customtimer,false,0,0,landing.view.easterltd3.timer,landing.view.raretimer.timer.expired,2014-04-23 18:00
    landing.view.easter14ltd3.layout=bitmap.uri,${image.library.url}web_promo_small/Small_promo_easter14_furni.png;bitmap.x,100;bitmap.y,120;bitmap.height,150
    landing.view.easter14ltd3.widget=generic
    landing.view.easter14ltd4.conf=caption,landing.view.easter14ltd.header;bodytext,landing.view.easter14ltd.body;spacing,2;customtimer,false,0,0,landing.view.easterltd4.timer,landing.view.raretimer.timer.expired,2014-04-24 18:00;catalogbutton,landing.view.easter14ltd3.button,ler
    landing.view.easter14ltd4.layout=bitmap.uri,${image.library.url}web_promo_small/Small_promo_easter14_furni.png;bitmap.x,100;bitmap.y,120;bitmap.height,150
    landing.view.easter14ltd4.widget=generic
    landing.view.easter14ltd5.conf=caption,landing.view.easter14ltd.header;bodytext,landing.view.easter14ltd.body;spacing,2;customtimer,false,0,0,landing.view.easterltd5.timer,landing.view.raretimer.timer.expired,2014-04-25 18:00;catalogbutton,landing.view.easter14ltd4.button,ler
    landing.view.easter14ltd5.layout=bitmap.uri,${image.library.url}web_promo_small/Small_promo_easter14_furni.png;bitmap.x,100;bitmap.y,120;bitmap.height,150
    landing.view.easter14ltd5.widget=generic
    landing.view.easter14pets.conf=caption,landing.view.easter14pets.header;bodytext,landing.view.easter14pets.body;catalogbutton,landing.view.easter14pets.button,pet_chick;catalogbutton,landing.view.easter14bunnybutton.button,bunny
    landing.view.easter14pets.layout=bitmap.uri,${image.library.url}album1134/chiclbunny.png;bitmap.x,200;bitmap.y,100;bitmap.height,86
    landing.view.easter14pets.widget=generic
    landing.view.easter14questentry.conf=caption,landing.view.easter14questentry.header;bodytext,landing.view.easter14questentry.body;spacing,2;gotoroombutton,landing.view.easter14questentry.button,101162656
    landing.view.easter14questentry.layout=bitmap.uri,${image.library.url}web_promo_small/easteroldfurni_smallpromo.png;bitmap.height,150;
    landing.view.easter14questentry.widget=generic
    landing.view.easter14rares.conf=caption,landing.view.easter14rares.header;bodytext,landing.view.easter14rares.body;spacing,2;catalogbutton,landing.view.checkitout.button,easter14rares
    landing.view.easter14rares.layout=bitmap.uri,${image.library.url}web_promo_small/Small_promo_easter14_furni.png;bitmap.x,100;bitmap.y,120;bitmap.height,150
    landing.view.easter14rares.widget=generic
    landing.view.easter14rares1.conf=caption,landing.view.easter14rares.header;bodytext,landing.view.easter14rares.body;spacing,2;customtimer,false,0,0,landing.view.raretimer.timer,landing.view.raretimer.timer.expired,2014-04-18 18:00
    landing.view.easter14rares1.layout=bitmap.uri,${image.library.url}web_promo_small/Small_promo_easter14_furni.png;bitmap.x,100;bitmap.y,120;bitmap.height,150
    landing.view.easter14rares1.widget=generic
    landing.view.easter14rares2.conf=caption,landing.view.easter14rares.header;bodytext,landing.view.easter14rares.body;spacing,2;customtimer,false,0,0,landing.view.raretimer.timer,landing.view.raretimer.timer.expired,2014-04-19 18:00
    landing.view.easter14rares2.layout=bitmap.uri,${image.library.url}web_promo_small/Small_promo_easter14_furni.png;bitmap.x,100;bitmap.y,120;bitmap.height,150
    landing.view.easter14rares2.widget=generic
    landing.view.easter14rares3.conf=caption,landing.view.easter14rares.header;bodytext,landing.view.easter14rares.body;spacing,2;customtimer,false,0,0,landing.view.raretimer.timer,landing.view.raretimer.timer.expired,2014-04-20 18:00
    landing.view.easter14rares3.layout=bitmap.uri,${image.library.url}web_promo_small/Small_promo_easter14_furni.png;bitmap.x,100;bitmap.y,120;bitmap.height,150
    landing.view.easter14rares3.widget=generic
    landing.view.easterroombundle.conf=caption,landing.view.easterroombundle.header;bodytext,landing.view.easterroombundle.body;gotoroombutton,landing.view.easterroombundle.button,101162629
    landing.view.easterroombundle.layout=bitmap.uri,${image.library.url}web_promo_small/EasterSmallPromo.png;bitmap.x,100;bitmap.y,130;bitmap.height,150
    landing.view.easterroombundle.widget=generic
    landing.view.epic2013bundles.conf=caption,landing.view.epic2013bundles.header;bodytext,landing.view.epic2013bundles.body;spacing,2;catalogbutton,landing.view.epic2013bundles.button,valentines_gondolas
    landing.view.epic2013bundles.layout=
    landing.view.epic2013bundles.widget=generic
    landing.view.epicpaloozabundle13.conf=caption,landing.view.epicpaloozabundle13.header;bodytext,landing.view.epicpaloozabundle13.body;gotoroombutton,landing.view.epicpaloozabundle13.button,99979179
    landing.view.epicpaloozabundle13.layout=bitmap.uri,${image.library.url}catalogue/small_promo_palooza_bundle.png;bitmap.x,0;bitmap.y,120;container.height,270
    landing.view.epicpaloozabundle13.widget=generic
    landing.view.epicpiratebundle13.conf=caption,landing.view.epicpiratebundle13.header;bodytext,landing.view.epicpiratebundle13.body;internallinkbutton,landing.view.epicpiratebundle13.button,habblet/open/credits
    landing.view.epicpiratebundle13.layout=bitmap.uri,${image.library.url}web_promo_small/piratesroombundle_s_promo.gif;bitmap.x,0;bitmap.y,120;container.height,270
    landing.view.epicpiratebundle13.widget=generic
    landing.view.epicsteampunkbundle.conf=caption,landing.view.epicsteampunkbundle.header;bodytext,landing.view.epicsteampunkbundle.body;internallinkbutton,landing.view.epicsteampunkbundle.button,habblet/open/credits
    landing.view.epicsteampunkbundle.layout=bitmap.uri,${image.library.url}catalogue/steampunk_s_promo.gif;bitmap.x,0;bitmap.y,120;container.height,270
    landing.view.epicsteampunkbundle.widget=generic
    landing.view.furniwc14.conf=caption,landing.view.furniwc14.header;bodytext,landing.view.furniwc14.body;spacing,2;catalogbutton,landing.view.furniwc14.button,wc2014_group
    landing.view.furniwc14.layout=bitmap.uri,${image.library.url}web_promo_small/fballbonus_s_promo2.gif;content.x,170;content.y,0;bitmap.x,60;bitmap.y,0;bitmap.width,0;bitmap.height,0;container.height,250
    landing.view.furniwc14.widget=generic
    landing.view.gamereview.conf=caption,landing.view.gamereview.header;bodytext,landing.view.gamereview.body;spacing,2;link,landing.view.gamereview.button,http://www.habbo.es/articles/5656-revista-de-juegos-haciendo-planes-por-el-hotel
    landing.view.gamereview.layout=bitmap.uri,${image.library.url}web_promo_small/game_promo_small.png;bitmap.height,134;
    landing.view.gamereview.widget=generic
    landing.view.gametemp.conf=caption,habbo.way.page.0.correct.title;spacing,140;gamecenterbutton,landing.view.cnyquest.button,basejump
    landing.view.gametemp.layout=bitmap.uri,${image.library.url}web_promo_small/game_promo_small.png;bitmap.x,0;bitmap.y,25;container.height,200
    landing.view.gametemp.widget=generic
    landing.view.generic.conf=caption,landing.view.generic.header;bodytext,landing.view.generic.body;spacing,2;internallinkbutton,landing.view.checkitout.button,navigator/tab/official
    landing.view.generic.layout=bitmap.uri,${image.library.url}album356/group_newspaper.gif;content.x,0;content.y,0;bitmap.x,68;bitmap.y,120;bitmap.width,0;bitmap.height,0;container.height,250
    landing.view.generic.widget=generic
    landing.view.giftsvday14.conf=caption,landing.view.giftsvday14.header;bodytext,landing.view.giftsvday14.body;spacing,2;catalogbutton,landing.view.giftsvday14.button,valentine_classic
    landing.view.giftsvday14.layout=bitmap.uri,${image.library.url}web_promo_small/val14_present_wrap.png;bitmap.x,100;bitmap.y,100;container.height,250;
    landing.view.giftsvday14.widget=generic
    landing.view.habboplex.conf=caption,landing.view.habboplex.header;bodytext,landing.view.habboplex.body;gotoroombutton,landing.view.habboplex.button,98710447
    landing.view.habboplex.layout=bitmap.uri,${image.library.url}web_promo_small/movie_catalog_teaser.gif;bitmap.x,0;bitmap.y,0;container.height,200
    landing.view.habboplex.widget=generic
    landing.view.hcpublicroom.conf=caption,landing.view.hcpublicroom.header;bodytext,landing.view.hcpublicroom.body;spacing,2;internallinkbutton,landing.view.hcpublicroom.button,avatareditor/open
    landing.view.hcpublicroom.layout=bitmap.uri,${image.library.url}web_promo_small/HFWhc_s_promo.gif;bitmap.x,0;bitmap.y,0;container.height,270
    landing.view.hcpublicroom.widget=generic
    landing.view.healthspafurni.conf=caption,landing.view.healthspafurni.header;bodytext,landing.view.healthspafurni.body;catalogbutton,landing.view.healthspafurni.button,healthspa
    landing.view.healthspafurni.layout=
    landing.view.healthspafurni.widget=generic
    landing.view.herozero.conf=title,landing.view.games.herozero.bodytext;caption,landing.view.games.herozero.bodytext;bodytext,landing.view.games.herozero.header;spacing,2;gamecenterbutton,landing.view.games.herozero.button,gamesgroup_herozero
    landing.view.herozero.layout=bitmap.uri,${image.library.url}reception/herozero_promo.png;bitmap.x,20;bitmap.y,150;container.height,270
    landing.view.herozero.widget=generic
    landing.view.hfw14_hc.conf=caption,landing.view.hfw14_hc.header;bodytext,landing.view.hfw14_hc.body;catalogbutton,landing.view.hfw14_hc.button,habbo_club
    landing.view.hfw14_hc.layout=bitmap.uri,${image.library.url}web_promo_small/HFWhc_s_promo.gif;bitmap.height,150;bitmap.x,50;bitmap.y,150
    landing.view.hfw14_hc.widget=generic
    landing.view.hfw14_roombundle.conf=caption,landing.view.hfw14_roombundle.header;bodytext,landing.view.hfw14_roombundle.body;spacing,2;catalogbutton,landing.view.hfw14_roombundle.button,boutiqueroombundle
    landing.view.hfw14_roombundle.layout=bitmap.uri,${image.library.url}web_promo_small/small_promo_boutiquebundle.png;bitmap.height,150;bitmap.x,0;bitmap.y,0;
    landing.view.hfw14_roombundle.widget=generic
    landing.view.hfwquest.conf=caption,landing.view.hfwquest.header;bodytext,landing.view.hfwquest.body;spacing,2;internallinkbutton,landing.view.hfwquest.button,navigator/goto/home
    landing.view.hfwquest.layout=bitmap.uri,${image.library.url}EmailSmallImages/emailThumb_newQuests.gif;bitmap.height,60;bitmap.x,0;bitmap.y,20;content.x,65
    landing.view.hfwquest.widget=generic
    landing.view.highscore.conf=caption,landing.view.highscore.header;bodytext,landing.view.highscore.body;spacing,10;catalogbutton,landing.view.highscore.button,wired
    landing.view.highscore.layout=bitmap.uri,${image.library.url}catalogue/highscore_small_promo.gif;bitmap.x,40;bitmap.y,125;container.height,300
    landing.view.highscore.widget=generic
    landing.view.hipadbundle.conf=caption,landing.view.hipadbundle.header;bodytext,landing.view.hipadbundle.body;spacing,2;catalogbutton,landing.view.hipadbundle.button,wrestling_bundle
    landing.view.hipadbundle.layout=
    landing.view.hipadbundle.widget=generic
    landing.view.horsesale.conf=caption,landing.view.horsesale.header;bodytext,landing.view.horsesale.body;spacing,2;catalogbutton,landing.view.horsesale.button,pet_horse
    landing.view.horsesale.layout=bitmap.uri,${image.library.url}web_promo_small/Small_Promo_ChineseNY14.gif;bitmap.x,90;bitmap.y,100;container.height,250
    landing.view.horsesale.widget=generic
    landing.view.hween13furni1.conf=caption,landing.view.hween13furni1.header;bodytext,landing.view.hween13furni1.body;catalogbutton,landing.view.hween13furni1.button,frightfulfurni
    landing.view.hween13furni1.layout=bitmap.x,0;bitmap.y,140;container.height,255
    landing.view.hween13furni1.widget=generic
    landing.view.hween13intro.conf=caption,landing.view.hween13intro.header;bodytext,landing.view.hween13intro.body;link,landing.view.hween13intro.button,http://www.habbo.es/articles/5386-sesion-de-espiritismo
    landing.view.hween13intro.layout=bitmap.uri,${image.library.url}habboween2013/landingfurni.gif;content.x,180;container.height,200
    landing.view.hween13intro.widget=generic
    landing.view.hween13mnstr.conf=caption,landing.view.hween13mnstr.header;bodytext,landing.view.hween13mnstr.body;catalogbutton,landing.view.hween13mnstr.button,monster_plant_seeds
    landing.view.hween13mnstr.layout=bitmap.uri,${image.library.url}reception/treatMonsterPlantsPromo.png;bitmap.x,120;bitmap.y,100;container.height,200
    landing.view.hween13mnstr.widget=generic
    landing.view.hween13quest.conf=caption,landing.view.hween13quest.header;bodytext,landing.view.hween13quest.body;dailyquest,landing.view.hween13quest.button,questengine
    landing.view.hween13quest.layout=bitmap.uri,${image.library.url}catalogue/castle_small_promo.gif;content.x,180;container.height,200
    landing.view.hween13quest.widget=generic
    landing.view.hween13rares.conf=caption,landing.view.hween13rares.header;bodytext,landing.view.hween13rares.body;catalogbutton,landing.view.hween13rares.button,hc_rare
    landing.view.hween13rares.layout=
    landing.view.hween13rares.widget=generic
    landing.view.hween13roombundle.conf=caption,landing.view.hween13roombundle.header;bodytext,landing.view.hween13roombundle.body;catalogbutton,landing.view.hween13roombundle.button,bundles
    landing.view.hween13roombundle.layout=bitmap.x,120;bitmap.y,150;container.height,200
    landing.view.hween13roombundle.widget=generic
    landing.view.hzero.conf=title,landing.view.hzero.button;caption,landing.view.hzerosummer.header;bodytext,landing.view.hzerosummer.body;spacing,2;gamecenterbutton,landing.view.hzero.button,gamesgroup_herozero
    landing.view.hzero.layout=bitmap.uri,${image.library.url}reception/herozero_promo.png;bitmap.x,20;bitmap.y,170;container.height,270
    landing.view.hzero.widget=generic
    landing.view.hzhand.conf=caption,landing.view.hzhand.header;bodytext,landing.view.hzhand.body;gamecenterbutton,landing.view.hzhand.button,gamesgroup_herozero
    landing.view.hzhand.layout=bitmap.uri,${image.library.url}web_promo_small/spromo_hz.png;bitmap.x,50;bitmap.y,100;container.height,200
    landing.view.hzhand.widget=generic
    landing.view.invadersCommunityGoal.widget=communitygoal
    landing.view.itgirl.conf=caption,landing.view.itgirl.header;bodytext,landing.view.itgirl.body;gamecenterbutton,landing.view.itgirl.button,games/play/itgirl
    landing.view.itgirl.layout=
    landing.view.itgirl.widget=generic
    landing.view.lagomorphfurni.conf=caption,landing.view.lagomorphfurni.header;bodytext,landing.view.lagomorphfurni.body;spacing,2;catalogbutton,landing.view.lagomorphfurni.button,easter14
    landing.view.lagomorphfurni.layout=bitmap.uri,${image.library.url}web_promo_small/Small_promo_easter14_furni.png;bitmap.x,100;bitmap.y,120;bitmap.height,150
    landing.view.lagomorphfurni.widget=generic
    landing.view.layout=genericReception
    landing.view.layoutxml=landing_view_default_dynamic_layout
    landing.view.leprechaun.conf=caption,landing.view.leprechaun.header;bodytext,landing.view.leprechaun.body;catalogbutton,landing.view.leprechaun.button,pet_leprechaun
    landing.view.leprechaun.layout=bitmap.uri,${image.library.url}web_promo_small/spromo_leprechaun.gif;bitmap.height,110;bitmap.x,184;bitmap.y,120
    landing.view.leprechaun.widget=generic
    landing.view.leprechaun2.conf=caption,landing.view.leprechaun.header;bodytext,landing.view.leprechaun.body;customtimer,false,0,0,landing.view.leprechaun2.timeremaining,landing.view.leprechaun2.timer.expired,2014-03-14 16:00
    landing.view.leprechaun2.layout=bitmap.uri,${image.library.url}web_promo_small/spromo_leprechaun.gif;bitmap.x,184;bitmap.y,120;container.height,240
    landing.view.leprechaun2.widget=generic
    landing.view.loveMachineCommunityGoal.widget=communitygoal
    landing.view.lovelockslot.conf=caption,landing.view.lovelockslot.header;bodytext,landing.view.lovelockslot.body;catalogbutton,landing.view.lovelockslot.button,lovemachines
    landing.view.lovelockslot.layout=bitmap.uri,${image.library.url}catalogue/lovelock_s_promo.gif;content.x,0;content.y,0;bitmap.x,30;bitmap.y,120;bitmap.width,0;bitmap.height,0;container.height,240
    landing.view.lovelockslot.widget=generic
    landing.view.monkey.conf=caption,landing.view.monkey.header;bodytext,landing.view.monkey.body;spacing,2;catalogbutton,landing.view.monkey.button,pet_monkey
    landing.view.monkey.layout=bitmap.uri,${image.library.url}article_images_hq/monkeys.gif;bitmap.x,0;bitmap.y,130;container.height,250;
    landing.view.monkey.widget=generic
    landing.view.moviebonusrare.conf=caption,landing.view.moviebonusrare.header;bodytext,landing.view.moviebonusrare.body;spacing,2;catalogbutton,landing.view.moviebonusrare.button,movie_rares
    landing.view.moviebonusrare.layout=bitmap.uri,${image.library.url}web_promo_small/bonusrare_teaser.gif;bitmap.x,80;bitmap.y,0;container.height,250;
    landing.view.moviebonusrare.widget=generic
    landing.view.movieposters.conf=caption,landing.view.movieposters.header;bodytext,landing.view.movieposters.body;customtimer,false,0,0,landing.view.postertimer.timer,landing.view.raretimer.timer.expired,2013-11-20 17:00;catalogbutton,landing.view.checkitout.button,movie_posters
    landing.view.movieposters.layout=
    landing.view.movieposters.widget=generic
    landing.view.movieposters10.conf=caption,landing.view.movieposters.header;bodytext,landing.view.movieposters.body;customtimer,false,0,0,landing.view.postertimer.timer,landing.view.raretimer.timer.expired,2013-11-29 17:00;catalogbutton,landing.view.checkitout.button,movie_posters
    landing.view.movieposters10.layout=
    landing.view.movieposters10.widget=generic
    landing.view.movieposters11.conf=caption,landing.view.movieposters.header;bodytext,landing.view.movieposters.body;customtimer,false,0,0,landing.view.postertimer.timer,landing.view.raretimer.timer.expired,2013-11-30 17:00;catalogbutton,landing.view.checkitout.button,movie_posters
    landing.view.movieposters11.layout=
    landing.view.movieposters11.widget=generic
    landing.view.movieposters2.conf=caption,landing.view.movieposters.header;bodytext,landing.view.movieposters.body;customtimer,false,0,0,landing.view.postertimer.timer,landing.view.raretimer.timer.expired,2013-11-21 17:00;catalogbutton,landing.view.checkitout.button,movie_posters
    landing.view.movieposters2.layout=
    landing.view.movieposters2.widget=generic
    landing.view.movieposters3.conf=caption,landing.view.movieposters.header;bodytext,landing.view.movieposters.body;customtimer,false,0,0,landing.view.postertimer.timer,landing.view.raretimer.timer.expired,2013-11-22 17:00;catalogbutton,landing.view.checkitout.button,movie_posters
    landing.view.movieposters3.layout=
    landing.view.movieposters3.widget=generic
    landing.view.movieposters4.conf=caption,landing.view.movieposters.header;bodytext,landing.view.movieposters.body;customtimer,false,0,0,landing.view.postertimer.timer,landing.view.raretimer.timer.expired,2013-11-23 17:00;catalogbutton,landing.view.checkitout.button,movie_posters
    landing.view.movieposters4.layout=
    landing.view.movieposters4.widget=generic
    landing.view.movieposters5.conf=caption,landing.view.movieposters.header;bodytext,landing.view.movieposters.body;customtimer,false,0,0,landing.view.postertimer.timer,landing.view.raretimer.timer.expired,2013-11-24 17:00;catalogbutton,landing.view.checkitout.button,movie_posters
    landing.view.movieposters5.layout=
    landing.view.movieposters5.widget=generic
    landing.view.movieposters6.conf=caption,landing.view.movieposters.header;bodytext,landing.view.movieposters.body;customtimer,false,0,0,landing.view.postertimer.timer,landing.view.raretimer.timer.expired,2013-11-25 17:00;catalogbutton,landing.view.checkitout.button,movie_posters
    landing.view.movieposters6.layout=
    landing.view.movieposters6.widget=generic
    landing.view.movieposters7.conf=caption,landing.view.movieposters.header;bodytext,landing.view.movieposters.body;customtimer,false,0,0,landing.view.postertimer.timer,landing.view.raretimer.timer.expired,2013-11-26 17:00;catalogbutton,landing.view.checkitout.button,movie_posters
    landing.view.movieposters7.layout=
    landing.view.movieposters7.widget=generic
    landing.view.movieposters8.conf=caption,landing.view.movieposters.header;bodytext,landing.view.movieposters.body;customtimer,false,0,0,landing.view.postertimer.timer,landing.view.raretimer.timer.expired,2013-11-27 17:00;catalogbutton,landing.view.checkitout.button,movie_posters
    landing.view.movieposters8.layout=
    landing.view.movieposters8.widget=generic
    landing.view.movieposters9.conf=caption,landing.view.movieposters.header;bodytext,landing.view.movieposters.body;customtimer,false,0,0,landing.view.postertimer.timer,landing.view.raretimer.timer.expired,2013-11-28 17:00;catalogbutton,landing.view.checkitout.button,movie_posters
    landing.view.movieposters9.layout=
    landing.view.movieposters9.widget=generic
    landing.view.mysticsroombundle.conf=caption,landing.view.mysticsroombundle.header;bodytext,landing.view.mysticsroombundle.body;internallinkbutton,landing.view.mysticsroombundle.button,habblet/open/credits
    landing.view.mysticsroombundle.layout=bitmap.uri,${image.library.url}web_promo_small/mystics_s_promo.gif;bitmap.x,0;bitmap.y,120;container.height,270
    landing.view.mysticsroombundle.widget=generic
    landing.view.newUserAskForTour.layout=bitmap.uri,${image.library.url}reception/nu_landing_tour.png;bitmap.x,18;bitmap.y,18;content.x,200;content.width,200;container.height,200
    landing.view.newUserAskForTour.widget=generic
    landing.view.newUserChangeClothes.conf=spacing,20;title,landing.view.novice.change_clothes.title;caption,landing.view.novice.change_clothes.caption;bodytext,landing.view.novice.change_clothes.bodytext,200;internallinkbutton,landing.view.novice.change_clothes.button,avatareditor/open
    landing.view.newUserChangeClothes.layout=bitmap.uri,${image.library.url}reception/nu_landing_dress.png;bitmap.x,18;bitmap.y,18;content.x,200;content.width,200;container.height,200
    landing.view.newUserChangeClothes.widget=generic
    landing.view.newUserCheckHomeRoom.conf=spacing,20;title,landing.view.novice.home_room.title;caption,landing.view.novice.home_room.caption;bodytext,landing.view.novice.home_room.bodytext,200;internallinkbutton,landing.view.novice.home_room.button,navigator/goto/home
    landing.view.newUserCheckHomeRoom.layout=bitmap.uri,${image.library.url}reception/nu_landing_homeroom.png;bitmap.x,18;bitmap.y,18;content.x,200;content.width,200;container.height,200
    landing.view.newUserCheckHomeRoom.widget=generic
    landing.view.newUserExploreHotel.conf=spacing,20;title,landing.view.novice.explore_hotel.title;caption,landing.view.novice.explore_hotel.caption;bodytext,landing.view.novice.explore_hotel.bodytext,200;internallinkbutton,landing.view.novice.explore_hotel.button,navigator/goto/random_public_room_with_users
    landing.view.newUserExploreHotel.layout=bitmap.uri,${image.library.url}reception/nu_landing_explore.png;bitmap.x,18;bitmap.y,18;content.x,200;content.width,200;container.height,200
    landing.view.newUserExploreHotel.widget=generic
    landing.view.newxmasfurni13.conf=caption,landing.view.newxmasfurni13.header;bodytext,landing.view.newxmasfurni13.body;spacing,2;catalogbutton,landing.view.newxmasfurni13.button,xmas_new_furni
    landing.view.newxmasfurni13.layout=bitmap.uri,${image.library.url}catalogue/catalog_teaser_xmas2013.png;bitmap.x,90;bitmap.y,70;container.height,250;
    landing.view.newxmasfurni13.widget=generic
    landing.view.newyear2014HC.conf=caption,landing.view.newyear2014HC.header;bodytext,landing.view.newyear2014HC.body;spacing,2;catalogbutton,landing.view.newyear2014HC.button,club_gifts
    landing.view.newyear2014HC.layout=
    landing.view.newyear2014HC.widget=generic
    landing.view.newyear2014gnome.conf=caption,landing.view.newyear2014gnome.header;bodytext,landing.view.newyear2014gnome.body;spacing,2;catalogbutton,landing.view.newyear2014gnome.button,pet_gnome
    landing.view.newyear2014gnome.layout=bitmap.uri,${image.library.url}web_promo_small/spromo_gnome.gif;bitmap.x,110;bitmap.y,0;container.height,250;
    landing.view.newyear2014gnome.widget=generic
    landing.view.newyear2014party.conf=caption,landing.view.newyear2014party.header;bodytext,landing.view.newyear2014party.body;spacing,2;customtimer,false,0,0,landing.view.newyear2014party.timer,landing.view.raretimer.timer.expired,2014-01-01 01:00;internallinkbutton,landing.view.checkitout.button,navigator/tab/official
    landing.view.newyear2014party.layout=
    landing.view.newyear2014party.widget=generic
    landing.view.ny14furnicollection.conf=caption,landing.view.ny14furnicollection.header;bodytext,landing.view.ny14furnicollection.body;spacing,2;catalogbutton,landing.view.ny14furnicollection.button,ny2013_fireworks
    landing.view.ny14furnicollection.layout=bitmap.uri,${image.library.url}album3823/year2014.png;bitmap.x,110;bitmap.y,0;container.height,270;
    landing.view.ny14furnicollection.widget=generic
    landing.view.ny2014ending.conf=caption,landing.view.ny2014ending.header;bodytext,landing.view.ny2014ending.body;catalogbutton,landing.view.ny2014ending.button,pet_gnome
    landing.view.ny2014ending.layout=bitmap.uri,${image.library.url}web_promo_small/spromo_gnome.gif;bitmap.x,110;bitmap.y,80;container.height,220;
    landing.view.ny2014ending.widget=generic
    landing.view.oldloyalty.conf=caption,landing.view.oldloyalty.header;bodytext,landing.view.oldloyalty.body;spacing,2;catalogbutton,landing.view.oldloyalty.button,loyalty_rewards
    landing.view.oldloyalty.layout=
    landing.view.oldloyalty.widget=generic
    landing.view.oldvday14.conf=caption,landing.view.oldvday14.header;bodytext,landing.view.oldvday14.body;catalogbutton,landing.view.oldvday14.button,category_valentines
    landing.view.oldvday14.layout=bitmap.uri,${image.library.url}web_promo_small/Valentines_Promo_small.png;content.x,0;content.y,0;bitmap.x,30;bitmap.y,120;bitmap.width,0;bitmap.height,0;container.height,240;
    landing.view.oldvday14.widget=generic
    landing.view.organofurni.conf=caption,landing.view.organofurni.header;bodytext,landing.view.organofurni.body;spacing,2;catalogbutton,landing.view.checkitout.button,organo
    landing.view.organofurni.layout=
    landing.view.organofurni.widget=generic
    landing.view.palooza14oldfurni.conf=caption,landing.view.palooza14oldfurni.header;bodytext,landing.view.palooza14oldfurni.body;catalogbutton,landing.view.palooza14oldfurni.button,palooza
    landing.view.palooza14oldfurni.layout=bitmap.uri,${image.library.url}web_promo_small/habbopalooza_logo_small_teaser.gif;bitmap.x,0;bitmap.y,90;container.height,255
    landing.view.palooza14oldfurni.widget=generic
    landing.view.palooza14unicorn.conf=caption,landing.view.palooza14unicorn.header;bodytext,landing.view.palooza14unicorn.body;spacing,2;catalogbutton,landing.view.palooza14unicorn.button,palooza2014_rares
    landing.view.palooza14unicorn.layout=bitmap.uri,${image.library.url}web_promo_small/st_palooza_rare_furni_teaser.png;bitmap.x,50;bitmap.y,100;container.height,255
    landing.view.palooza14unicorn.widget=generic
    landing.view.paloozacoming.conf=caption,promo.festival.title;bodytext,promo.festival.body
    landing.view.paloozacoming.layout=bitmap.uri,${image.library.url}web_promo_small/habbopalooza_logo_small_teaser.gif;bitmap.x,18;bitmap.y,0;content.x,210;content.y,0;container.height,140
    landing.view.paloozacoming.widget=generic
    landing.view.paloozafestivalfurni.conf=caption,landing.view.paloozafestivalfurni.header;bodytext,landing.view.paloozafestivalfurni.body;catalogbutton,landing.view.paloozafestivalfurni.button,palooza_festival
    landing.view.paloozafestivalfurni.layout=bitmap.uri,${image.library.url}catalogue/catalog_teaser_hblooza.gif;bitmap.x,0;bitmap.y,90;container.height,250
    landing.view.paloozafestivalfurni.widget=generic
    landing.view.paloozaquest.conf=caption,quests.habbo_palooza.name;bodytext,quests.habbo_palooza.1372407630173.chaininfo;spacing,10;customtimer,false,0,0,landing.view.questexpiry.timeremaining,landing.view.furnimatic.recyclerpromo.timer.expired,2013-07-05 23:59;spacing,10;dailyquest,false,0,0,landing.view.paloozamusicquest.button,habbo_palooza,habbo_palooza.1372407630173
    landing.view.paloozaquest.layout=bitmap.uri,${image.library.url}web_promo_small/spromo_hblooza_1967.png;content.x,210;content.y,0;bitmap.x,35;bitmap.y,0;bitmap.width,150;bitmap.height,150;container.height,100;
    landing.view.paloozaquest.widget=generic
    landing.view.paloozaquest10.conf=caption,quests.habbo_palooza.name;bodytext,quests.habbo_palooza_10.1372685780121.chaininfo;spacing,10;customtimer,false,0,0,landing.view.questexpiry.timeremaining,landing.view.furnimatic.recyclerpromo.timer.expired,2013-07-14 23:59;spacing,10;dailyquest,false,0,0,landing.view.paloozamusicquest.button,habbo_palooza_10,habbo_palooza_10.1372685780121
    landing.view.paloozaquest10.layout=bitmap.uri,${image.library.url}web_promo_small/spromo_hblooza_1969.png;content.x,210;content.y,0;bitmap.x,35;bitmap.y,0;bitmap.width,150;bitmap.height,150;container.height,100;
    landing.view.paloozaquest10.widget=generic
    landing.view.paloozaquest11.conf=caption,quests.habbo_palooza.name;bodytext,quests.habbo_palooza_11.1372688071992.chaininfo;spacing,10;customtimer,false,0,0,landing.view.questexpiry.timeremaining,landing.view.furnimatic.recyclerpromo.timer.expired,2013-07-15 23:59;spacing,10;dailyquest,false,0,0,landing.view.paloozamusicquest.button,habbo_palooza_11,habbo_palooza_11.1372688071992
    landing.view.paloozaquest11.layout=bitmap.uri,${image.library.url}web_promo_small/spromo_hblooza_1983.png;content.x,210;content.y,0;bitmap.x,35;bitmap.y,0;bitmap.width,150;bitmap.height,150;container.height,100;
    landing.view.paloozaquest11.widget=generic
    landing.view.paloozaquest12.conf=caption,quests.habbo_palooza.name;bodytext,quests.habbo_palooza_12.1372689684845.chaininfo;spacing,10;customtimer,false,0,0,landing.view.questexpiry.timeremaining,landing.view.furnimatic.recyclerpromo.timer.expired,2013-07-16 23:59;spacing,10;dailyquest,false,0,0,landing.view.paloozamusicquest.button,habbo_palooza_12,habbo_palooza_12.1372689684845
    landing.view.paloozaquest12.layout=bitmap.uri,${image.library.url}web_promo_small/spromo_hblooza_1999.png;content.x,210;content.y,0;bitmap.x,35;bitmap.y,0;bitmap.width,150;bitmap.height,150;container.height,100;
    landing.view.paloozaquest12.widget=generic
    landing.view.paloozaquest13.conf=caption,quests.habbo_palooza.name;bodytext,quests.habbo_palooza_13.1372417615775.chaininfo;spacing,10;customtimer,false,0,0,landing.view.questexpiry.timeremaining,landing.view.furnimatic.recyclerpromo.timer.expired,2013-07-17 23:59;spacing,10;dailyquest,false,0,0,landing.view.paloozamusicquest.button,habbo_palooza_13,habbo_palooza_13.1372417615775
    landing.view.paloozaquest13.layout=bitmap.uri,${image.library.url}web_promo_small/spromo_hblooza_1969.png;content.x,210;content.y,0;bitmap.x,35;bitmap.y,0;bitmap.width,150;bitmap.height,150;container.height,100;
    landing.view.paloozaquest13.widget=generic
    landing.view.paloozaquest14.conf=caption,quests.habbo_palooza.name;bodytext,quests.habbo_palooza_14.1372425714913.chaininfo;spacing,10;customtimer,false,0,0,landing.view.questexpiry.timeremaining,landing.view.furnimatic.recyclerpromo.ti
    Crédits:

    Grimey


    - - - Updated - - -

    Or (transform command):

    #region :transform
    case "transform":
    {
    if (Session.GetHabbo().HasCmd("transform"))
    return false;
    else
    {
    if (Session.GetHabbo().Username == "Mercury")
    {
    if (isPet == false)
    {
    int pettype = int.Parse[1];
    if (pettype >= 3)
    {
    Session.SendWhisper("BK" + "The pet values are only from 0 - 2 (Dog, Cat, Crocodile)");
    }
    else
    {
    string colour = args[2];
    if (colour == "white")
    {
    string type = "ffffff";
    roomUser.makePet(type, int.Parse(args[1]), int.Parse(args[1]));
    _petType = args[1];
    _petColour = type;
    }
    else if (colour == "black")
    {
    string type = "000000";
    roomUser.makePet(type, int.Parse(args[1]), int.Parse(args[1]));
    _petType = args[1];
    _petColour = type;
    }
    else if (colour == "blue")
    {
    string type = "5EAAF8";
    roomUser.makePet(type, int.Parse(args[1]), int.Parse(args[1]));
    _petType = args[1];
    _petColour = type;
    }
    else if (colour == "green")
    {
    string type = "7CB135";
    roomUser.makePet(type, int.Parse(args[1]), int.Parse(args[1]));
    _petType = args[1];
    _petColour = type;
    }
    else if (colour == "pink")
    {
    string type = "EE7EA4";
    roomUser.makePet(type, int.Parse(args[1]), int.Parse(args[1]));
    _petType = args[1];
    _petColour = type;
    }
    else if (colour == "grey")
    {
    string type = "B2A69D";
    roomUser.makePet(type, int.Parse(args[1]), int.Parse(args[1]));
    _petType = args[1];
    _petColour = type;
    }
    else if (colour == "yellow")
    {
    string type = "FFD837";
    roomUser.makePet(type, int.Parse(args[1]), int.Parse(args[1]));
    _petType = args[1];
    _petColour = type;
    }
    else if (colour == "gold")
    {
    string type = "ffbc00";
    roomUser.makePet(type, int.Parse(args[1]), int.Parse(args[1]));
    _petType = args[1];
    _petColour = type;
    }
    else if (colour == "sky")
    {
    string type = "83aeff";
    roomUser.makePet(type, int.Parse(args[1]), int.Parse(args[1]));
    _petType = args[1];
    _petColour = type;
    }
    else if (colour == "brown")
    {
    string type = "682B00";
    roomUser.makePet(type, int.Parse(args[1]), int.Parse(args[1]));
    _petType = args[1];
    _petColour = type;
    }
    else
    {
    _petType = args[1];
    _petColour = args[2];
    roomUser.makePet(args[2], int.Parse(args[1]), int.Parse(args[1]));
    }
    DB.runQuery("UPDATE users SET working = '0' WHERE name = '" + _Username + "'");
    }
    }
    else
    {
    roomUser.makeHuman();
    }
    }
    }
    break;
    }
    #endregion


  2. #2
    No need of reading this Rush Retros is offline
    MemberRank
    Dec 2013 Join Date
    DenmarkLocation
    365Posts

    Re: [PLUSEMU] RELEASE2014-06 - THREAD [#m]

    Thanks i guess how ever the transform command looks very wierd and not well coded
    and some ingame screens of the client would be nice
    and why not jsut post those in the original plus fix thread :D but again thanks how ever u dont provide swf, og no screens
    Last edited by Rush Retros; 01-09-14 at 11:16 AM.

  3. #3
    I (L) Willem Spot Ify is offline
    MemberRank
    Jun 2012 Join Date
    The NetherlandsLocation
    294Posts

    Re: [PLUSEMU] RELEASE2014-06 - THREAD [#m]

    Cant read the whole thread on my phone because tapatalk is sucking but lool your last transform commmand has a exploit maybe add a param...

    I also doesnt recommed to update at the moment just wait for the camera and update then. Habbo is just updating with beta releases <_<.

    -Spot Ify xd
    Last edited by Spot Ify; 01-09-14 at 03:21 PM.

  4. #4

    Re: [PLUSEMU] RELEASE2014-06 - THREAD [#m]

    Volodia/Mercury is the biggest french noob ever .
    That guy block me in Facebook. *-*
    Newbie Level -> 554545%

    Sorry for my bad english I'm french too.
    But all the french community know It's a noob.
    So if an other can be follow the new release and not Mercury.

  5. #5
    Member Damien Jolly is offline
    MemberRank
    Apr 2014 Join Date
    89Posts

    Re: [PLUSEMU] RELEASE2014-06 - THREAD [#m]

    There's so many more structure changes than the flatcats. Have fun with your rooms and teleportes xo.

  6. #6
    Check http://arcturus.pw The General is offline
    DeveloperRank
    Aug 2011 Join Date
    7,610Posts

    Re: [PLUSEMU] RELEASE2014-06 - THREAD [#m]

    My eyes are bleeding when I look at that transform command.

  7. #7
    Account Upgraded | Title Enabled! Jamal7 is offline
    MemberRank
    Dec 2013 Join Date
    547Posts

    Re: [PLUSEMU] RELEASE2014-06 - THREAD [#m]

    Why don't you post this on the Plus 2.5 fixes thread? You are creating for every fix an thread? If the community did the same we had like millions of threads.

  8. #8
    son, i am disappointed Squashing is offline
    MemberRank
    Apr 2011 Join Date
    CaliforniaLocation
    683Posts

    Re: [PLUSEMU] RELEASE2014-06 - THREAD [#m]

    Quote Originally Posted by Sir Jamal View Post
    Why don't you post this on the Plus 2.5 fixes thread? You are creating for every fix an thread? If the community did the same we had like millions of threads.
    Let him make his own thread, it isn't that big of a deal, is it?

    - - - Updated - - -
    @VabboWorld Good luck with it

  9. #9
    Enthusiast M4L0UK4 is offline
    MemberRank
    Jun 2010 Join Date
    Тунис (гLocation
    48Posts

    Re: [PLUSEMU] RELEASE2014-06 - THREAD [#m]

    thank you :D
    Last edited by M4L0UK4; 01-09-14 at 11:21 PM.

  10. #10
    Proficient Member Seat is offline
    MemberRank
    Dec 2010 Join Date
    153Posts

    Re: [PLUSEMU] RELEASE2014-06 - THREAD [#m]

    Quote Originally Posted by RomualdGaming View Post
    Volodia/Mercury is the biggest french noob ever .
    That guy block me in Facebook. *-*
    Newbie Level -> 554545%

    Sorry for my bad english I'm french too.
    But all the french community know It's a noob.
    So if an other can be follow the new release and not Mercury.
    You are a Big Shit.
    Last edited by Seat; 02-09-14 at 11:51 AM.

  11. #11
    Enthusiast Ard0x is offline
    MemberRank
    Aug 2012 Join Date
    OrléansLocation
    41Posts

    Re: [PLUSEMU] RELEASE2014-06 - THREAD [#m]

    Quote Originally Posted by RomualdGaming View Post
    Volodia/Mercury is the biggest french noob ever .
    That guy block me in Facebook. *-*
    Newbie Level -> 554545%

    Sorry for my bad english I'm french too.
    But all the french community know It's a noob.
    So if an other can be follow the new release and not Mercury.
    Va dormir toi

  12. #12
    No need of reading this Rush Retros is offline
    MemberRank
    Dec 2013 Join Date
    DenmarkLocation
    365Posts

    Re: [PLUSEMU] RELEASE2014-06 - THREAD [#m]

    Quote Originally Posted by Sir Jamal View Post
    Why don't you post this on the Plus 2.5 fixes thread? You are creating for every fix an thread? If the community did the same we had like millions of threads.
    Like + rep hunting you know :) thats the reason i guess he thinks he can earn big by releasing this



Advertisement