Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

Official PlusEMU - Help Thread

Status
Not open for further replies.
◝(⁰▿⁰)◜Smile◝ (⁰▿⁰)◜
Developer
Joined
May 29, 2007
Messages
2,167
Reaction score
899
Post your help requests related to the PlusEMU emulator here.

Please use the SPOILER tags if you're going to post screenshots or a large chunk of code.
Also make sure your code is between the CODE tags to make it easier to read.

WARNING:
When replying to a post, QUOTE the post. There's a link under the user's post "Reply With Quote" - use it. If you're not replying to a question with quote, it will be considered as Spam.

Edit 01/05/16: Please! Make sure to add your emulator version, if it's either Habboon or any other edit, or original PlusEMU. There's a lot of PlusEmu edits out there, and we would like the questions get to be made in only one thread.
 
Last edited by a moderator:
Initiate Mage
Joined
Jul 13, 2016
Messages
1
Reaction score
0
I really need a takebadge command for my retro, since its so hard to get into the db remove right badges ect, so if anyone got a code on this command and can share it with me it would be so nice! If not you maybe can send me to a link where I can find a code or so!

//Hampus
 
Upvote 0
Joined
Apr 17, 2012
Messages
508
Reaction score
77
Bugg:

G69H8rH - Official PlusEMU - Help Thread - RaGEZONE Forums


Pathfinder is realy buggy? You can walk through each other if you walk in the same direction.

Make sure room blocking is disabled.
zAwLOUF - Official PlusEMU - Help Thread - RaGEZONE Forums
 

Attachments

You must be registered for see attachments list
Upvote 0
Newbie Spellweaver
Joined
Jan 7, 2016
Messages
85
Reaction score
8
Hi,


I am currently editing the EventAlert command in PlusEMU, and I want to add a button called Participate under the very last sentence. When they click 'Participate' they will go to the room where the event is hosted in. Also How do I get rid of the close button and the line above the close button? I also want to change the Frank avatar, to the person who is hosting the event. For a example. When I use the ;eha command, My avatar will be there Instead of Franks.


EventAlert.cs:
Code:
[COLOR=#474B51]public void Execute(GameClient Session, Room Room, string[] Params)[/COLOR]
[COLOR=#474B51]        {[/COLOR]
[COLOR=#474B51]            if (Session != null)[/COLOR]
[COLOR=#474B51]            {[/COLOR]
[COLOR=#474B51]                if (Room != null)[/COLOR]
[COLOR=#474B51]                {[/COLOR]
[COLOR=#474B51]                    if (Params.Length != 1)[/COLOR]
[COLOR=#474B51]                    {[/COLOR]
[COLOR=#474B51]                        Session.SendWhisper("Invalid command! :eventalert", 0);[/COLOR]
[COLOR=#474B51]                    }[/COLOR]
[COLOR=#474B51]                    else if (!PlusEnvironment.Event)[/COLOR]
[COLOR=#474B51]                    {[/COLOR]
[COLOR=#474B51]                        PlusEnvironment.GetGame().GetClientManager().SendMessage(new BroadcastMessageAlertComposer("There's currently an event going on right now!\n\nThe event is in <b> " + Session.GetHabbo().CurrentRoom.RoomData.Name + " </b>and it's currently hosted by <b>" + Session.GetHabbo().Username + "</b>!\n\nIf you want to participate in the event, click 'Participate!' located on the bottom of the notification!\r\n" + "" ), "");[/COLOR]
[COLOR=#474B51]                        PlusEnvironment.lastEvent = DateTime.Now;[/COLOR]
[COLOR=#474B51]                        PlusEnvironment.Event = true;[/COLOR]
[COLOR=#474B51]                    }[/COLOR]
[COLOR=#474B51]                    else[/COLOR]
[COLOR=#474B51]                    {[/COLOR]
[COLOR=#474B51]                        TimeSpan timeSpan = DateTime.Now - PlusEnvironment.lastEvent;[/COLOR]
[COLOR=#474B51]                        if (timeSpan.Hours >= 1)[/COLOR]
[COLOR=#474B51]                        {[/COLOR]
[COLOR=#474B51]                            PlusEnvironment.GetGame().GetClientManager().SendMessage(new BroadcastMessageAlertComposer(":follow " + Session.GetHabbo().Username + " for events! win prizes!\r\n- " + Session.GetHabbo().Username, ""), "");[/COLOR]
[COLOR=#474B51]                            PlusEnvironment.lastEvent = DateTime.Now;[/COLOR]
[COLOR=#474B51]                        }[/COLOR]
[COLOR=#474B51]                        else[/COLOR]
[COLOR=#474B51]                        {[/COLOR]
[COLOR=#474B51]                            int num = checked(30 - timeSpan.Minutes);[/COLOR]
[COLOR=#474B51]                            Session.SendWhisper("Event Cooldown! " + num + " minutes left until another event can be hosted.", 0);[/COLOR]

[COLOR=#474B51]                        }[/COLOR]
[COLOR=#474B51]                    }[/COLOR]
[COLOR=#474B51]                }[/COLOR]
[COLOR=#474B51]            }[/COLOR]
[COLOR=#474B51]        }[/COLOR]
[COLOR=#474B51]    }[/COLOR]
[COLOR=#474B51]}[/COLOR]

Picture:
Taiga - Official PlusEMU - Help Thread - RaGEZONE Forums


Thank you,
 
Upvote 0
Newbie Spellweaver
Joined
Jan 7, 2016
Messages
85
Reaction score
8
[PlusEMU] EventAlert goto room button

Hi,


I am currently editing the EventAlert command in PlusEMU, and I want to add a button called Participate under the very last sentence. When they click 'Participate' they will go to the room where the event is hosted in. Also How do I get rid of the close button and the line above the close button? I also want to change the Frank avatar, to the person who is hosting the event. For a example. When I use the ;eha command, My avatar will be there Instead of Franks.


EventAlert.cs:
Code:
[COLOR=#474B51]public void Execute(GameClient Session, Room Room, string[] Params)[/COLOR]
[COLOR=#474B51]       {[/COLOR]
[COLOR=#474B51]           if (Session != null)[/COLOR]
[COLOR=#474B51]           {[/COLOR]
[COLOR=#474B51]               if (Room != null)[/COLOR]
[COLOR=#474B51]               {[/COLOR]
[COLOR=#474B51]                   if (Params.Length != 1)[/COLOR]
[COLOR=#474B51]                   {[/COLOR]
[COLOR=#474B51]                       Session.SendWhisper("Invalid command! :eventalert", 0);[/COLOR]
[COLOR=#474B51]                   }[/COLOR]
[COLOR=#474B51]                   else if (!PlusEnvironment.Event)[/COLOR]
[COLOR=#474B51]                   {[/COLOR]
[COLOR=#474B51]                       PlusEnvironment.GetGame().GetClientManager().SendMessage(new BroadcastMessageAlertComposer("There's currently an event going on right now!\n\nThe event is in <b> " + Session.GetHabbo().CurrentRoom.RoomData.Name + " </b>and it's currently hosted by <b>" + Session.GetHabbo().Username + "</b>!\n\nIf you want to participate in the event, click 'Participate!' located on the bottom of the notification!\r\n" + "" ), "");[/COLOR]
[COLOR=#474B51]                       PlusEnvironment.lastEvent = DateTime.Now;[/COLOR]
[COLOR=#474B51]                       PlusEnvironment.Event = true;[/COLOR]
[COLOR=#474B51]                   }[/COLOR]
[COLOR=#474B51]                   else[/COLOR]
[COLOR=#474B51]                   {[/COLOR]
[COLOR=#474B51]                       TimeSpan timeSpan = DateTime.Now - PlusEnvironment.lastEvent;[/COLOR]
[COLOR=#474B51]                       if (timeSpan.Hours >= 1)[/COLOR]
[COLOR=#474B51]                       {[/COLOR]
[COLOR=#474B51]                           PlusEnvironment.GetGame().GetClientManager().SendMessage(new BroadcastMessageAlertComposer(":follow " + Session.GetHabbo().Username + " for events! win prizes!\r\n- " + Session.GetHabbo().Username, ""), "");[/COLOR]
[COLOR=#474B51]                           PlusEnvironment.lastEvent = DateTime.Now;[/COLOR]
[COLOR=#474B51]                       }[/COLOR]
[COLOR=#474B51]                       else[/COLOR]
[COLOR=#474B51]                       {[/COLOR]
[COLOR=#474B51]                           int num = checked(30 - timeSpan.Minutes);[/COLOR]
[COLOR=#474B51]                           Session.SendWhisper("Event Cooldown! " + num + " minutes left until another event can be hosted.", 0);[/COLOR]

[COLOR=#474B51]                       }[/COLOR]
[COLOR=#474B51]                   }[/COLOR]
[COLOR=#474B51]               }[/COLOR]
[COLOR=#474B51]           }[/COLOR]
[COLOR=#474B51]       }[/COLOR]
[COLOR=#474B51]   }[/COLOR]
[COLOR=#474B51]}[/COLOR]

Picture:
Taiga - Official PlusEMU - Help Thread - RaGEZONE Forums


Thank you,
 
Upvote 0
Newbie Spellweaver
Joined
Jul 10, 2016
Messages
26
Reaction score
0
Hi i still have the same problem:

ZuM0bzZ - Official PlusEMU - Help Thread - RaGEZONE Forums


It has something to do with the pathfinder?



I have the same problem when blocking is turned off/on you can always​ walk through each other.
 

Attachments

You must be registered for see attachments list
Upvote 0
Newbie Spellweaver
Joined
Jul 14, 2016
Messages
68
Reaction score
4
[HELP] PlusEMU Russia Alphabet [HELP]

Hello RageZone!

I use PlusEMU on my hotel sabbo.me, so back to the topic. I have a lot of russian users on my hotel, so I'd ask you guys if it's possible to ADD the russian alphabet (Cyrillic).

I only need that it is possible to write with Cyrillic (Russian) Language.

ADD my Skype: pokalen.sejt





 
Upvote 0
Newbie Spellweaver
Joined
Dec 25, 2015
Messages
51
Reaction score
1
R63B Client stuck on 76% Plus EMU

OK, so I was holding on to start up my retro my hotel, and when I load the client, it stops at 76% I have gone through external_variables, cms config and emu config. I use Plus EMU version 3.4.3.0
I also use PRODUCTION-201602082203-712976078
76% - Official PlusEMU - Help Thread - RaGEZONE Forums
 

Attachments

You must be registered for see attachments list
Upvote 0
Initiate Mage
Joined
Jul 14, 2016
Messages
2
Reaction score
0
Re: R63B Client stuck on 76% Plus EMU

I'm having the same issue! Let me know if you fix it.



Can you post your external variables? So I reference them.
 
Upvote 0
Newbie Spellweaver
Joined
Dec 25, 2015
Messages
51
Reaction score
1
Re: R63B Client stuck on 76% Plus EMU

I'm having the same issue! Let me know if you fix it.



Can you post your external variables? So I reference them.

Here is the external variables
Code:
activity.point.display.enabled=trueads.domain=185.125.169.147
akamai.debugging.enabled=false
app.review.triggers=purchase,respect
app.review.url.android=
app.review.url.ios=itms-apps://itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?type=Purple+Software&id=794866182
avatar.editor.character.update.url=${url.prefix}/profile/characterupdate
avatar.editor.url=${url.prefix}/profile
avatar.expressions_menu.enabled=true
avatar.ignored.bubble.enabled=true
avatar.jumping.enabled=false
avatar.signs.enabled=true
avatar.sitting.enabled=true
avatar.widget.enabled=true
avatareditor.allowclubtryout=1
avatareditor.promohabbos=http://185.125.169.147/swf/gamedata/habblet/xml/promo_habbos.xml
avatareditor.show.clubitems.dimmed=true
avatareditor.show.clubitems.first=true
avatareditor.support.sellablefurni=true
badge.display.excluded.badgeCodes=ADM,AMB,BAW01,BAW02,BAW03,BAW04
badge.image.path=//185.125.169.147/swf/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
cache.revision=2014-10-29 11:38:06
camera.available.effects=hearts_hardlight_02,stars_hardlight_02,security_hardlight,alien_hrd,bluemood_mpl,coffee_mpl,drops_mpl,glitter_hrd, misty_hrd,pinky_nrm,rusty_mpl,shiny_hrd,toxic_hrd, shadow_multiply_02,texture_overlay,frame_gold,frame_gray_4,frame_black_2,frame_wood_2,finger_nrm, color_1,color_2,color_3,color_4,dark_sepia,night_vision,x_ray,increase_saturation, decrease_saturation,hypersaturated,increase_contrast,decr_conrast,hue_bright_sat,Yellow,green_2
camera.competition.enabled=false
camera.effects.enabled=true
camera.enabled.android=1
camera.enabled.desktop=1
camera.enabled.ios=1
camera.enabled=false
camera.launch.ui.position=bottom-icons
camera.photo.publishing.enabled=true
catalog.direct.sms.buy.allowed=false
catalog.direct.sms.buy.length.days=5
catalog.direct.vip.buy.enabled=true
catalog.direct.vip.buy.promo=1
catalog.drag_and_drop=true
catalog.furniture.animation=true
catalog.gallery.lang=en
catalog.large=true
catalog.multiple.purchase.enabled=true
catalog.new.additions.page.open.disabled=false
catalog.new_direct_vip_buy_window=true
catalog.newgiftflow.enabled=true
catalog.pets.adjust_old=false
catalog.pets.enabled=true
catalog.purchase.gift.singleclick.confirmation=true
catalog.purchase.gift.singleclick=true
catalog.purchase.gift_wrapping.default_box_index=0
catalog.restricted_nodes=avatar,perm_costumes,perm_effects,bots,erasmus,erasmus1,erasmus2,erasmus3,spaces_grid,rentables_spaces,guild_frontpage,halloween14_lovelock,hot_furni
catalog.show.purse=false
catalog.vip.benefits.enabled=true
catalog.vip.buy.promo=1,3
catalog.vip.gift.promo=1,3
cfh.usercategories.withharasser=101,102,103,104,105,106,111,112,113,114,121,122,123,124,130,131,132,133,134,135,136,1024,1025,1026
cfh.usercategories.withnoharasser=101,102,103,104,105,106,111,112,113,114,121,122,123,124,130,131,132,133,134,135,136,1024,1025,1026
chat.history.disabled=false
chat.muting.enabled=false
chatreviewreporterfeedbackctrl.enabled=true
citizenship.vip.quest.promotion.enabled=true
citizenship.vip.tutorial.quest.campaign.name=VIPTutorials
client.allow.external.links=1
client.allow.facebook.like=1
client.connection.failed.url=${url.prefix}/client_connection_failed
client.fatal.error.url=${url.prefix}/flash_client_error
client.hotel_view.image=
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
connection.info.host.no=game-no.habbo.com
connection.info.name.no=Norge
connection.info.port.no=30000,993
currencyiconstyle.big.101.combo=55
currencyiconstyle.big.101=55
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=55
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
diamonds.enabled=true
disable.crypto=false
disabled.custom.chat.styles=1,2,8,9,10,18,21,22,23,24,25,26,27,28,30,31,32,33,34,35
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://185.125.169.147/swf/dcr/hof_furni/
effects.in.avatar.editor=true
effects.reactivate.on.room.entry=true
email.verification.url=${url.prefix}/settings/email
embed.showInRoomInfo=true
eventinfo.enabled=true
external.figurepartlist.txt=http://185.125.169.147/swf/gamedata/figuredata
extra_data_batches_enabled=true
extra_data_service_url=http://extradata.habbo.com/public/furni/
feed.badge_decorations.album=Feed_Badges
feed.badge_decorations.decoration_id=001
flash.dynamic.avatar.download.configuration=http://185.125.169.147/swf/gamedata/figuremap.xml
flash.dynamic.avatar.download.name.template=%libname%.swf
flash.dynamic.avatar.download.url=${flash.client.url}
flash.dynamic.download.name.template=%typeid%.swf
flash.dynamic.download.samples.template=mp3/sound_machine_sample_%typeid%.mp3
flash.dynamic.download.url=http://185.125.169.147/swf/dcr/hof_furni/
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=true
friendbar.playSnowStorm.friendsThreshold=1000
friendbar.requests.enabled=true
friendship.category.management.enabled=true
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=//185.125.169.147/gamecenter/
games.buy.x.games.enabled=false
games.buy.x.games.video.enabled=false
games.filter.enabled=false
games.highscores.enabled=true
games.highscores.scrolling.enabled=true
games.tokens.enabled=false
games_icon_enabled=true
gpu.inanimate_furni=xmas14_palm,xmas14_sunbeams
group.badge.url=http://185.125.169.147/swf/habbo-imaging/badge/%imagerdata%.gif
group.deletion.enabled=true
group.deletion.maximum.members=500
group.homepage.url=${url.prefix}/groups/%groupid%/id
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=340826
guide.help.new.user.tour.popup.delay=66
guides.enabled=true
guidetool.handle.chat_reviews=true
guidetool.handle.help_requests=true
guidetool.handle.tour_requests=false
habbo.gaming.api.enabled=true
habbo_club_buy_disabled=true
habboinfotool.url=http://theallseeingeye.sulake.com/ase/habbo/us/housekeeping/extra/hobba/scam_userinfo_new.action?searchParamName=username&database=Stats&searchParamValue=
habbopages.url=http://185.125.169.147/swf/gamedata/habbopages/
habboway.enabled=true
habboway.url=http://185.125.169.147/groups/officialhabboway
handitem.drop.enabled=true
handitem.give.enabled=true
handitem.give.pet.enabled=false
help.habboway.page.count=8
hotel.teaser=
hotelview.banner.url=http://185.125.169.147/swf/gamedata/supersecret
hover.name.enabled=false
identityTracking.enabled=true
identityinformationtool.url=http://theallseeingeye.sulake.com/ase/habbo/us/housekeeping/intra/hobba/identity_log.action?identityId=
image.library.badgepart.url=//185.125.169.147/swf/c_images/Badgeparts/
image.library.catalogue.url=//185.125.169.147/swf/c_images/catalogue/
image.library.playlist.url=//185.125.169.147/swf/c_images/playlist/
image.library.questing.url=//185.125.169.147/swf/c_images/Quests/
image.library.url.server=//185.125.169.147/swf/c_images/
image.library.url.stickers=//185.125.169.147/swf/c_images/
image.library.url=//185.125.169.147/swf/c_images/
image.library.xmas11.calendar.url=//185.125.169.147/swf/c_images/xmas11_quest_calendar/
infostand.motto.change.enabled=true
infostand.report.show=1
infostand.use.button.enabled=true
interstitial.enabled=false
interstitial.interval=120000
interstitial.max.displays=8
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.PALOOZAVOTE01CommunityGoal.widget=communitygoalvsmodevote
landing.view.PALOOZAVOTE02CommunityGoal.widget=communitygoalvsmodevote
landing.view.PALOOZAVOTE03CommunityGoal.widget=communitygoalvsmodevote
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.animalday.conf=caption,landing.view.animalday.header;bodytext,landing.view.animalday.body;catalogbutton,landing.view.animalday.button,pet_pterosaur
landing.view.animalday.layout=bitmap.uri,${image.library.url}web_promo_small/spromo_pet_discount20p.gif;bitmap.x,0;bitmap.y,0;container.height,250
landing.view.animalday.widget=generic
landing.view.army15CFrare.conf=caption,landing.view.army15CFrare.header;bodytext,landing.view.army15CFrare.body;catalogbutton,landing.view.army15CFrare.button,credit_exchange
landing.view.army15CFrare.layout=
landing.view.army15CFrare.widget=generic
landing.view.army15basecamp.conf=caption,landing.view.army15basecamp.header;bodytext,landing.view.army15basecamp.body;catalogbutton,landing.view.army15basecamp.button,army_basecamp
landing.view.army15basecamp.layout=bitmap.uri,${image.library.url}web_promo_small/spromo_army15_basecampbundle.png;bitmap.x,0;content.x,200;content.y,0;bitmap.y,0;container.height,250
landing.view.army15basecamp.widget=generic
landing.view.army15bundle3ROW.conf=caption,landing.view.army15bundle3.header;bodytext,landing.view.army15bundle3.body;catalogbutton,landing.view.army15bundle3.button,army_outdoorbundle
landing.view.army15bundle3ROW.layout=
landing.view.army15bundle3ROW.widget=generic
landing.view.army15clothes.conf=caption,landing.view.army15clothes.header;bodytext,landing.view.army15clothes.body;catalogbutton,landing.view.army15clothes.button,army_clothing
landing.view.army15clothes.layout=
landing.view.army15clothes.widget=generic
landing.view.army15diamondold.conf=caption,landing.view.army15diamondold.header;bodytext,landing.view.army15diamondold.body;catalogbutton,landing.view.army15diamondold.button,loyalty_rewards
landing.view.army15diamondold.layout=bitmap.uri,${image.library.url}web_promo_small/oldpaintdiamond.png;bitmap.x,0;content.x,170;content.y,0;bitmap.y,0;container.height,250
landing.view.army15diamondold.widget=generic
landing.view.army15diamondsnew.conf=caption,landing.view.army15diamondsnew.header;bodytext,landing.view.army15diamondsnew.body;catalogbutton,landing.view.army15diamondsnew.button,loyalty_rewards
landing.view.army15diamondsnew.layout=bitmap.uri,${image.library.url}web_promo_small/diamond_painting10_64_a_2_0.png;bitmap.x,0;bitmap.y,0;container.height,250
landing.view.army15diamondsnew.widget=generic
landing.view.army15furni.conf=caption,landing.view.army15furni.header;bodytext,landing.view.army15furni.body;spacing,2;internallinkbutton,landing.view.army15furni.button,catalog/warehouse/army_bc
landing.view.army15furni.layout=
landing.view.army15furni.widget=generic
landing.view.army15hqbundle.conf=caption,landing.view.army15hqbundle.header;bodytext,landing.view.army15hqbundle.body;catalogbutton,landing.view.army15hqbundle.button,army_hqbundle
landing.view.army15hqbundle.layout=bitmap.uri,${image.library.url}web_promo_small/spromo_army15_hqbundle.png;bitmap.x,0;content.x,200;content.y,0;bitmap.y,0;container.height,250
landing.view.army15hqbundle.widget=generic
landing.view.army15ltd.conf=caption,landing.view.army15ltd.header;bodytext,landing.view.army15ltd.body;catalogbutton,landing.view.cp15stpat.button,ler
landing.view.army15ltd.layout=bitmap.uri,${image.library.url}web_promo_small/spromo_army15_LTD1.png;bitmap.x,100;bitmap.y,100;container.height,250
landing.view.army15ltd.widget=generic
landing.view.army15ltdoff.conf=caption,landing.view.army15ltd.header;bodytext,landing.view.army15ltd.body;customtimer,false,0,0,landing.view.cp15ltd.button,landing.view.raretimer.timer.expired,2015-05-16 15:00
landing.view.army15ltdoff.layout=bitmap.uri,${image.library.url}web_promo_small/spromo_army15_LTD1.png;bitmap.x,100;bitmap.y,100;container.height,250
landing.view.army15ltdoff.widget=generic
landing.view.army15petdisc.conf=caption,landing.view.army15petdisc.header;bodytext,landing.view.army15petdisc.body;catalogbutton,landing.view.army15petdisc.button,pet_puppy
landing.view.army15petdisc.layout=
landing.view.army15petdisc.widget=generic
landing.view.army_canteenbundle2.conf=caption,landing.view.cp15banzai.header;bodytext,landing.view.cp15banzai.body;catalogbutton,landing.view.cp15banzai.button,army_canteenbundle
landing.view.army_canteenbundle2.layout=
landing.view.army_canteenbundle2.widget=generic
landing.view.avidPizzaEaterCommunityGoal.widget=communitygoal
landing.view.background_back.uri=http://185.125.169.147/swf/c_images/reception/meter_level_1_vip_icon_lympix.png
landing.view.background_background_hotel.uri=http://185.125.169.147/swf/c_images/reception/meter_level_1_vip_icon_lympix.png
landing.view.background_front.uri=http://185.125.169.147/swf/c_images/reception/meter_level_1_vip_icon_lympix.png
landing.view.background_gradient.uri=http://185.125.169.147/swf/c_images/reception/reception_flathotel_stretch.png
landing.view.background_gradient_top.uri=http://185.125.169.147/swf/c_images/reception/reception_flathotel_hotel_top.png
landing.view.background_horizon.uri=http://185.125.169.147/swf/c_images/reception/meter_level_1_vip_icon_lympix.png
landing.view.background_hotel_top.uri=http://185.125.169.147/swf/c_images/reception/reception_flathotel_hotel_top.png
landing.view.background_left.uri=http://185.125.169.147/swf/c_images/reception/reception_flathotel_hotel.png
landing.view.background_right.uri=http://185.125.169.147/swf/c_images/reception/default_new_bg_right.png
landing.view.backtofuture.conf=caption,landing.view.backtofuture.header;bodytext,landing.view.backtofuture.body;catalogbutton,landing.view.backtofuture.button,hot_furni
landing.view.backtofuture.layout=
landing.view.backtofuture.widget=generic
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=//185.125.169.147/swf/c_images/web_promo_small/promo_bonusrare16_1_3.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=
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/football_reception_backdrop_left.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,66020224
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.carnivale15bundle.conf=caption,landing.view.carnivale15bundle.header;bodytext,landing.view.carnivale15bundle.body;catalogbutton,landing.view.carnivale15bundle.button,carnival15_bundle
landing.view.carnivale15bundle.layout=bitmap.uri,${image.library.url}web_promo_small/spromo_carnivalbundle.png;bitmap.x,50;bitmap.y,120;bitmap.height,150
landing.view.carnivale15bundle.widget=generic
landing.view.carnivalintro.conf=caption,landing.view.carnivalintro.header;bodytext,landing.view.carnivalintro.body;link,landing.view.carnivalintro.button,http://185.125.169.147/articles
landing.view.carnivalintro.layout=
landing.view.carnivalintro.widget=generic
landing.view.cc14advent.conf=caption,landing.view.cc14advent.header;bodytext,landing.view.cc14advent.body;gotoroombutton,landing.view.cc14advent.button,68365658
landing.view.cc14advent.layout=
landing.view.cc14advent.widget=generic
landing.view.cc14babypets.conf=caption,landing.view.cc14babypets.header;bodytext,landing.view.cc14babypets.body;catalogbutton,landing.view.cc14babypets.button,babypets_info
landing.view.cc14babypets.layout=bitmap.uri,${image.library.url}web_promo_small/babypets_s_promo.png;bitmap.x,0;bitmap.y,140;container.height,290
landing.view.cc14babypets.widget=generic
landing.view.cc14bcbirthday.conf=caption,landing.view.cc14bcbirthday.header;bodytext,landing.view.cc14bcbirthday.body;spacing,2;internallinkbutton,landing.view.cc14bcbirthday.button,catalog/warehouse/bc_1year
landing.view.cc14bcbirthday.layout=
landing.view.cc14bcbirthday.widget=generic
landing.view.cc14bundle1.conf=caption,landing.view.cc14bundle1.header;bodytext,landing.view.cc14bundle1.body;catalogbutton,landing.view.cc14bundle1.button,xmas14_bundle1
landing.view.cc14bundle1.layout=bitmap.uri,${image.library.url}web_promo_small/spromo_xmas_bundle1.png;bitmap.x,0;bitmap.y,140;container.height,290
landing.view.cc14bundle1.widget=generic
landing.view.cc14bundle2.conf=caption,landing.view.cc14bundle2.header;bodytext,landing.view.cc14bundle2.body;spacing,2;catalogbutton,landing.view.cc14bundle2.button,xmas14_bundle2
landing.view.cc14bundle2.layout=bitmap.uri,${image.library.url}web_promo_small/spromo_xmas14_bundle2.png;bitmap.x,0;bitmap.y,140;container.height,290
landing.view.cc14bundle2.widget=generic
landing.view.cc14bundle3.conf=caption,landing.view.cc14bundle3.header;bodytext,landing.view.cc14bundle3.body;spacing,2;catalogbutton,landing.view.cc14bundle3.button,xmas14_bundle3
landing.view.cc14bundle3.layout=
landing.view.cc14bundle3.widget=generic
landing.view.cc14bundle4.conf=caption,landing.view.cc14bundle4.header;bodytext,landing.view.cc14bundle4.body;spacing,2;catalogbutton,landing.view.cc14bundle4.button,xmas14_bundle4
landing.view.cc14bundle4.layout=
landing.view.cc14bundle4.widget=generic
landing.view.cc14bundle6.conf=caption,landing.view.cc14bundle6.header;bodytext,landing.view.cc14bundle6.body;spacing,2;catalogbutton,landing.view.cc14bundle6.button,xmas14_bundle6
landing.view.cc14bundle6.layout=
landing.view.cc14bundle6.widget=generic
landing.view.cc14clothing.conf=caption,landing.view.cc14clothing.header;bodytext,landing.view.cc14clothing.body;spacing,2;catalogbutton,landing.view.cc14clothing.button,xmas14_clothing
landing.view.cc14clothing.layout=bitmap.uri,${image.library.url}web_promo_small/smallpromo_tradeableclothing.png;content.x,170;container.height,250
landing.view.cc14clothing.widget=generic
landing.view.cc14gnome.conf=caption,landing.view.cc14gnome.header;bodytext,landing.view.cc14gnome.body;catalogbutton,landing.view.cc14gnome.button,xmas14_gnome
landing.view.cc14gnome.layout=
landing.view.cc14gnome.widget=generic
landing.view.cc14ltd.conf=caption,landing.view.cc14ltd.header;bodytext,landing.view.cc14ltd.body;spacing,2;catalogbutton,landing.view.cc14ltd.button,ler
landing.view.cc14ltd.layout=bitmap.uri,${image.library.url}web_promo_small/xmas14ltd_s_promo.png;bitmap.x,0;bitmap.y,0;container.height,250
landing.view.cc14ltd.widget=generic
landing.view.cc14ltdcount.conf=caption,landing.view.cc14ltd.header;bodytext,landing.view.cc14ltd.body;spacing,2;customtimer,false,0,0,landing.view.hu14rare3.timer,landing.view.raretimer.timer.expired,2014-12-20 12:00
landing.view.cc14ltdcount.layout=bitmap.uri,${image.library.url}web_promo_small/xmas14ltd_s_promo.png;bitmap.x,0;bitmap.y,0;container.height,250
landing.view.cc14ltdcount.widget=generic
landing.view.cc14newfurni.conf=caption,landing.view.cc14newfurni.header;bodytext,landing.view.cc14newfurni.body;catalogbutton,landing.view.cc14newfurni.button,xmas14
landing.view.cc14newfurni.layout=bitmap.uri,${image.library.url}web_promo_small/xmas14_generic_spromo.png;bitmap.x,0;bitmap.y,150;container.height,300
landing.view.cc14newfurni.widget=generic
landing.view.cc14rares.conf=caption,landing.view.cc14rares.header;bodytext,landing.view.cc14rares.body;catalogbutton,landing.view.cc14rares.button,xmas14_rares
landing.view.cc14rares.layout=bitmap.uri,${image.library.url}web_promo_small/xmas14rare2_s_promo.png;bitmap.x,0;bitmap.y,0;container.height,250
landing.view.cc14rares.widget=generic
landing.view.cc14rarescount.conf=caption,landing.view.cc14rares.header;bodytext,landing.view.cc14rares.body;spacing,2;customtimer,false,0,0,landing.view.hu14rare3.timer,landing.view.raretimer.timer.expired,2014-12-13 12:00
landing.view.cc14rarescount.layout=bitmap.uri,${image.library.url}web_promo_small/xmas14rare2_s_promo.png;bitmap.x,0;bitmap.y,0;container.height,250
landing.view.cc14rarescount.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.cny15bundle.conf=caption,landing.view.cny15bundle.header;bodytext,landing.view.cny15bundle.body;catalogbutton,landing.view.cny15bundle.button,cny15_bundle
landing.view.cny15bundle.layout=bitmap.uri,${image.library.url}web_promo_small/spromo_cnybundle.png;bitmap.x,50;bitmap.y,120;bitmap.height,150
landing.view.cny15bundle.widget=generic
landing.view.cny15furni.conf=caption,landing.view.cny15furni.header;bodytext,landing.view.cny15furni.body;internallinkbutton,landing.view.cny15furni.button,catalog/warehouse/bc_cny
landing.view.cny15furni.layout=
landing.view.cny15furni.widget=generic
landing.view.com_newweb.conf=caption,landing.view.com_newweb.header;bodytext,landing.view.com_newweb.body;spacing,2;link,landing.view.com_newweb.button,http://185.125.169.147/news/introducing-new-habbo-web-2015
landing.view.com_newweb.layout=
landing.view.com_newweb.widget=generic
landing.view.com_photo_sharing.conf=caption,landing.view.com_photo_sharing.header;bodytext,landing.view.com_photo_sharing.body;internallinkbutton,landing.view.com_photo_sharing.button,navigator/goto/home
landing.view.com_photo_sharing.layout=
landing.view.com_photo_sharing.widget=generic
landing.view.common.etchingcolor=ffffff
landing.view.common.etchingposition=top
landing.view.common.textcolor=000000
landing.view.community.catalog.target=bc_university
landing.view.community.challenge.vote.url=http://www.facebook.com/habbo
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.cp15banzaiROW.conf=caption,landing.view.cp15banzai.header;bodytext,landing.view.cp15banzai.body;catalogbutton,landing.view.cp15grunge.button,cyber_bb
landing.view.cp15banzaiROW.layout=bitmap.uri,${image.library.url}web_promo_small/spromo_cyberbanzai.png;bitmap.x,0;bitmap.y,140;container.height,290
landing.view.cp15banzaiROW.widget=generic
landing.view.cp15chooseteam.conf=caption,landing.view.cp15chooseteam.header;bodytext,landing.view.cp15chooseteam.body;spacing,2;requestbadgebutton,landing.view.cp15chooseshf.button,shf,0,0,false;requestbadgebuttonsecond,landing.view.cp15choosecp.button,cp,0,0,false
landing.view.cp15chooseteam.layout=bitmap.uri,${image.library.url}web_promo_small/spromo_cpunk_generic2.png;bitmap.x,0;bitmap.y,0;container.height,250
landing.view.cp15chooseteam.widget=generic
landing.view.cp15clothing.conf=caption,landing.view.cp15clothing.header;bodytext,landing.view.cp15clothing.body;catalogbutton,landing.view.cp15clothing.button,cyber_clothing
landing.view.cp15clothing.layout=bitmap.uri,${image.library.url}web_promo_small/cypunkclothing_s_promo.png;bitmap.x,0;bitmap.y,140;container.height,290
landing.view.cp15clothing.widget=generic
landing.view.cp15cyberbundleROW.conf=caption,landing.view.cp15cyberbundle.header;bodytext,landing.view.cp15cyberbundle.body;spacing,2;catalogbutton,landing.view.cp15cyberbundle.button,cyber_bundle
landing.view.cp15cyberbundleROW.layout=
landing.view.cp15cyberbundleROW.widget=generic
landing.view.cp15grungeROW.conf=caption,landing.view.cp15grunge.header;bodytext,landing.view.cp15grunge.body;catalogbutton,landing.view.cp15grunge.button,cyber_grunge
landing.view.cp15grungeROW.layout=bitmap.uri,${image.library.url}web_promo_small/spromo_cpunk15_grungebundle.png;bitmap.x,0;bitmap.y,140;container.height,290
landing.view.cp15grungeROW.widget=generic
landing.view.cp15ltd.conf=caption,landing.view.cp15ltd.header;bodytext,landing.view.cp15ltd.body;spacing,2;catalogbutton,landing.view.cp15stpat.button,ler
landing.view.cp15ltd.layout=
landing.view.cp15ltd.widget=generic
landing.view.cp15ltdcount.conf=caption,landing.view.cp15ltd.header;bodytext,landing.view.cp15ltd.body;spacing,2;customtimer,false,0,0,landing.view.cp15ltd.button,landing.view.raretimer.timer.expired,2015-03-14 15:00
landing.view.cp15ltdcount.layout=
landing.view.cp15ltdcount.widget=generic
landing.view.cp15stpatROW.conf=caption,landing.view.cp15stpat.header;bodytext,landing.view.cp15stpat.body;catalogbutton,landing.view.cp15stpat.button,cyber_stpat
landing.view.cp15stpatROW.layout=bitmap.uri,${image.library.url}web_promo_small/spromo_lepbund15.png;bitmap.x,0;bitmap.y,140;container.height,290
landing.view.cp15stpatROW.widget=generic
landing.view.cp15wired.conf=caption,landing.view.cp15wired.header;bodytext,landing.view.cp15wired.body;spacing,2;catalogbutton,landing.view.cp15wired.button,category_wired
landing.view.cp15wired.layout=
landing.view.cp15wired.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,66083316
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.darkduck.conf=caption,landing.view.darkduck.header;bodytext,landing.view.darkduck.body;internallinkbutton,landing.view.darkduck.button,games/play/elisa_habbo_stories
landing.view.darkduck.layout=bitmap.uri,${image.library.url}album3236/dark_duck_landing.gif,bitmap.x,0;bitmap.y,0;container.height,200
landing.view.darkduck.widget=generic
landing.view.dcex15.conf=caption,landing.view.dcex15.header;bodytext,landing.view.dcex15.body;credithabbletbutton,landing.view.dcex15.button
landing.view.dcex15.layout=
landing.view.dcex15.widget=generic
landing.view.deep_sea_bundle.conf=caption,landing.view.deep_sea_bundle.header;bodytext,landing.view.deep_sea_bundle.body;catalogbutton,landing.view.deep_sea_bundle.button,deep_sea_bundle
landing.view.deep_sea_bundle.layout=
landing.view.deep_sea_bundle.widget=generic
landing.view.deepsearoombundle.conf=caption,landing.view.deepsearoombundle.header;bodytext,landing.view.deepsearoombundle.body;spacing,2;catalogbutton,landing.view.deepsearoombundle.button,wrestling_bundle
landing.view.deepsearoombundle.layout=bitmap.uri,${image.library.url}catalogue/jul14_lostcity_internal.gif;bitmap.x,0;bitmap.y,150;container.height,310
landing.view.deepsearoombundle.widget=generic
landing.view.diamondland.conf=caption,landing.view.diamondland.header;bodytext,landing.view.diamondland.body;spacing,2;link,landing.view.diamondland.button,http://185.125.169.147/articles/3261-goodbye-loyalty-pointshello-diamonds
landing.view.diamondland.layout=
landing.view.diamondland.widget=generic
landing.view.dino15_throne.conf=caption,landing.view.jurassic15throne.header;bodytext,landing.view.jurassic15throne.body;catalogbutton,landing.view.cp15stpat.button,ler
landing.view.dino15_throne.layout=bitmap.uri,${image.library.url}web_promo_small/spromo_dino15_LTD2.png;bitmap.x,50;bitmap.y,0;container.height,250
landing.view.dino15_throne.widget=generic
landing.view.dino15_throneoff.conf=caption,landing.view.jurassic15throne.header;bodytext,landing.view.jurassic15throne.body;customtimer,false,0,0,landing.view.cp15ltd.button,landing.view.raretimer.timer.expired,2015-06-20 15:00
landing.view.dino15_throneoff.layout=bitmap.uri,${image.library.url}web_promo_small/spromo_dino15_LTD2.png;bitmap.x,50;bitmap.y,0;container.height,250
landing.view.dino15_throneoff.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=
landing.view.dynamic.slot.3.layout=
landing.view.dynamic.slot.3.widget=widgetcontainer
landing.view.dynamic.slot.4.conf=
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=
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=
landing.view.dynamic.slot.6.conf=
landing.view.dynamic.slot.6.widget=
landing.view.eas15alienbundleLATAM.conf=caption,landing.view.eas15alienbundle.header;bodytext,landing.view.eas15alienbundle.body;catalogbutton,landing.view.eas15alienbundle.button,candyland15_alienbundle2
landing.view.eas15alienbundleLATAM.layout=
landing.view.eas15alienbundleLATAM.widget=generic
landing.view.eas15alienbundleROW.conf=caption,landing.view.eas15alienbundle.header;bodytext,landing.view.eas15alienbundle.body;catalogbutton,landing.view.eas15alienbundle.button,candyland15_alienbundle
landing.view.eas15alienbundleROW.layout=
landing.view.eas15alienbundleROW.widget=generic
landing.view.eas15androidvid.conf=caption,landing.view.eas15androidvid.header;bodytext,landing.view.eas15androidvid.body;link,landing.view.cc14bundle1.button,http://play.google.com/store/apps/details?id=air.com.sulake.habboair
landing.view.eas15androidvid.layout=bitmap.uri,${image.library.url}web_promo_small/spromo_android.png;bitmap.x,0;bitmap.y,140;container.height,290
landing.view.eas15androidvid.widget=generic
landing.view.eas15bcfurni.conf=caption,landing.view.eas15bcfurni.header;bodytext,landing.view.eas15bcfurni.body;internallinkbutton,landing.view.eas15bcfurni.button,catalog/warehouse/bc_candyland15
landing.view.eas15bcfurni.layout=bitmap.uri,${image.library.url}web_promo_small/candylandbc_small_promo.png;bitmap.x,0;bitmap.y,0;container.height,250
landing.view.eas15bcfurni.widget=generic
landing.view.eas15bonbonbundleLATAM.conf=caption,landing.view.eas15bonbonbundle.header;bodytext,landing.view.eas15bonbonbundle.body;catalogbutton,landing.view.eas15bonbonbundle.button,candyland15_bonbonbundle2
landing.view.eas15bonbonbundleLATAM.layout=bitmap.uri,${image.library.url}web_promo_small/spromo_cland_bundle.png;bitmap.x,0;bitmap.y,140;container.height,290
landing.view.eas15bonbonbundleLATAM.widget=generic
landing.view.eas15bonbonbundleROW.conf=caption,landing.view.eas15bonbonbundle.header;bodytext,landing.view.eas15bonbonbundle.body;catalogbutton,landing.view.eas15bonbonbundle.button,candyland15_bonbonbundle
landing.view.eas15bonbonbundleROW.layout=bitmap.uri,${image.library.url}web_promo_small/spromo_cland_bundle.png;bitmap.x,0;bitmap.y,140;container.height,290
landing.view.eas15bonbonbundleROW.widget=generic
landing.view.eas15doublecreds.conf=caption,landing.view.eas15doublecreds.header;bodytext,landing.view.eas15doublecreds.body;internallinkbutton,landing.view.eas15doublecreds.button,habblet/open/credits
landing.view.eas15doublecreds.layout=bitmap.uri,${image.library.url}web_promo_small/doublecoins_promo.png;bitmap.x,0;bitmap.y,0;container.height,290
landing.view.eas15doublecreds.widget=generic
landing.view.eas15flowerES.conf=caption,landing.view.eas15flower.header;bodytext,landing.view.eas15flower.body;catalogbutton,landing.view.eas15flower.button,candyland15_oldeaster2a
landing.view.eas15flowerES.layout=
landing.view.eas15flowerES.widget=generic
landing.view.eas15flowerROW.conf=caption,landing.view.eas15flower.header;bodytext,landing.view.eas15flower.body;catalogbutton,landing.view.eas15flower.button,candyland15_oldeaster2
landing.view.eas15flowerROW.layout=
landing.view.eas15flowerROW.widget=generic
landing.view.eas15hipadROW.conf=caption,landing.view.eas15hipad.header;bodytext,landing.view.eas15hipad.body;catalogbutton,landing.view.eas15hipad.button,candyland15_hipadbundle
landing.view.eas15hipadROW.layout=bitmap.uri,${image.library.url}web_promo_small/spromo_hipadg.png;bitmap.x,0;bitmap.y,140;container.height,290
landing.view.eas15hipadROW.widget=generic
landing.view.eas15obbah.conf=caption,landing.view.eas15obbah.header;bodytext,landing.view.eas15obbah.body;catalogbutton,landing.view.eas15obbah.button,candyland15_obbah
landing.view.eas15obbah.layout=
landing.view.eas15obbah.widget=generic
landing.view.eas15obbahrare.conf=caption,landing.view.eas15obbahrare.header;bodytext,landing.view.eas15obbahrare.body;catalogbutton,landing.view.eas15obbahrare.button,candyland15_obbah_rare
landing.view.eas15obbahrare.layout=
landing.view.eas15obbahrare.widget=generic
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,66417786
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.easter15candy1.conf=caption,landing.view.easter15candy1.header;bodytext,landing.view.easter15candy1.body;spacing,2;requestbadgebutton,landing.view.easter15candy1.button,request1,0,0,false
landing.view.easter15candy1.layout=bitmap.uri,${image.library.url}album1584/SCE01.gif;bitmap.x,200;bitmap.y,100;bitmap.height,150
landing.view.easter15candy1.widget=generic
landing.view.easter15candy10.conf=caption,landing.view.easter15candy10.header;bodytext,landing.view.easter15candy10.body;spacing,2;requestbadgebutton,landing.view.easter15candy10.button,request10,0,0,false
landing.view.easter15candy10.layout=bitmap.uri,${image.library.url}album1584/SCE19.gif;bitmap.x,200;bitmap.y,100;bitmap.height,150
landing.view.easter15candy10.widget=generic
landing.view.easter15candy2.conf=caption,landing.view.easter15candy2.header;bodytext,landing.view.easter15candy2.body;spacing,2;requestbadgebutton,landing.view.easter15candy2.button,request2,0,0,false
landing.view.easter15candy2.layout=bitmap.uri,${image.library.url}album1584/SCE03.gif;bitmap.x,200;bitmap.y,100;bitmap.height,150
landing.view.easter15candy2.widget=generic
landing.view.easter15candy3.conf=caption,landing.view.easter15candy3.header;bodytext,landing.view.easter15candy3.body;spacing,2;requestbadgebutton,landing.view.easter15candy3.button,request3,0,0,false
landing.view.easter15candy3.layout=bitmap.uri,${image.library.url}album1584/SCE05.gif;bitmap.x,200;bitmap.y,100;bitmap.height,150
landing.view.easter15candy3.widget=generic
landing.view.easter15candy4.conf=caption,landing.view.easter15candy4.header;bodytext,landing.view.easter15candy4.body;spacing,2;requestbadgebutton,landing.view.easter15candy4.button,request4,0,0,false
landing.view.easter15candy4.layout=bitmap.uri,${image.library.url}album1584/SCE07.gif;bitmap.x,200;bitmap.y,100;bitmap.height,150
landing.view.easter15candy4.widget=generic
landing.view.easter15candy5.conf=caption,landing.view.easter15candy5.header;bodytext,landing.view.easter15candy5.body;spacing,2;requestbadgebutton,landing.view.easter15candy5.button,request5,0,0,false
landing.view.easter15candy5.layout=bitmap.uri,${image.library.url}album1584/SCE09.gif;bitmap.x,200;bitmap.y,100;bitmap.height,150
landing.view.easter15candy5.widget=generic
landing.view.easter15candy6.conf=caption,landing.view.easter15candy6.header;bodytext,landing.view.easter15candy6.body;spacing,2;requestbadgebutton,landing.view.easter15candy6.button,request6,0,0,false
landing.view.easter15candy6.layout=bitmap.uri,${image.library.url}album1584/SCE11.gif;bitmap.x,200;bitmap.y,100;bitmap.height,150
landing.view.easter15candy6.widget=generic
landing.view.easter15candy7.conf=caption,landing.view.easter15candy7.header;bodytext,landing.view.easter15candy7.body;spacing,2;requestbadgebutton,landing.view.easter15candy7.button,request7,0,0,false
landing.view.easter15candy7.layout=bitmap.uri,${image.library.url}album1584/SCE13.gif;bitmap.x,200;bitmap.y,100;bitmap.height,150
landing.view.easter15candy7.widget=generic
landing.view.easter15candy8.conf=caption,landing.view.easter15candy8.header;bodytext,landing.view.easter15candy8.body;spacing,2;requestbadgebutton,landing.view.easter15candy8.button,request8,0,0,false
landing.view.easter15candy8.layout=bitmap.uri,${image.library.url}album1584/SCE15.gif;bitmap.x,200;bitmap.y,100;bitmap.height,150
landing.view.easter15candy8.widget=generic
landing.view.easter15candy9.conf=caption,landing.view.easter15candy9.header;bodytext,landing.view.easter15candy9.body;spacing,2;requestbadgebutton,landing.view.easter15candy9.button,request9,0,0,false
landing.view.easter15candy9.layout=bitmap.uri,${image.library.url}album1584/SCE17.gif;bitmap.x,200;bitmap.y,100;bitmap.height,150
landing.view.easter15candy9.widget=generic
landing.view.easter15ltd1.conf=caption,landing.view.eas15LTD.header;bodytext,landing.view.eas15LTD.body;catalogbutton,landing.view.cp15stpat.button,ler
landing.view.easter15ltd1.layout=bitmap.uri,${image.library.url}web_promo_small/spromo_cland15_4.png;bitmap.x,0;bitmap.y,0;container.height,250
landing.view.easter15ltd1.widget=generic
landing.view.easter15ltd1off.conf=caption,landing.view.eas15LTD.header;bodytext,landing.view.eas15LTD.body;customtimer,false,0,0,landing.view.cp15ltd.button,landing.view.raretimer.timer.expired,2015-04-30 15:00
landing.view.easter15ltd1off.layout=bitmap.uri,${image.library.url}web_promo_small/spromo_cland15_4.png;bitmap.x,0;bitmap.y,0;container.height,250
landing.view.easter15ltd1off.widget=generic
landing.view.easterroombundle.conf=caption,landing.view.easterroombundle.header;bodytext,landing.view.easterroombundle.body;gotoroombutton,landing.view.easterroombundle.button,66364209
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,65819134
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.epicpet.conf=caption,landing.view.epicpet.header;bodytext,landing.view.epicpet.body;spacing,2;catalogbutton,landing.view.epicpet.button,epic_pet_presale
landing.view.epicpet.layout=
landing.view.epicpet.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.erasmusbundle.conf=caption,landing.view.erasmusbundle.header;bodytext,landing.view.erasmusbundle.body;spacing,2;catalogbutton,landing.view.erasmusbundle.button,erasmus
landing.view.erasmusbundle.layout=bitmap.uri,${image.library.url}web_promo_small/small_promo_erasmus_bundle4.png;bitmap.x,0;bitmap.y,140;container.height,290
landing.view.erasmusbundle.widget=generic
landing.view.exhabboremoval.conf=caption,landing.view.exhabboremoval.header;bodytext,landing.view.exhabboremoval.body;link,landing.view.exhabboremoval.button,http://help.habbo.com/entries/90238258-Introducing-the-NEW-Habbo-web
landing.view.exhabboremoval.layout=
landing.view.exhabboremoval.widget=generic
landing.view.friendshipChallengeCommunityGoal.widget=communitygoal
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.gallery_bundle1.conf=caption,landing.view.gallery_bundle1.header;bodytext,landing.view.gallery_bundle1.body;catalogbutton,landing.view.gallery_bundle1.button,gallery_bundle1
landing.view.gallery_bundle1.layout=bitmap.uri,${image.library.url}web_promo_small/spromo_diagal15_01.png;bitmap.x,0;bitmap.y,0;container.height,250
landing.view.gallery_bundle1.widget=generic
landing.view.gallery_bundle2.conf=caption,landing.view.gallery_bundle2.header;bodytext,landing.view.gallery_bundle2.body;catalogbutton,landing.view.gallery_bundle2.button,gallery_bundle2
landing.view.gallery_bundle2.layout=
landing.view.gallery_bundle2.widget=generic
landing.view.gamereview.conf=caption,landing.view.gamereview.header;bodytext,landing.view.gamereview.body;spacing,2;link,landing.view.gamereview.button,http://185.125.169.147/articles/3171-room-review-day
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,habblet/open/news
landing.view.generic.layout=
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.gnome_habitat.conf=caption,landing.view.gnome_habitat.header;bodytext,landing.view.gnome_habitat.body;catalogbutton,landing.view.gnome_habitat.button,gnome_habitat
landing.view.gnome_habitat.layout=
landing.view.gnome_habitat.widget=generic
landing.view.gnome_habitat2.conf=caption,landing.view.gnome_habitat.header;bodytext,landing.view.gnome_habitat.body;catalogbutton,landing.view.gnome_habitat.button,gnome_habitat
landing.view.gnome_habitat2.layout=bitmap.uri,${image.library.url}web_promo_small/spromo_gnomepetbundle.png;bitmap.x,0;bitmap.y,0;container.height,250
landing.view.gnome_habitat2.widget=generic
landing.view.goldfurnibundle.conf=caption,landing.view.goldfurnibundle.header;bodytext,landing.view.goldfurnibundle.body;catalogbutton,landing.view.goldfurnibundle.button,golden_arctic_bundle
landing.view.goldfurnibundle.layout=bitmap.uri,${image.library.url}web_promo_small/spromo_goldbundle.png;bitmap.x,50;bitmap.y,0;container.height,250
landing.view.goldfurnibundle.widget=generic
landing.view.goldfurnicrackable.conf=caption,landing.view.goldfurnicrackable.header;bodytext,landing.view.goldfurnicrackable.body;catalogbutton,landing.view.goldfurnicrackable.button,rare_golden_arctic
landing.view.goldfurnicrackable.layout=bitmap.uri,${image.library.url}web_promo_small/spromo_goldgnome.png;bitmap.x,50;bitmap.y,0;container.height,250
landing.view.goldfurnicrackable.widget=generic
landing.view.goldfurnilaunch.conf=caption,landing.view.goldfurnilaunch.header;bodytext,landing.view.goldfurnilaunch.body;
landing.view.goldfurnilaunch.layout=bitmap.uri,${image.library.url}web_promo_small/spromo_goldgnome.png;bitmap.x,50;bitmap.y,0;container.height,150
landing.view.goldfurnilaunch.widget=generic
landing.view.habbo15balloon.conf=caption,landing.view.habbo15balloon.header;bodytext,landing.view.habbo15balloon.body;link,landing.view.habbo15balloon.button,http://185.125.169.147/news/how-to-pop-birthday-balloons
landing.view.habbo15balloon.layout=bitmap.uri,${image.library.url}web_promo_small/read_all_about_it_small_promo.png;bitmap.x,0;bitmap.y,0;container.height,250
landing.view.habbo15balloon.widget=generic
landing.view.habbo15balloonLast.conf=caption,landing.view.habbo15balloonLast.header;bodytext,landing.view.habbo15balloonLast.body;catalogbutton,landing.view.habbo15balloonLast.button,15th_rareballoon
landing.view.habbo15balloonLast.layout=bitmap.uri,${image.library.url}web_promo_small/read_all_about_it_small_promo.png;bitmap.x,0;bitmap.y,0;container.height,250
landing.view.habbo15balloonLast.widget=generic
landing.view.habbo15credits.conf=caption,landing.view.habbo15credits.header;bodytext,landing.view.habbo15credits.body;credithabbletbutton,landing.view.habbo15credits.button
landing.view.habbo15credits.layout=
landing.view.habbo15credits.widget=generic
landing.view.habbo15fallbundle.conf=caption,landing.view.habbo15fallbundle.header;bodytext,landing.view.habbo15fallbundle.body;catalogbutton,landing.view.habbo15fallbundle.button,fall_bundle
landing.view.habbo15fallbundle.layout=bitmap.uri,${image.library.url}web_promo_small/spromo_fallbundle.png;bitmap.x,50;bitmap.y,0;container.height,250
landing.view.habbo15fallbundle.widget=generic
landing.view.habbo15garden.conf=caption,landing.view.habbo15garden.header;bodytext,landing.view.habbo15garden.body;catalogbutton,landing.view.habbo15garden.button,15th_bundle3
landing.view.habbo15garden.layout=
landing.view.habbo15garden.widget=generic
landing.view.habbo15gothic.conf=caption,landing.view.habbo15gothic.header;bodytext,landing.view.habbo15gothic.body;catalogbutton,landing.view.habbo15gothic.button,15th_bundle1
landing.view.habbo15gothic.layout=
landing.view.habbo15gothic.widget=generic
landing.view.habbo15launch.conf=caption,landing.view.habbo15launch.header;bodytext,landing.view.habbo15launch.body
landing.view.habbo15launch.layout=
landing.view.habbo15launch.widget=generic
landing.view.habbo15palooza.conf=caption,landing.view.habbo15palooza.header;bodytext,landing.view.habbo15palooza.body;catalogbutton,landing.view.habbo15palooza.button,palooza2014
landing.view.habbo15palooza.layout=
landing.view.habbo15palooza.widget=generic
landing.view.habbo15paris.conf=caption,landing.view.habbo15paris.header;bodytext,landing.view.habbo15paris.body;catalogbutton,landing.view.habbo15paris.button,paris15
landing.view.habbo15paris.layout=
landing.view.habbo15paris.widget=generic
landing.view.habbo15parisbundle.conf=caption,landing.view.habbo15parisbundle.header;bodytext,landing.view.habbo15parisbundle.body;catalogbutton,landing.view.habbo15parisbundle.button,paris15_bundle
landing.view.habbo15parisbundle.layout=bitmap.uri,${image.library.url}web_promo_small/spromo_parisbundle.png;bitmap.x,50;bitmap.y,0;container.height,250
landing.view.habbo15parisbundle.widget=generic
landing.view.habbo15rare.conf=caption,landing.view.habbo15rare.header;bodytext,landing.view.habbo15rare.body;catalogbutton,landing.view.habbo15rare.button,15th_rareballoon
landing.view.habbo15rare.layout=bitmap.uri,${image.library.url}web_promo_small/spromo_h15generic1.png;bitmap.x,0;bitmap.y,0;container.height,250
landing.view.habbo15rare.widget=generic
landing.view.habbo15school.conf=caption,landing.view.habbo15school.header;bodytext,landing.view.habbo15school.body;catalogbutton,landing.view.habbo15school.button,habbouni
landing.view.habbo15school.layout=
landing.view.habbo15school.widget=generic
landing.view.habbo15schoolbundle.conf=caption,landing.view.habbo15schoolbundle.header;bodytext,landing.view.habbo15schoolbundle.body;catalogbutton,landing.view.habbo15parisbundle.button,back_school_bundle
landing.view.habbo15schoolbundle.layout=bitmap.uri,${image.library.url}web_promo_small/spromo_backtoschoolbundle1.png;bitmap.x,50;bitmap.y,0;container.height,250
landing.view.habbo15schoolbundle.widget=generic
landing.view.habbo15steampunk.conf=caption,landing.view.habbo15steampunk.header;bodytext,landing.view.habbo15steampunk.body;catalogbutton,landing.view.habbo15steampunk.button,15th_bundle4
landing.view.habbo15steampunk.layout=
landing.view.habbo15steampunk.widget=generic
landing.view.habbo15tribe.conf=caption,landing.view.habbo15tribe.header;bodytext,landing.view.habbo15tribe.body;catalogbutton,landing.view.habbo15tribe.button,15th_bundle2
landing.view.habbo15tribe.layout=
landing.view.habbo15tribe.widget=generic
landing.view.habbo15uni.conf=caption,landing.view.habbo15uni.header;bodytext,landing.view.habbo15uni.body;catalogbutton,landing.view.habbo15uni.button,15th_bundle5
landing.view.habbo15uni.layout=
landing.view.habbo15uni.widget=generic
landing.view.habbocalypseCommunityGoal.widget=communitygoal
landing.view.habboplex.conf=caption,landing.view.habboplex.header;bodytext,landing.view.habboplex.body;gotoroombutton,landing.view.habboplex.button,65155864
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.habboversaryCommunityGoal.widget=communitygoal
landing.view.hb14daydeadbun.conf=caption,landing.view.hb14daydeadbun.header;bodytext,landing.view.hb14daydeadbun.body;catalogbutton,landing.view.hb14daydeadbun.button,dayofthedead_bundle
landing.view.hb14daydeadbun.layout=bitmap.uri,${image.library.url}web_promo_small/Day_of_the_Dead_small_promo.png;bitmap.x,0;bitmap.y,140;container.height,290
landing.view.hb14daydeadbun.widget=generic
landing.view.hb14daydeadfurni.conf=caption,landing.view.hb14daydeadfurni.header;bodytext,landing.view.hb14daydeadfurni.body;spacing,2;catalogbutton,landing.view.hu14furni.button,halloween14
landing.view.hb14daydeadfurni.layout=
landing.view.hb14daydeadfurni.widget=generic
landing.view.hb14daydeadrares.conf=caption,landing.view.hb14daydeadrares.header;bodytext,landing.view.hb14daydeadrares.body;catalogbutton,landing.view.hb14daydeadrares.button,habboween14_rares
landing.view.hb14daydeadrares.layout=
landing.view.hb14daydeadrares.widget=generic
landing.view.hb14daydeadraresoff.conf=caption,landing.view.hb14daydeadrares.header;bodytext,landing.view.hb14daydeadrares.body;customtimer,false,0,0,landing.view.raretimer.timer,landing.view.raretimer.timer.expired,2014-10-30 12:00
landing.view.hb14daydeadraresoff.layout=
landing.view.hb14daydeadraresoff.widget=generic
landing.view.hb14freakfairbun.conf=caption,landing.view.hb14freakfairbun.header;bodytext,landing.view.hb14freakfairbun.body;catalogbutton,landing.view.hb14freakfairbun.button,fairground_bundle
landing.view.hb14freakfairbun.layout=bitmap.uri,${image.library.url}web_promo_small/freakyfairground_smallpromo.png;bitmap.x,0;bitmap.y,140;container.height,290
landing.view.hb14freakfairbun.widget=generic
landing.view.hb14furni10year.conf=caption,landing.view.hb14furni10year.header;bodytext,landing.view.hb14furni10year.body;internallinkbutton,landing.view.hb14furni10year.button,catalog/warehouse/oldhween14
landing.view.hb14furni10year.layout=bitmap.uri,${image.library.url}web_promo_small/10yrs_of_hween_s_promo.png;content.x,200;content.y,0;bitmap.x,0;bitmap.y,0;container.height,255
landing.view.hb14furni10year.widget=generic
landing.view.hb14hauntedbun.conf=caption,landing.view.hb14hauntedbun.header;bodytext,landing.view.hb14hauntedbun.body;catalogbutton,landing.view.hb14hauntedbun.button,haunted_manor_bundle
landing.view.hb14hauntedbun.layout=bitmap.uri,${image.library.url}web_promo_small/mansionbundle_smallpromo.png;bitmap.x,0;bitmap.y,140;container.height,290
landing.view.hb14hauntedbun.widget=generic
landing.view.hb14ltdaltar.conf=caption,landing.view.hb14ltdaltar.header;bodytext,landing.view.hb14ltdaltar.body;catalogbutton,landing.view.hb14ltdaltar.button,ler
landing.view.hb14ltdaltar.layout=bitmap.uri,${image.library.url}web_promo_small/habboween14ltd_smallpromo.png;content.x,200;content.y,0;bitmap.x,0;bitmap.y,0;container.height,255
landing.view.hb14ltdaltar.widget=generic
landing.view.hb14ltdaltaroff.conf=caption,landing.view.hb14ltdaltar.header;bodytext,landing.view.hb14ltdaltar.body;customtimer,false,0,0,landing.view.raretimer.timer,landing.view.raretimer.timer.expired,2014-10-29 16:00
landing.view.hb14ltdaltaroff.layout=bitmap.uri,${image.library.url}web_promo_small/habboween14ltd_smallpromo.png;content.x,200;content.y,0;bitmap.x,0;bitmap.y,0;container.height,255
landing.view.hb14ltdaltaroff.widget=generic
landing.view.hb14marketfurni.conf=caption,landing.view.hb14marketfurni.header;bodytext,landing.view.hb14marketfurni.body;catalogbutton,landing.view.hb14marketfurni.button,halloween14_dolls
landing.view.hb14marketfurni.layout=bitmap.uri,${image.library.url}web_promo_small/hween14_dolls_small_promo.png;content.x,200;content.y,0;bitmap.x,0;bitmap.y,0;container.height,255
landing.view.hb14marketfurni.widget=generic
landing.view.hb14marketfurnioff.conf=caption,landing.view.hb14marketfurni.header;bodytext,landing.view.hb14marketfurni.body;customtimer,false,0,0,landing.view.raretimer.timer,landing.view.raretimer.timer.expired,2014-10-18 15:00
landing.view.hb14marketfurnioff.layout=bitmap.uri,${image.library.url}web_promo_small/hween14_dolls_small_promo.png;content.x,200;content.y,0;bitmap.x,0;bitmap.y,0;container.height,255
landing.view.hb14marketfurnioff.widget=generic
landing.view.hb14skullcrystalrare.conf=caption,landing.view.hb14skullcrystalrare.header;bodytext,landing.view.hb14skullcrystalrare.body;spacing,2;catalogbutton,landing.view.hu14furni.button,hween14_exchange
landing.view.hb14skullcrystalrare.layout=bitmap.uri,${image.library.url}web_promo_small/CF_350_skull.png;bitmap.x,180;bitmap.y,70;container.height,290
landing.view.hb14skullcrystalrare.widget=generic
landing.view.hb14strare1.conf=caption,landing.view.hb14strare1.header;bodytext,landing.view.hb14strare1.body;spacing,2;catalogbutton,landing.view.hb14strare1.button,habboween14_rares
landing.view.hb14strare1.layout=bitmap.uri,${image.library.url}web_promo_small/st_candyskullsrare_teaser.png;bitmap.x,0;bitmap.y,140;container.height,300
landing.view.hb14strare1.widget=generic
landing.view.hb14strare2.conf=caption,landing.view.hb14strare2.header;bodytext,landing.view.hb14strare2.body;spacing,2;catalogbutton,landing.view.hb14strare2.button,habboween14_rares
landing.view.hb14strare2.layout=bitmap.uri,${image.library.url}web_promo_small/st_hween14_fireplace2_2.png;bitmap.x,150;bitmap.y,100;container.height,250
landing.view.hb14strare2.widget=generic
landing.view.hb14strare2off.conf=caption,landing.view.hb14strare2.header;bodytext,landing.view.hb14strare2.body;customtimer,false,0,0,landing.view.raretimer.timer,landing.view.raretimer.timer.expired,2014-10-28 12:00
landing.view.hb14strare2off.layout=bitmap.uri,${image.library.url}web_promo_small/st_hween14_fireplace2_2.png;bitmap.x,150;bitmap.y,100;container.height,250
landing.view.hb14strare2off.widget=generic
landing.view.hb14twistedcastlebun.conf=caption,landing.view.hb14twistedcastlebun.header;bodytext,landing.view.hb14twistedcastlebun.body;catalogbutton,landing.view.hb14twistedcastlebun.button,twisted_castle_bundle
landing.view.hb14twistedcastlebun.layout=bitmap.uri,${image.library.url}web_promo_small/hweencastlebundle_smallpromo.png;bitmap.x,0;bitmap.y,140;container.height,290
landing.view.hb14twistedcastlebun.widget=generic
landing.view.hb14voodoobun.conf=caption,landing.view.hb14voodoobun.header;bodytext,landing.view.hb14voodoobun.body;catalogbutton,landing.view.hb14voodoobun.button,voodoo_swamp_bundle
landing.view.hb14voodoobun.layout=bitmap.uri,${image.library.url}web_promo_small/voodoobundle_smallpromo.png;bitmap.x,0;bitmap.y,140;container.height,290
landing.view.hb14voodoobun.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.hospital_bundle.conf=caption,landing.view.hospital_bundle.header;bodytext,landing.view.hospital_bundle.body;catalogbutton,landing.view.hospital_bundle.button,hospital_bundle
landing.view.hospital_bundle.layout=bitmap.uri,${image.library.url}web_promo_small/spromo_1505_hosp.png;bitmap.x,50;bitmap.y,0;container.height,250
landing.view.hospital_bundle.widget=generic
landing.view.hu14bathroom.conf=caption,landing.view.hu14bathroom.header;bodytext,landing.view.hu14bathroom.body;spacing,2;catalogbutton,landing.view.hu14bathroom.button,bathrooomfurni
landing.view.hu14bathroom.layout=bitmap.uri,${image.library.url}web_promo_small/bathroom_s_promo.png;bitmap.x,0;bitmap.y,0;container.height,250
landing.view.hu14bathroom.widget=generic
landing.view.hu14chooseclub.conf=caption,landing.view.hu14chooseclub.header;bodytext,landing.view.hu14chooseclub.body;spacing,2;requestbadgebutton,landing.view.hu14choosealpha.button,alpha,0,0,false;requestbadgebuttonsecond,landing.view.hu14choosebeta.button,beta,0,0,false;requestbadgebuttonthird,landing.view.hu14choosegamma.button,gamma,0,0,false
landing.view.hu14chooseclub.layout=bitmap.uri,${image.library.url}web_promo_small/st_habbouniversity_teaser.png;bitmap.x,0;bitmap.y,0;container.height,250
landing.view.hu14chooseclub.widget=generic
landing.view.hu14dormbundle.conf=caption,landing.view.hu14dormbundle.header;bodytext,landing.view.hu14dormbundle.body;spacing,2;catalogbutton,landing.view.hu14dormbundle.button,dorm_bundle
landing.view.hu14dormbundle.layout=bitmap.uri,${image.library.url}web_promo_small/DormRoomBundleSpromo.png;bitmap.x,50;bitmap.y,0;container.height,250
landing.view.hu14dormbundle.widget=generic
landing.view.hu14furni.conf=caption,landing.view.hu14furni.header;bodytext,landing.view.hu14furni.body;spacing,2;catalogbutton,landing.view.hu14furni.button,dorm_furni
landing.view.hu14furni.layout=
landing.view.hu14furni.widget=generic
landing.view.hu14furnimatic.conf=caption,landing.view.hu14furnimatic.header;bodytext,landing.view.hu14furnimatic.body;spacing,2;catalogbutton,landing.view.hu14furni.button,ecotron_rewards
landing.view.hu14furnimatic.layout=
landing.view.hu14furnimatic.widget=generic
landing.view.hu14ltd.conf=caption,landing.view.hu14ltd.header;bodytext,landing.view.hu14ltd.body;catalogbutton,landing.view.hu14ltd.button,ler
landing.view.hu14ltd.layout=bitmap.uri,${image.library.url}web_promo_small/spromo_universityltd.png;bitmap.x,0;bitmap.y,140;container.height,290
landing.view.hu14ltd.widget=generic
landing.view.hu14oldfurni.conf=caption,landing.view.hu14oldfurni.header;bodytext,landing.view.hu14oldfurni.body;spacing,2;catalogbutton,landing.view.hu14oldfurni.button,habbouni
landing.view.hu14oldfurni.layout=
landing.view.hu14oldfurni.widget=generic
landing.view.hu14professorbundle.conf=caption,landing.view.hu14professorbundle.header;bodytext,landing.view.hu14professorbundle.body;catalogbutton,landing.view.hu14professorbundle.button,prof_bundle
landing.view.hu14professorbundle.layout=bitmap.uri,${image.library.url}web_promo_small/professor_spromo.png;bitmap.x,0;bitmap.y,140;container.height,290
landing.view.hu14professorbundle.widget=generic
landing.view.hu14rare3normal.conf=caption,landing.view.hu14rare3.header;bodytext,landing.view.hu14rare3.body;spacing,2;catalogbutton,landing.view.hu14rare3.button,uni_rares
landing.view.hu14rare3normal.layout=bitmap.uri,${image.library.url}web_promo_small/st_solarsystem_teaser.png;bitmap.x,0;bitmap.y,0;container.height,250
landing.view.hu14rare3normal.widget=generic
landing.view.hu14rare3timer.conf=caption,landing.view.hu14rare3.header;bodytext,landing.view.hu14rare3.body;spacing,2;customtimer,false,0,0,landing.view.hu14rare3.timer,landing.view.raretimer.timer.expired,2014-09-21 11:00
landing.view.hu14rare3timer.layout=bitmap.uri,${image.library.url}web_promo_small/st_solarsystem_teaser.png;bitmap.x,0;bitmap.y,0;container.height,250
landing.view.hu14rare3timer.widget=generic
landing.view.hu14rares.conf=caption,landing.view.hu14rares.header;bodytext,landing.view.hu14rares.body;catalogbutton,landing.view.hu14rares.button,uni_rares
landing.view.hu14rares.layout=bitmap.uri,${image.library.url}web_promo_small/smallpromo_universityrares.png;bitmap.x,0;bitmap.y,140;container.height,290
landing.view.hu14rares.widget=generic
landing.view.hu14storiesrare.conf=caption,landing.view.hu14storiesrare.header;bodytext,landing.view.hu14storiesrare.body;spacing,2;catalogbutton,landing.view.hu14storiesrare.button,uni_rares
landing.view.hu14storiesrare.layout=
landing.view.hu14storiesrare.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://185.125.169.147/articles
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.hween15bundle.conf=caption,landing.view.hween15bundle.header;bodytext,landing.view.hween15bundle.body;catalogbutton,landing.view.hween15bundle.button,apocalypse_bundle
landing.view.hween15bundle.layout=bitmap.uri,${image.library.url}web_promo_small/spromo_hw15_b4.png;bitmap.x,50;bitmap.y,0;container.height,250
landing.view.hween15bundle.widget=generic
landing.view.hween15couture.conf=caption,landing.view.hween15couture.header;bodytext,landing.view.hween15couture.body;catalogbutton,landing.view.hween15couture.button,halloween15_clothing
landing.view.hween15couture.layout=
landing.view.hween15couture.widget=generic
landing.view.hween15crafting.conf=caption,landing.view.hween15crafting.header;bodytext,landing.view.hween15crafting.body;catalogbutton,landing.view.hween15crafting.button,hween15_crafting
landing.view.hween15crafting.layout=
landing.view.hween15crafting.widget=generic
landing.view.hween15creditfurni.conf=caption,landing.view.hween15creditfurni.header;bodytext,landing.view.hween15creditfurni.body;catalogbutton,landing.view.hween15creditfurni.button,credit_exchange
landing.view.hween15creditfurni.layout=
landing.view.hween15creditfurni.widget=generic
landing.view.hween15daydead.conf=caption,landing.view.hween15daydead.header;bodytext,landing.view.hween15daydead.body;catalogbutton,landing.view.hween15daydead.button,dayofthedead_bundle
landing.view.hween15daydead.layout=bitmap.uri,${image.library.url}web_promo_small/spromo_hw15_b5.png;bitmap.x,50;bitmap.y,0;container.height,250
landing.view.hween15daydead.widget=generic
landing.view.hween15deathltd.conf=caption,landing.view.hween15deathltd.header;bodytext,landing.view.hween15deathltd.body;catalogbutton,landing.view.cp15stpat.button,ler
landing.view.hween15deathltd.layout=
landing.view.hween15deathltd.widget=generic
landing.view.hween15deathltdoff.conf=caption,landing.view.hween15deathltd.header;bodytext,landing.view.hween15deathltd.body;customtimer,false,0,0,landing.view.hween15deathltd.button,landing.view.raretimer.timer.expired,2015-10-31 16:00
landing.view.hween15deathltdoff.layout=
landing.view.hween15deathltdoff.widget=generic
landing.view.hween15fairground.conf=caption,landing.view.hween15fairground.header;bodytext,landing.view.hween15fairground.body;catalogbutton,landing.view.hween15fairground.button,fairground_bundle
landing.view.hween15fairground.layout=bitmap.uri,${image.library.url}web_promo_small/spromo_hw15_b6.png;bitmap.x,50;bitmap.y,0;container.height,250
landing.view.hween15fairground.widget=generic
landing.view.hween15famineltd.conf=caption,landing.view.hween15famineltd.header;bodytext,landing.view.hween15famineltd.body;catalogbutton,landing.view.cp15stpat.button,ler
landing.view.hween15famineltd.layout=
landing.view.hween15famineltd.widget=generic
landing.view.hween15famineltdoff.conf=caption,landing.view.hween15famineltd.header;bodytext,landing.view.hween15famineltd.body;customtimer,false,0,0,landing.view.cp15ltd.button,landing.view.raretimer.timer.expired,2015-10-17 15:00
landing.view.hween15famineltdoff.layout=
landing.view.hween15famineltdoff.widget=generic
landing.view.hween15furni.conf=caption,landing.view.hween15furni.header;bodytext,landing.view.hween15furni.body;catalogbutton,landing.view.hween15furni.button,halloween15;internallinkbutton,landing.view.hween15furni.button2,catalog/warehouse/halloween15_bc
landing.view.hween15furni.layout=
landing.view.hween15furni.widget=generic
landing.view.hween15manor.conf=caption,landing.view.hween15manor.header;bodytext,landing.view.hween15manor.body;catalogbutton,landing.view.hween15manor.button,haunted_manor_bundle
landing.view.hween15manor.layout=
landing.view.hween15manor.widget=generic
landing.view.hween15pestilenceltd.conf=caption,landing.view.hween15pestilenceltd.header;bodytext,landing.view.hween15pestilenceltd.body;catalogbutton,landing.view.cp15stpat.button,ler
landing.view.hween15pestilenceltd.layout=
landing.view.hween15pestilenceltd.widget=generic
landing.view.hween15pestilenceltdoff.conf=caption,landing.view.hween15pestilenceltd.header;bodytext,landing.view.hween15pestilenceltd.body;customtimer,false,0,0,landing.view.cp15ltd.button,landing.view.raretimer.timer.expired,2015-10-24 15:00
landing.view.hween15pestilenceltdoff.layout=
landing.view.hween15pestilenceltdoff.widget=generic
landing.view.hween15pumpkin.conf=caption,landing.view.hween15pumpkin.header;bodytext,landing.view.hween15pumpkin.body;catalogbutton,landing.view.hween15pumpkin.button,hween15_pumpkin
landing.view.hween15pumpkin.layout=
landing.view.hween15pumpkin.widget=generic
landing.view.hween15twisted.conf=caption,landing.view.hween15twisted.header;bodytext,landing.view.hween15twisted.body;catalogbutton,landing.view.hween15twisted.button,twisted_castle_bundle
landing.view.hween15twisted.layout=
landing.view.hween15twisted.widget=generic
landing.view.hween15voodoo.conf=caption,landing.view.hween15voodoo.header;bodytext,landing.view.hween15voodoo.body;catalogbutton,landing.view.hween15voodoo.button,voodoo_swamp_bundle
landing.view.hween15voodoo.layout=
landing.view.hween15voodoo.widget=generic
landing.view.hween15warltd.conf=caption,landing.view.hween15warltd.header;bodytext,landing.view.hween15warltd.body;catalogbutton,landing.view.cp15stpat.button,ler
landing.view.hween15warltd.layout=
landing.view.hween15warltd.widget=generic
landing.view.hween15warltdoff.conf=caption,landing.view.hween15warltd.header;bodytext,landing.view.hween15warltd.body;customtimer,false,0,0,landing.view.cp15ltd.button,landing.view.raretimer.timer.expired,2015-10-10 15:00
landing.view.hween15warltdoff.layout=
landing.view.hween15warltdoff.widget=generic
landing.view.hweenlocklock.conf=caption,landing.view.hweenlocklock.header;bodytext,landing.view.hweenlocklock.body;catalogbutton,landing.view.hweenlocklock.button,halloween14_lovelock
landing.view.hweenlocklock.layout=
landing.view.hweenlocklock.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.icecream.conf=caption,landing.view.icecream.header;bodytext,landing.view.icecream.body;catalogbutton,landing.view.icecream.button,rare
landing.view.icecream.layout=
landing.view.icecream.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.jan15atticBC.conf=caption,landing.view.jan15atticBC.header;bodytext,landing.view.jan15atticBC.body;internallinkbutton,landing.view.jan15atticBC.button,catalog/warehouse/bc_attic
landing.view.jan15atticBC.layout=bitmap.uri,${image.library.url}web_promo_small/attic15_furni_spromo.png;bitmap.x,0;bitmap.y,0;container.height,250
landing.view.jan15atticBC.widget=generic
landing.view.jan15atticbundle.conf=caption,landing.view.jan15atticbundle.header;bodytext,landing.view.jan15atticbundle.body;catalogbutton,landing.view.jan15atticbundle.button,attic_bundle
landing.view.jan15atticbundle.layout=bitmap.uri,${image.library.url}web_promo_small/attic15_furnibundle_spromo.png;bitmap.x,0;bitmap.y,150;container.height,300
landing.view.jan15atticbundle.widget=generic
landing.view.japan15bundle.conf=caption,landing.view.japan15bundle.header;bodytext,landing.view.japan15bundle.body;catalogbutton,landing.view.japan15bundle.button,val15_bundle
landing.view.japan15bundle.layout=bitmap.uri,${image.library.url}web_promo_small/feb15_jpgarden_internal.png;bitmap.x,50;bitmap.y,120;bitmap.height,150
landing.view.japan15bundle.widget=generic
landing.view.japan15clothing.conf=caption,landing.view.japan15clothing.header;bodytext,landing.view.japan15clothing.body;catalogbutton,landing.view.japan15clothing.button,xmas14_clothing
landing.view.japan15clothing.layout=bitmap.uri,${image.library.url}web_promo_small/japanvalclothing_s_promo.png;bitmap.x,0;content.x,200;content.y,0;bitmap.y,0;container.height,250
landing.view.japan15clothing.widget=generic
landing.view.japan15furni.conf=caption,landing.view.japan15furni.header;bodytext,landing.view.japan15furni.body;internallinkbutton,landing.view.japan15furni.button,catalog/warehouse/bc_val15
landing.view.japan15furni.layout=
landing.view.japan15furni.widget=generic
landing.view.japan15venezia.conf=caption,landing.view.japan15venezia.header;bodytext,landing.view.japan15venezia.body;catalogbutton,landing.view.japan15venezia.button,val15_oldbundle
landing.view.japan15venezia.layout=bitmap.uri,${image.library.url}web_promo_small/spromo_bundvenice15.png;bitmap.x,50;bitmap.y,120;bitmap.height,150
landing.view.japan15venezia.widget=generic
landing.view.jurassic15clothing.conf=caption,landing.view.jurassic15clothing.header;bodytext,landing.view.jurassic15clothing.body;catalogbutton,landing.view.jurassic15clothing.button,dino15_clothing
landing.view.jurassic15clothing.layout=bitmap.uri,${image.library.url}web_promo_small/spromo_Dino_clothes.png;bitmap.x,50;bitmap.y,0;container.height,250
landing.view.jurassic15clothing.widget=generic
landing.view.jurassic15dragonfly.conf=caption,landing.view.jurassic15dragonfly.header;bodytext,landing.view.jurassic15dragonfly.body;catalogbutton,landing.view.cp15stpat.button,ler
landing.view.jurassic15dragonfly.layout=bitmap.uri,${image.library.url}web_promo_small/spromo_dino15_LTD1.png;bitmap.x,50;bitmap.y,0;container.height,250
landing.view.jurassic15dragonfly.widget=generic
landing.view.jurassic15dragonflyoff.conf=caption,landing.view.jurassic15dragonfly.header;bodytext,landing.view.jurassic15dragonfly.body;customtimer,false,0,0,landing.view.cp15ltd.button,landing.view.raretimer.timer.expired,2015-06-13 15:00
landing.view.jurassic15dragonflyoff.layout=bitmap.uri,${image.library.url}web_promo_small/spromo_dino15_LTD1.png;bitmap.x,50;bitmap.y,0;container.height,250
landing.view.jurassic15dragonflyoff.widget=generic
landing.view.jurassic15furni.conf=caption,landing.view.jurassic15furni.header;bodytext,landing.view.jurassic15furni.body;catalogbutton,landing.view.jurassic15furni.button,dino15
landing.view.jurassic15furni.layout=bitmap.uri,${image.library.url}web_promo_small/spromo_dino_furni.png;bitmap.x,50;bitmap.y,0;container.height,250
landing.view.jurassic15furni.widget=generic
landing.view.jurassic15lastchance.conf=caption,landing.view.jurassic15lastchance.header;bodytext,landing.view.jurassic15lastchance.body;catalogbutton,landing.view.jurassic15lastchance.button,dino15
landing.view.jurassic15lastchance.layout=
landing.view.jurassic15lastchance.widget=generic
landing.view.jurassic15parkbundle.conf=caption,landing.view.jurassic15parkbundle.header;bodytext,landing.view.jurassic15parkbundle.body;catalogbutton,landing.view.jurassic15parkbundle.button,jurassic_bundle
landing.view.jurassic15parkbundle.layout=
landing.view.jurassic15parkbundle.widget=generic
landing.view.jurassic15pets.conf=caption,landing.view.jurassic15pets.header;bodytext,landing.view.jurassic15pets.body;catalogbutton,landing.view.jurassic15pets.button,pet_raptor
landing.view.jurassic15pets.layout=
landing.view.jurassic15pets.widget=generic
landing.view.jurassic15pterobundle.conf=caption,landing.view.jurassic15pterobundle.header;bodytext,landing.view.jurassic15pterobundle.body;catalogbutton,landing.view.jurassic15pterobundle.button,raptor_habitat_bundle
landing.view.jurassic15pterobundle.layout=
landing.view.jurassic15pterobundle.widget=generic
landing.view.jurassic15raptorbundle.conf=caption,landing.view.jurassic15raptorbundle.header;bodytext,landing.view.jurassic15raptorbundle.body;catalogbutton,landing.view.jurassic15raptorbundle.button,pterosaur_habitat_bundle
landing.view.jurassic15raptorbundle.layout=
landing.view.jurassic15raptorbundle.widget=generic
landing.view.jurassic15summer.conf=caption,landing.view.jurassic15summer.header;bodytext,landing.view.jurassic15summer.body;catalogbutton,landing.view.jurassic15summer.button,set_coco
landing.view.jurassic15summer.layout=
landing.view.jurassic15summer.widget=generic
landing.view.ktchn15cottage.conf=caption,landing.view.ktchn15cottage.header;bodytext,landing.view.ktchn15cottage.body;catalogbutton,landing.view.ktchn15cottage.button,ktchn15cottage
landing.view.ktchn15cottage.layout=bitmap.uri,${image.library.url}web_promo_small/spromo_kitchenbundle1.png;bitmap.x,0;bitmap.y,0;container.height,250
landing.view.ktchn15cottage.widget=generic
landing.view.ktchn15furni.conf=caption,landing.view.ktchn15furni.header;bodytext,landing.view.ktchn15furni.body;catalogbutton,landing.view.ktchn15furni.button,ktchn15;internallinkbutton,landing.view.ktchn15furni.button2,catalog/warehouse/ktchn15_bc
landing.view.ktchn15furni.layout=
landing.view.ktchn15furni.widget=generic
landing.view.ktchn15posh.conf=caption,landing.view.ktchn15posh.header;bodytext,landing.view.ktchn15posh.body;catalogbutton,landing.view.ktchn15posh.button,ktchn15michelin
landing.view.ktchn15posh.layout=bitmap.uri,${image.library.url}web_promo_small/spromo_kitchenbundle2.png;bitmap.x,0;bitmap.y,0;container.height,250
landing.view.ktchn15posh.widget=generic
landing.view.ktchn15psych.conf=caption,landing.view.ktchn15psych.header;bodytext,landing.view.ktchn15psych.body;catalogbutton,landing.view.ktchn15psych.button,ktchn15psych
landing.view.ktchn15psych.layout=
landing.view.ktchn15psych.widget=generic
landing.view.ktchn15rare1.conf=caption,landing.view.ktchn15rare1.header;bodytext,landing.view.ktchn15rare1.body;catalogbutton,landing.view.ktchn15rare1.button,rare
landing.view.ktchn15rare1.layout=
landing.view.ktchn15rare1.widget=generic
landing.view.ktchn15rare2.conf=caption,landing.view.ktchn15rare2.header;bodytext,landing.view.ktchn15rare2.body;catalogbutton,landing.view.ktchn15rare2.button,rare
landing.view.ktchn15rare2.layout=
landing.view.ktchn15rare2.widget=generic
landing.view.ktchn15user.conf=caption,landing.view.ktchn15user.header;bodytext,landing.view.ktchn15user.body;catalogbutton,landing.view.ktchn15user.button,ktchn15user
landing.view.ktchn15user.layout=bitmap.uri,${image.library.url}web_promo_small/spromo_kitchenbundle3.png;bitmap.x,0;bitmap.y,0;container.height,250
landing.view.ktchn15user.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.library_bundle.conf=caption,landing.view.library_bundle.header;bodytext,landing.view.library_bundle.body;catalogbutton,landing.view.library_bundle.button,library_bundle
landing.view.library_bundle.layout=
landing.view.library_bundle.widget=generic
landing.view.lightsOnCommunityGoal.widget=communitygoal
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.mm14bundle1.conf=caption,landing.view.mm14bundle1.header;bodytext,landing.view.mm14bundle1.body;catalogbutton,landing.view.mm14bundle1.button,movie_bundle
landing.view.mm14bundle1.layout=bitmap.uri,${image.library.url}web_promo_small/Moviemagic_sbundle1_small_promo.png;bitmap.x,0;bitmap.y,140;container.height,290
landing.view.mm14bundle1.widget=generic
landing.view.mm14bundle2.conf=caption,landing.view.mm14bundle2.header;bodytext,landing.view.mm14bundle2.body;catalogbutton,landing.view.mm14bundle2.button,movie_rares
landing.view.mm14bundle2.layout=bitmap.uri,${image.library.url}web_promo_small/MovieMagic_bundle2_SPromo.png;bitmap.x,0;bitmap.y,140;container.height,290
landing.view.mm14bundle2.widget=generic
landing.view.mm14oldfurni.conf=caption,landing.view.mm14oldfurni.header;bodytext,landing.view.mm14oldfurni.body;spacing,2;catalogbutton,landing.view.mm14oldfurni.button,movie_furni
landing.view.mm14oldfurni.layout=
landing.view.mm14oldfurni.widget=generic
landing.view.mm14posters.conf=caption,landing.view.mm14posters.header;bodytext,landing.view.mm14posters.body;spacing,2;catalogbutton,landing.view.mm14posters.button,movie_madness
landing.view.mm14posters.layout=bitmap.uri,${image.library.url}web_promo_small/Moviemagic_poster_small_promo.png;content.x,250;content.y,0;bitmap.x,100;bitmap.y,0;container.height,255
landing.view.mm14posters.widget=generic
landing.view.mm14rareposter.conf=caption,landing.view.mm14rareposter.header;bodytext,landing.view.mm14rareposter.body;catalogbutton,landing.view.mm14rareposter.button,movie_posters
landing.view.mm14rareposter.layout=bitmap.uri,${image.library.url}web_promo_small/Moviemagic_rare_smallpromo.png;bitmap.x,0;bitmap.y,140;container.height,290
landing.view.mm14rareposter.widget=generic
landing.view.mm14stposterbr.conf=caption,landing.view.mm14stposterbr.header;bodytext,landing.view.mm14stposterbr.body;catalogbutton,landing.view.mm14stposterbr.button,stories_br
landing.view.mm14stposterbr.layout=bitmap.uri,${image.library.url}catalogue/st_felipe_pstr.gif;content.x,200;content.y,0;bitmap.x,0;bitmap.y,0;container.height,255
landing.view.mm14stposterbr.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.ny14bcupdate.conf=caption,landing.view.ny14bcupdate.header;bodytext,landing.view.ny14bcupdate.body;internallinkbutton,landing.view.ny14bcupdate.button,catalog/warehouse/builders_club_frontpage
landing.view.ny14bcupdate.layout=bitmap.uri,${image.library.url}web_promo_small/bc_furni_dump_small_promo.png;bitmap.x,0;bitmap.y,0;container.height,250
landing.view.ny14bcupdate.widget=generic
landing.view.ny14blocks.conf=caption,landing.view.ny14blocks.header;bodytext,landing.view.ny14blocks.body;internallinkbutton,landing.view.ny14blocks.button,catalog/warehouse/new_blocks
landing.view.ny14blocks.layout=
landing.view.ny14blocks.widget=generic
landing.view.ny14bundle.conf=caption,landing.view.ny14bundle.header;bodytext,landing.view.ny14bundle.body;catalogbutton,landing.view.ny14bundle.button,ny2015_bundle
landing.view.ny14bundle.layout=bitmap.uri,${image.library.url}web_promo_small/Promo_BundleNY15_small.png;bitmap.x,0;bitmap.y,0;container.height,250
landing.view.ny14bundle.widget=generic
landing.view.ny14catsale.conf=caption,landing.view.ny14catsale.header;bodytext,landing.view.ny14catsale.body;catalogbutton,landing.view.ny14catsale.button,bc_university
landing.view.ny14catsale.layout=bitmap.uri,${image.library.url}web_promo_small/spromo_catsale15.png;bitmap.x,0;bitmap.y,140;container.height,290
landing.view.ny14catsale.widget=generic
landing.view.ny14catsalesat.conf=caption,landing.view.ny14catsale.header;bodytext,landing.view.ny14catsale.body;catalogbutton,landing.view.ny14catsale.button,set_anna
landing.view.ny14catsalesat.layout=bitmap.uri,${image.library.url}web_promo_small/spromo_catsale15.png;bitmap.x,0;bitmap.y,140;container.height,290
landing.view.ny14catsalesat.widget=generic
landing.view.ny14catsalesun.conf=caption,landing.view.ny14catsale.header;bodytext,landing.view.ny14catsale.body;catalogbutton,landing.view.ny14catsale.button,set_usva
landing.view.ny14catsalesun.layout=bitmap.uri,${image.library.url}web_promo_small/spromo_catsale15.png;bitmap.x,0;bitmap.y,140;container.height,290
landing.view.ny14catsalesun.widget=generic
landing.view.ny14cf.conf=caption,landing.view.ny14cf.header;bodytext,landing.view.ny14cf.body;catalogbutton,landing.view.ny14cf.button,credit_exchange
landing.view.ny14cf.layout=
landing.view.ny14cf.widget=generic
landing.view.ny14chalet.conf=caption,landing.view.ny14chalet.header;bodytext,landing.view.ny14chalet.body;catalogbutton,landing.view.ny14chalet.button,fireside_chalet_bundle
landing.view.ny14chalet.layout=bitmap.uri,${image.library.url}web_promo_small/miniapartment_s_promo.png;bitmap.x,0;bitmap.y,140;container.height,290
landing.view.ny14chalet.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.ny14newfurni.conf=caption,landing.view.ny14newfurni.header;bodytext,landing.view.ny14newfurni.body;catalogbutton,landing.view.ny14newfurni.button,ny2015
landing.view.ny14newfurni.layout=bitmap.uri,${image.library.url}web_promo_small/2015ny_s_promo.png;bitmap.x,0;bitmap.y,140;container.height,290
landing.view.ny14newfurni.widget=generic
landing.view.ny14rare.conf=caption,landing.view.ny14rare.header;bodytext,landing.view.ny14rare.body;catalogbutton,landing.view.ny14rare.button,ny2015_rares
landing.view.ny14rare.layout=
landing.view.ny14rare.widget=generic
landing.view.ny16board.conf=caption,landing.view.ny16board.header;bodytext,landing.view.ny16board.body;catalogbutton,landing.view.ny16board.button,room_bundles
landing.view.ny16board.layout=bitmap.uri,${image.library.url}web_promo_small/spromo_alpineslopebundle.png;bitmap.x,0;bitmap.y,0;container.height,250
landing.view.ny16board.widget=generic
landing.view.ny16bundle.conf=caption,landing.view.ny16bundle.header;bodytext,landing.view.ny16bundle.body;catalogbutton,landing.view.ny16bundle.button,room_bundles
landing.view.ny16bundle.layout=bitmap.uri,${image.library.url}web_promo_small/spromo_ny2016roombundle.png;bitmap.x,0;bitmap.y,0;container.height,250
landing.view.ny16bundle.widget=generic
landing.view.ny16creditfurni.conf=caption,landing.view.ny16creditfurni.header;bodytext,landing.view.ny16creditfurni.body;catalogbutton,landing.view.ny16creditfurni.button,credit_exchange
landing.view.ny16creditfurni.layout=
landing.view.ny16creditfurni.widget=generic
landing.view.ny16gold.conf=caption,landing.view.ny16gold.header;bodytext,landing.view.ny16gold.body;catalogbutton,landing.view.ny16gold.button,ny16gold
landing.view.ny16gold.layout=bitmap.uri,${image.library.url}web_promo_small/spromo_goldacc.png;bitmap.x,0;bitmap.y,0;container.height,250
landing.view.ny16gold.widget=generic
landing.view.ny16hat.conf=caption,landing.view.ny16hat.header;bodytext,landing.view.ny16hat.body;catalogbutton,landing.view.ny16hat.button,ny16hat
landing.view.ny16hat.layout=
landing.view.ny16hat.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.palooza14bundle2.conf=caption,landing.view.palooza14bundle2.header;bodytext,landing.view.palooza14bundle2.body;spacing,2;catalogbutton,landing.view.palooza14bundle2.button,palooza2014_bundle
landing.view.palooza14bundle2.layout=bitmap.uri,${image.library.url}web_promo_small/Palooza_Hoopla_Bundle_Small_Promo.png;bitmap.x,0;bitmap.y,180;container.height,330
landing.view.palooza14bundle2.widget=generic
landing.view.palooza14headrare.conf=caption,landing.view.palooza14headrare.header;bodytext,landing.view.palooza14headrare.body;spacing,2;catalogbutton,landing.view.palooza14headrare.button,palooza2014_rares
landing.view.palooza14headrare.layout=bitmap.uri,${image.library.url}web_promo_small/st_palooza_rare_screen_furni_teaser.png;content.x,170;container.height,290
landing.view.palooza14headrare.widget=generic
landing.view.palooza14newfurni.conf=caption,landing.view.palooza14newfurni.header;bodytext,landing.view.palooza14newfurni.body;catalogbutton,landing.view.palooza14newfurni.button,palooza2014
landing.view.palooza14newfurni.layout=
landing.view.palooza14newfurni.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.palooza14pinata.conf=caption,landing.view.palooza14pinata.header;bodytext,landing.view.palooza14pinata.body;spacing,2;catalogbutton,landing.view.palooza14pinata.button,palooza_pinatas
landing.view.palooza14pinata.layout=bitmap.uri,${image.library.url}web_promo_small/Hblooza14Pinata_Small_Promo.png;bitmap.x,0;bitmap.y,180;container.height,330
landing.view.palooza14pinata.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.timer.expired,2013-07-18 23:59;spacing,10;dailyquest,false,0,0,landing.view.paloozamusicquest.button,habbo_palooza_14,habbo_palooza_14.1372425714913
landing.view.paloozaquest14.layout=bitmap.uri,${image.library.url}web_promo_small/spromo_hblooza_1991.png;content.x,210;content.y,0;bitmap.x,35;bitmap.y,0;bitmap.width,150;bitmap.height,150;container.height,100;
landing.view.paloozaquest14.widget=generic
landing.view.paloozaquest15.conf=caption,quests.habbo_palooza.name;bodytext,quests.habbo_palooza_15.1372524590301.chaininfo;spacing,10;customtimer,false,0,0,landing.view.questexpiry.timeremaining,landing.view.furnimatic.recyclerpromo.timer.expired,2013-07-19 23:59;spacing,10;dailyquest,false,0,0,landing.view.paloozamusicquest.button,habbo_palooza_15,habbo_palooza_15.1372524590301
landing.view.paloozaquest15.layout=bitmap.uri,${image.library.url}web_promo_small/spromo_hblooza_1984.png;content.x,210;content.y,0;bitmap.x,35;bitmap.y,0;bitmap.width,150;bitmap.height,150;container.height,100;
landing.view.paloozaquest15.widget=generic
landing.view.paloozaquest16.conf=caption,quests.habbo_palooza.name;bodytext,quests.habbo_palooza_16.1372526867667.chaininfo;spacing,10;customtimer,false,0,0,landing.view.questexpiry.timeremaining,landing.view.furnimatic.recyclerpromo.timer.expired,2013-07-20 23:59;spacing,10;dailyquest,false,0,0,landing.view.paloozamusicquest.button,habbo_palooza_16,habbo_palooza_16.1372526867667
landing.view.paloozaquest16.layout=bitmap.uri,${image.library.url}web_promo_small/spromo_hblooza_1984.png;content.x,210;content.y,0;bitmap.x,35;bitmap.y,0;bitmap.width,150;bitmap.height,150;container.height,100;
landing.view.paloozaquest16.widget=generic
landing.view.paloozaquest17.conf=caption,quests.habbo_palooza.name;bodytext,quests.habbo_palooza_17.1372529093052.chaininfo;spacing,10;customtimer,false,0,0,landing.view.questexpiry.timeremaining,landing.view.furnimatic.recyclerpromo.timer.expired,2013-07-21 23:59;spacing,10;dailyquest,false,0,0,landing.view.paloozamusicquest.button,habbo_palooza_17,habbo_palooza_17.1372529093052
landing.view.paloozaquest17.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.paloozaquest17.widget=generic
landing.view.paloozaquest18.conf=caption,quests.habbo_palooza.name;bodytext,quests.habbo_palooza_18.1372532642821.chaininfo;spacing,10;customtimer,false,0,0,landing.view.questexpiry.timeremaining,landing.view.furnimatic.recyclerpromo.timer.expired,2013-07-22 23:59;spacing,10;dailyquest,false,0,0,landing.view.paloozamusicquest.button,habbo_palooza_18,habbo_palooza_18.1372532642821
landing.view.paloozaquest18.layout=bitmap.uri,${image.library.url}web_promo_small/spromo_hblooza_1996.png;content.x,210;content.y,0;bitmap.x,35;bitmap.y,0;bitmap.width,150;bitmap.height,150;container.height,100;
landing.view.paloozaquest18.widget=generic
landing.view.paloozaquest19.conf=caption,quests.habbo_palooza.name;bodytext,quests.habbo_palooza_19.1372625547242.chaininfo;spacing,10;customtimer,false,0,0,landing.view.questexpiry.timeremaining,landing.view.furnimatic.recyclerpromo.timer.expired,2013-07-23 23:59;spacing,10;dailyquest,false,0,0,landing.view.paloozamusicquest.button,habbo_palooza_19,habbo_palooza_19.1372625547242
landing.view.paloozaquest19.layout=bitmap.uri,${image.library.url}web_promo_small/spromo_hblooza_1987.png;content.x,210;content.y,0;bitmap.x,35;bitmap.y,0;bitmap.width,150;bitmap.height,150;container.height,100;
landing.view.paloozaquest19.widget=generic
landing.view.paloozaquest2.conf=caption,quests.habbo_palooza.name;bodytext,quests.habbo_palooza_2.1372414470435.chaininfo;spacing,10;customtimer,false,0,0,landing.view.questexpiry.timeremaining,landing.view.furnimatic.recyclerpromo.timer.expired,2013-07-06 23:59;spacing,10;dailyquest,false,0,0,landing.view.paloozamusicquest.button,habbo_palooza_2,habbo_palooza_2.1372414470435
landing.view.paloozaquest2.layout=bitmap.uri,${image.library.url}web_promo_small/spromo_hblooza_1996.png;content.x,210;content.y,0;bitmap.x,35;bitmap.y,0;bitmap.width,150;bitmap.height,150;container.height,100;
landing.view.paloozaquest2.widget=generic
landing.view.paloozaquest20.conf=caption,quests.habbo_palooza.name;bodytext,quests.habbo_palooza_20.1372628790245.chaininfo;spacing,10;customtimer,false,0,0,landing.view.questexpiry.timeremaining,landing.view.furnimatic.recyclerpromo.timer.expired,2013-07-24 23:59;spacing,10;dailyquest,false,0,0,landing.view.paloozamusicquest.button,habbo_palooza_20,habbo_palooza_20.1372628790245
landing.view.paloozaquest20.layout=bitmap.uri,${image.library.url}web_promo_small/spromo_hblooza_2000.png;content.x,210;content.y,0;bitmap.x,35;bitmap.y,0;bitmap.width,150;bitmap.height,150;container.height,100;
landing.view.paloozaquest20.widget=generic
landing.view.paloozaquest21.conf=caption,quests.habbo_palooza.name;bodytext,quests.habbo_palooza_21.1372676542941.chaininfo;spacing,10;customtimer,false,0,0,landing.view.questexpiry.timeremaining,landing.view.furnimatic.recyclerpromo.timer.expired,2013-07-25 23:59;spacing,10;dailyquest,false,0,0,landing.view.paloozamusicquest.button,habbo_palooza_21,habbo_palooza_21.1372676542941
landing.view.paloozaquest21.layout=bitmap.uri,${image.library.url}web_promo_small/spromo_hblooza_1979.png;content.x,210;content.y,0;bitmap.x,35;bitmap.y,0;bitmap.width,150;bitmap.height,150;container.height,100;
landing.view.paloozaquest21.widget=generic
landing.view.paloozaquest22.conf=caption,quests.habbo_palooza.name;bodytext,quests.habbo_palooza_22.1372679880224.chaininfo;spacing,10;customtimer,false,0,0,landing.view.questexpiry.timeremaining,landing.view.furnimatic.recyclerpromo.timer.expired,2013-07-26 23:59;spacing,10;dailyquest,false,0,0,landing.view.paloozamusicquest.button,habbo_palooza_22,habbo_palooza_22.1372679880224
landing.view.paloozaquest22.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.paloozaquest22.widget=generic
landing.view.paloozaquest23.conf=caption,quests.habbo_palooza.name;bodytext,quests.habbo_palooza_23.1372685499874.chaininfo;spacing,10;customtimer,false,0,0,landing.view.questexpiry.timeremaining,landing.view.furnimatic.recyclerpromo.timer.expired,2013-07-27 23:59;spacing,10;dailyquest,false,0,0,landing.view.paloozamusicquest.button,habbo_palooza_23,habbo_palooza_23.1372685499874
landing.view.paloozaquest23.layout=bitmap.uri,${image.library.url}web_promo_small/spromo_hblooza_1987.png;content.x,210;content.y,0;bitmap.x,35;bitmap.y,0;bitmap.width,150;bitmap.height,150;container.height,100;
landing.view.paloozaquest23.widget=generic
landing.view.paloozaquest24.conf=caption,quests.habbo_palooza.name;bodytext,quests.habbo_palooza_24.1372686434548.chaininfo;spacing,10;customtimer,false,0,0,landing.view.questexpiry.timeremaining,landing.view.furnimatic.recyclerpromo.timer.expired,2013-07-28 23:59;spacing,10;dailyquest,false,0,0,landing.view.paloozamusicquest.button,habbo_palooza_24,habbo_palooza_24.1372686434548
landing.view.paloozaquest24.layout=bitmap.uri,${image.library.url}web_promo_small/spromo_hblooza_1988.png;content.x,210;content.y,0;bitmap.x,35;bitmap.y,0;bitmap.width,150;bitmap.height,150;container.height,100;
landing.view.paloozaquest24.widget=generic
landing.view.paloozaquest3.conf=caption,quests.habbo_palooza.name;bodytext,quests.habbo_palooza_3.1372407630173.chaininfo;spacing,10;customtimer,false,0,0,landing.view.questexpiry.timeremaining,landing.view.furnimatic.recyclerpromo.timer.expired,2013-07-07 23:59;spacing,10;dailyquest,false,0,0,landing.view.paloozamusicquest.button,habbo_palooza_3,habbo_palooza_3.1372407630173
landing.view.paloozaquest3.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.paloozaquest3.widget=generic
landing.view.paloozaquest4.conf=caption,quests.habbo_palooza.name;bodytext,quests.habbo_palooza_4.1372421657350.chaininfo;spacing,10;customtimer,false,0,0,landing.view.questexpiry.timeremaining,landing.view.furnimatic.recyclerpromo.timer.expired,2013-07-08 23:59;spacing,10;dailyquest,false,0,0,landing.view.paloozamusicquest.button,habbo_palooza_4,habbo_palooza_4.1372421657350
landing.view.paloozaquest4.layout=bitmap.uri,${image.library.url}web_promo_small/spromo_hblooza_2006.png;content.x,210;content.y,0;bitmap.x,35;bitmap.y,0;bitmap.width,150;bitmap.height,150;container.height,100;
landing.view.paloozaquest4.widget=generic
landing.view.paloozaquest5.conf=caption,quests.habbo_palooza.name;bodytext,quests.habbo_palooza_5.1372663237916.chaininfo;spacing,10;customtimer,false,0,0,landing.view.questexpiry.timeremaining,landing.view.furnimatic.recyclerpromo.timer.expired,2013-07-09 23:59;spacing,10;dailyquest,false,0,0,landing.view.paloozamusicquest.button,habbo_palooza_5,habbo_palooza_5.1372663237916
landing.view.paloozaquest5.layout=bitmap.uri,${image.library.url}web_promo_small/spromo_hblooza_1984.png;content.x,210;content.y,0;bitmap.x,35;bitmap.y,0;bitmap.width,150;bitmap.height,150;container.height,100;
landing.view.paloozaquest5.widget=generic
landing.view.paloozaquest6.conf=caption,quests.habbo_palooza.name;bodytext,quests.habbo_palooza_6.1372672585495.chaininfo;spacing,10;customtimer,false,0,0,landing.view.questexpiry.timeremaining,landing.view.furnimatic.recyclerpromo.timer.expired,2013-07-10 23:59;spacing,10;dailyquest,false,0,0,landing.view.paloozamusicquest.button,habbo_palooza_6,habbo_palooza_6.1372672585495
landing.view.paloozaquest6.layout=bitmap.uri,${image.library.url}web_promo_small/spromo_hblooza_1973.png;content.x,210;content.y,0;bitmap.x,35;bitmap.y,0;bitmap.width,150;bitmap.height,150;container.height,100;
landing.view.paloozaquest6.widget=generic
landing.view.paloozaquest7.conf=caption,quests.habbo_palooza.name;bodytext,quests.habbo_palooza_7.1372679318352.chaininfo;spacing,10;customtimer,false,0,0,landing.view.questexpiry.timeremaining,landing.view.furnimatic.recyclerpromo.timer.expired,2013-07-11 23:59;spacing,10;dailyquest,false,0,0,landing.view.paloozamusicquest.button,habbo_palooza_7,habbo_palooza_7.1372679318352
landing.view.paloozaquest7.layout=bitmap.uri,${image.library.url}web_promo_small/spromo_hblooza_1994.png;content.x,210;content.y,0;bitmap.x,35;bitmap.y,0;bitmap.width,150;bitmap.height,150;container.height,100;
landing.view.paloozaquest7.widget=generic
landing.view.paloozaquest8.conf=caption,quests.habbo_palooza.name;bodytext,quests.habbo_palooza_8.1372681347611.chaininfo;spacing,10;customtimer,false,0,0,landing.view.questexpiry.timeremaining,landing.view.furnimatic.recyclerpromo.timer.expired,2013-07-12 23:59;spacing,10;dailyquest,false,0,0,landing.view.paloozamusicquest.button,habbo_palooza_8,habbo_palooza_8.1372681347611
landing.view.paloozaquest8.layout=bitmap.uri,${image.library.url}web_promo_small/spromo_hblooza_1988.png;content.x,210;content.y,0;bitmap.x,35;bitmap.y,0;bitmap.width,150;bitmap.height,150;container.height,100;
landing.view.paloozaquest8.widget=generic
landing.view.paloozaquest9.conf=caption,quests.habbo_palooza.name;bodytext,quests.habbo_palooza_9.1372682893079.chaininfo;spacing,10;customtimer,false,0,0,landing.view.questexpiry.timeremaining,landing.view.furnimatic.recyclerpromo.timer.expired,2013-07-13 23:59;spacing,10;dailyquest,false,0,0,landing.view.paloozamusicquest.button,habbo_palooza_9,habbo_palooza_9.1372682893079
landing.view.paloozaquest9.layout=bitmap.uri,${image.library.url}web_promo_small/spromo_hblooza_1984.png;content.x,210;content.y,0;bitmap.x,35;bitmap.y,0;bitmap.width,150;bitmap.height,150;container.height,100;
landing.view.paloozaquest9.widget=generic
landing.view.paloozarentspace.conf=caption,landing.view.paloozarentspace.header;bodytext,landing.view.paloozarentspace.body;internallinkbutton,landing.view.paloozarentspace.button,navigator/tab/official
landing.view.paloozarentspace.layout=bitmap.uri,${image.library.url}reception/spromo_hblooza_rent.png;bitmap.x,0;bitmap.y,90;container.height,250
landing.view.paloozarentspace.widget=generic
landing.view.paloozatalentcomp.conf=caption,landing.view.paloozatalentcomp.header;bodytext,landing.view.paloozatalentcomp.body;link,landing.view.paloozatalentcomp.button,http://185.125.169.147/articles/2937-habbo-palooza-global-talent-competition-finalists
landing.view.paloozatalentcomp.layout=
landing.view.paloozatalentcomp.widget=generic
landing.view.paris15_ltdfountain.conf=caption,landing.view.habbo15ltd.header;bodytext,landing.view.habbo15ltd.body;catalogbutton,landing.view.cp15stpat.button,ler
landing.view.paris15_ltdfountain.layout=bitmap.uri,${image.library.url}web_promo_small/ParisLTD_Rare_spromo.png;bitmap.x,100;bitmap.y,140;container.height,320
landing.view.paris15_ltdfountain.widget=generic
landing.view.paris15_ltdfountainoff.conf=caption,landing.view.habbo15ltd.header;bodytext,landing.view.habbo15ltd.body;customtimer,false,0,0,landing.view.cp15ltd.button,landing.view.raretimer.timer.expired,2015-09-05 15:00
landing.view.paris15_ltdfountainoff.layout=bitmap.uri,${image.library.url}web_promo_small/ParisLTD_Rare_spromo.png;bitmap.x,100;bitmap.y,100;container.height,290
landing.view.paris15_ltdfountainoff.widget=generic
landing.view.parisCommunityGoal.widget=communitygoalvsmode
landing.view.paypromoguitar.conf=caption,landing.view.bonusrare.header;credithabbletbutton,landing.view.bonusrare.button
landing.view.paypromoguitar.layout=bitmap.uri,${image.library.url}reception/hblooza_guitar11.png;bitmap.x,0;bitmap.y,90;container.height,250
landing.view.paypromoguitar.widget=generic
landing.view.pegasusnormal.conf=caption,landing.view.pegwing14.header;bodytext,landing.view.pegwing14.body;spacing,2;catalogbutton,landing.view.pegwing14.button,horse_styles
landing.view.pegasusnormal.layout=
landing.view.pegasusnormal.widget=generic
landing.view.pegasustimer.conf=caption,landing.view.pegwing14.header;bodytext,landing.view.pegwing14.body;spacing,2;customtimer,false,0,0,landing.view.pegwing14.timer,landing.view.raretimer.timer.expired,2014-09-27 15:00
landing.view.pegasustimer.layout=
landing.view.pegasustimer.widget=generic
landing.view.petpromonov13.conf=caption,landing.view.petpromonov13.header;bodytext,landing.view.petpromonov13.body;catalogbutton,landing.view.petpromonov13.button,pets_info
landing.view.petpromonov13.layout=bitmap.uri,${image.library.url}web_promo_small/spromo_pet_discount.gif;bitmap.x,0;bitmap.y,0;container.height,200
landing.view.petpromonov13.widget=generic
landing.view.petroombundle.conf=caption,landing.view.petroombundle.header;bodytext,landing.view.petroombundle.body;catalogbutton,landing.view.petroombundle.button,wrestling_bundle
landing.view.petroombundle.layout=bitmap.uri,${image.library.url}web_promo_small/pet_week_small_promo.png;bitmap.x,0;bitmap.y,140;container.height,290
landing.view.petroombundle.widget=generic
landing.view.pets.conf=caption,landing.view.pets.header;bodytext,landing.view.pets.body;catalogbutton,landing.view.pets.button,pet_dragon
landing.view.pets.layout=
landing.view.pets.widget=generic
landing.view.petweek14.conf=caption,landing.view.petweek14.header;bodytext,landing.view.petweek14.body;catalogbutton,landing.view.petweek14.button,pet_dragon
landing.view.petweek14.layout=bitmap.uri,${image.library.url}web_promo_small/spromo_pet_discount20p.gif;bitmap.x,0;bitmap.y,0;container.height,255
landing.view.petweek14.widget=generic
landing.view.pinatapromo.conf=caption,Landing.view.pinatas.header;bodytext,Landing.view.pinatas.body;catalogbutton,Landing.view.pinatas.button,pinatas
landing.view.pinatapromo.layout=bitmap.uri,${image.library.url}catalogue/catalog_teaser_pinata.gif;content.x,210;content.y,0;bitmap.x,35;bitmap.y,0;bitmap.width,150;bitmap.height,150;container.height,100;
landing.view.pinatapromo.widget=generic
landing.view.piratebundle.conf=title,landing.view.piratebundle.title;caption,landing.view.piratebundle.header;bodytext,landing.view.piratebundle.body;spacing,2;credithabbletbutton,landing.view.piratebundle.button
landing.view.piratebundle.layout=bitmap.uri,${image.library.url}catalogue/pirate_bundle.gif;bitmap.x,20;bitmap.y,120;container.height,270
landing.view.piratebundle.widget=generic
landing.view.piratecompsubmit.conf=title,landing.view.roomcompetition.title;caption,landing.view.piratecompsubmit.header;bodytext,landing.view.piratecompsubmit.body;link,landing.view.hstarscompetition.terms.bodytext,http://help.habbo.com/;submitcompetitionroom,landing.view.sproom2.button,landing.view.roomcompetition.submitdone,piratebottlecollector;customtimer,false,38,30,landing.view.roomcompetition.submit.votingstartsin,,2013-09-01 11:00
landing.view.piratecompsubmit.layout=bitmap.uri,${image.library.url}reception/royal_ship_teaser.gif;content.x,170;content.y,20;bitmap.x,10;bitmap.y,20;bitmap.width,150;bitmap.height,150;container.height,100;
landing.view.piratecompsubmit.widget=generic
landing.view.piratecompvote.conf=title,landing.view.roomcompetition.title;caption,landing.view.piratecompvote.header;bodytext,landing.view.piratecompvote.body;gotocompetitionroombutton,landing.view.sproomvote.button,piratebottlecollector;customtimer,false,50,155,landing.view.roomcompetition.vote.timeremaining,,2013-09-02 15:15;spacing,20
landing.view.piratecompvote.layout=bitmap.uri,${image.library.url}reception/royal_ship_teaser.gif;content.x,170;content.y,20;bitmap.x,10;bitmap.y,20;bitmap.width,150;bitmap.height,150;container.height,100;
landing.view.piratecompvote.widget=generic
landing.view.piratefurni.conf=title,landing.view.piratefurni.title;caption,landing.view.piratefurni.header;bodytext,landing.view.piratefurni.body;spacing,2;catalogbutton,landing.view.piratefurni.button,set_pirates
landing.view.piratefurni.layout=bitmap.uri,${image.library.url}pirates2013/spromo_pirate_0.png;bitmap.x,20;bitmap.y,120;container.height,270
landing.view.piratefurni.widget=generic
landing.view.piraterares.conf=title,landing.view.piraterares.title;caption,landing.view.piraterares.header;bodytext,landing.view.piraterares.body;spacing,2;catalogbutton,landing.view.piratefurni.button,pirate_rares
landing.view.piraterares.layout=bitmap.uri,${image.library.url}pirates2013/rare_teaser_all.gif;bitmap.x,20;bitmap.y,120;container.height,270
landing.view.piraterares.widget=generic
landing.view.piraterares1.conf=title,landing.view.piraterares.title;caption,landing.view.rarekraken.header;bodytext,landing.view.piraterares.body;spacing,2;catalogbutton,landing.view.checkitout.button,pirate_rares
landing.view.piraterares1.layout=bitmap.uri,${image.library.url}catalogue/teaser_kraken.gif;bitmap.x,20;bitmap.y,120;container.height,280
landing.view.piraterares1.widget=generic
landing.view.piraterares2.conf=title,landing.view.piraterares.title;caption,landing.view.rarenavigation.header;bodytext,landing.view.piraterares.body;spacing,2;catalogbutton,landing.view.checkitout.button,pirate_rares
landing.view.piraterares2.layout=bitmap.uri,${image.library.url}catalogue/teaser_nav.gif;bitmap.x,20;bitmap.y,120;container.height,280
landing.view.piraterares2.widget=generic
landing.view.piraterares3.conf=title,landing.view.piraterares.title;caption,landing.view.rareposeidon.header;bodytext,landing.view.piraterares.body;spacing,2;catalogbutton,landing.view.checkitout.button,pirate_rares
landing.view.piraterares3.layout=bitmap.uri,${image.library.url}catalogue/teaser_posidon.gif;bitmap.x,20;bitmap.y,120;container.height,280
landing.view.piraterares3.widget=generic
landing.view.pirateraresa.conf=title,landing.view.piraterares.title;caption,landing.view.piraterares.header;bodytext,landing.view.piraterares.body;spacing,2;customtimer,false,0,0,landing.view.raretimer.timer,landing.view.raretimer.timer.expired,2013-08-26 16:01;catalogbutton,landing.view.checkitout.button,pirate_rares
landing.view.pirateraresa.layout=container.height,280
landing.view.pirateraresa.widget=generic
landing.view.pirateraresb.conf=title,landing.view.piraterares.title;caption,landing.view.piraterares.header;bodytext,landing.view.piraterares.body;spacing,2;customtimer,false,0,0,landing.view.raretimer.timer,landing.view.raretimer.timer.expired,2013-08-28 16:01;catalogbutton,landing.view.checkitout.button,pirate_rares
landing.view.pirateraresb.layout=container.height,270
landing.view.pirateraresb.widget=generic
landing.view.pirateraresc.conf=title,landing.view.piraterares.title;caption,landing.view.piraterares.header;bodytext,landing.view.piraterares.body;spacing,2;catalogbutton,landing.view.checkitout.button,pirate_rares
landing.view.pirateraresc.layout=container.height,270
landing.view.pirateraresc.widget=generic
landing.view.pirateroyaldock.conf=title,landing.view.pirateroyaldock.title;caption,landing.view.pirateroyaldock.header;bodytext,landing.view.pirateroyaldock.body;internallinkbutton,landing.view.pirateroyaldock.button,navigator/tab/official
landing.view.pirateroyaldock.layout=bitmap.uri,${image.library.url}reception/royal_ship_teaser.gif;content.x,170;content.y,20;bitmap.x,0;bitmap.y,20;bitmap.width,150;bitmap.height,150;container.height,100;
landing.view.pirateroyaldock.widget=generic
landing.view.pixelremove.promo.catalogpage=set_kuurna
landing.view.ponyexpress.conf=caption,landing.view.ponyexpress.header;bodytext,landing.view.ponyexpress.body;spacing,2;gotoroombutton,landing.view.ponyexpress.button,65840464
landing.view.ponyexpress.layout=bitmap.uri,${image.library.url}web_promo_small/small_promo_horse_bundle.gif;bitmap.x,0;bitmap.y,0;container.height,250
landing.view.ponyexpress.widget=generic
landing.view.rareghostship.conf=title,landing.view.piraterares.title;caption,landing.view.rareghostship.header;bodytext,landing.view.rareghostship.body;spacing,2;catalogbutton,landing.view.checkitout.button,pirate_ghostship
landing.view.rareghostship.layout=bitmap.uri,${image.library.url}catalogue/pirate_ghostshipandbadge.gif;bitmap.x,20;bitmap.y,120;container.height,280
landing.view.rareghostship.widget=generic
landing.view.rarehotdog.conf=caption,landing.view.rarehotdog.header;bodytext,landing.view.rareschedule.body;catalogbutton,landing.view.checkitout.button,palooza_rares
landing.view.rarehotdog.layout=bitmap.uri,${image.library.url}illustrations/15jul_hotdog.png;bitmap.x,0;bitmap.y,90;container.height,250
landing.view.rarehotdog.widget=generic
landing.view.rarepopcorn.conf=caption,landing.view.rarepopcorn.header;bodytext,landing.view.rareschedule.body;catalogbutton,landing.view.checkitout.button,palooza_rares
landing.view.rarepopcorn.layout=bitmap.uri,${image.library.url}illustrations/17jul_popcorn.png;bitmap.x,0;bitmap.y,90;container.height,250
landing.view.rarepopcorn.widget=generic
landing.view.right_pane_dimmer.hidden=false
landing.view.room94.conf=caption,landing.view.room94.header;bodytext,landing.view.room94.body;spacing,10;link,landing.view.room94.button,http://www.habbopalooza.com;spacing,10;customtimer,false,0,0,,,2013-07-11 18:00
landing.view.room94.layout=bitmap.uri,${image.library.url}reception/room94.png;content.x,210;content.y,0;bitmap.x,35;bitmap.y,-10;bitmap.width,150;bitmap.height,150;container.height,100;
landing.view.room94.widget=generic
landing.view.roombundle15.conf=caption,landing.view.roombundle15.header;bodytext,landing.view.roombundle15.body;gotoroombutton,landing.view.roombundle15.button,66539412
landing.view.roombundle15.layout=bitmap.uri,${image.library.url}web_promo_small/smallpromo_boxingbundle.png;bitmap.x,100;bitmap.y,130;bitmap.height,150
landing.view.roombundle15.widget=generic
landing.view.roomcategory=questing
landing.view.runwayltd.conf=caption,landing.view.runwayltd.header;bodytext,landing.view.runwayltd.body;catalogbutton,landing.view.runwayltd.button,ler
landing.view.runwayltd.layout=bitmap.uri,${image.library.url}web_promo_small/LTD_s_promo.gif;bitmap.x,50;bitmap.y,140;bitmap.height,150
landing.view.runwayltd.widget=generic
landing.view.runwayltd2.conf=caption,landing.view.runwayltd.header;bodytext,landing.view.runwayltd.body;customtimer,false,0,5,landing.view.raretimer.timer,landing.view.raretimer.timer.expired,2014-03-27 17:00
landing.view.runwayltd2.layout=bitmap.uri,${image.library.url}web_promo_small/LTD_s_promo.gif;bitmap.x,50;bitmap.y,160;bitmap.height,150
landing.view.runwayltd2.widget=generic
landing.view.runwayrarebox.conf=caption,landing.view.runwayrarebox.header;bodytext,landing.view.runwayrarebox.body;spacing,2;catalogbutton,landing.view.runwayrarebox.button,rare_box
landing.view.runwayrarebox.layout=bitmap.uri,${image.library.url}web_promo_small/habbopresentsmallpromo.png;bitmap.x,30
landing.view.runwayrarebox.widget=generic
landing.view.runwayrarebox2.conf=caption,landing.view.runwayrarebox.header;bodytext,landing.view.runwayrarebox.body;spacing,2;customtimer,false,0,0,landing.view.runwayrarebox2.timeremaining,landing.view.runwayrarebox2.timer.expired,2014-03-22 18:00
landing.view.runwayrarebox2.layout=bitmap.uri,${image.library.url}web_promo_small/habbopresentsmallpromo.png;bitmap.x,30
landing.view.runwayrarebox2.widget=generic
landing.view.safetyvid.conf=caption,landing.view.safetyvid.header;bodytext,landing.view.safetyvid.body;link,landing.view.safetyvid.button,http://185.125.169.147/room/62259178
landing.view.safetyvid.layout=bitmap.uri,${image.library.url}album2207/it_computer.gif;content.x,210;content.y,0;bitmap.x,100;bitmap.y,0;bitmap.width,61;bitmap.height,75;container.height,100;
landing.view.safetyvid.widget=generic
landing.view.schoolbundles.conf=caption,landing.view.schoolbundles.header;bodytext,landing.view.schoolbundles.body;catalogbutton,landing.view.schoolbundles.button,bundle_banzai
landing.view.schoolbundles.layout=bitmap.uri,${image.library.url}reception/bts_banzai_teaser.png;bitmap.x,0;bitmap.y,120;container.height,255
landing.view.schoolbundles.widget=generic
landing.view.schoolfurni.conf=caption,landing.view.schoolfurni.header;bodytext,landing.view.schoolfurni.body;catalogbutton,landing.view.schoolfurni.button,set_backtoschool
landing.view.schoolfurni.layout=bitmap.uri,${image.library.url}reception/landing_view_skl_2.gif;content.x,210;content.y,0;bitmap.x,20;bitmap.y,0;bitmap.width,61;bitmap.height,150;container.height,255
landing.view.schoolfurni.widget=generic
landing.view.schoolprom.conf=caption,landing.view.schoolprom.header;bodytext,landing.view.schoolprom.body
landing.view.schoolprom.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.schoolprom.widget=generic
landing.view.schoolrares.conf=caption,landing.view.schoolrares.header;bodytext,landing.view.schoolrares.body;catalogbutton,landing.view.schoolfurni.button,palooza_rares
landing.view.schoolrares.layout=bitmap.uri,${image.library.url}catalogue/small_promo_school_rares.gif;content.x,210;content.y,0;bitmap.x,20;bitmap.y,0;bitmap.width,61;bitmap.height,150;container.height,255
landing.view.schoolrares.widget=generic
landing.view.sep15million.conf=caption,landing.view.sep15million.header;bodytext,landing.view.sep15million.body;
landing.view.sep15million.layout=
landing.view.sep15million.widget=generic
landing.view.serenityspabundle.conf=caption,landing.view.serenityspabundle.header;bodytext,landing.view.serenityspabundle.body;gotoroombutton,landing.view.serenityspabundle.button,65879611
landing.view.serenityspabundle.layout=bitmap.uri,${image.library.url}web_promo_small/sparoombundleteaser.png;content.x,170;content.y,0;bitmap.x,0;bitmap.y,0;bitmap.width,0;bitmap.height,0;container.height,240;
landing.view.serenityspabundle.widget=generic
landing.view.shakespearefurnipack.conf=caption,landing.view.shakespearefurnipack.header;bodytext,landing.view.shakespearefurnipack.body;catalogbutton,landing.view.shakespearefurnipack.button,stories_shakespeare
landing.view.shakespearefurnipack.layout=bitmap.uri,${image.library.url}web_promo_small/storiesshakespeare_gardenbundle_spromo.png;content.x,0;content.y,0;bitmap.x,100;bitmap.y,90;bitmap.width,0;bitmap.height,0;container.height,240
landing.view.shakespearefurnipack.widget=generic
landing.view.smallpool.conf=caption,landing.view.smallpool.header;bodytext,landing.view.smallpool.body;spacing,2;catalogbutton,landing.view.smallpool.button,small_pool_bundle
landing.view.smallpool.layout=
landing.view.smallpool.widget=generic
landing.view.snowflakes13quest.conf=caption,landing.view.snowflakes13quest.header;bodytext,landing.view.snowflakes13quest.body;spacing,2;internallinkbutton,landing.view.snowflakes13quest.button,questengine/calendar
landing.view.snowflakes13quest.layout=bitmap.uri,${image.library.url}catalogue/ctlg_pic_snowflake_pilot.gif;bitmap.x,50;bitmap.y,90;container.height,200;
landing.view.snowflakes13quest.widget=generic
landing.view.sparares.conf=caption,landing.view.sparares.header;bodytext,landing.view.sparares.body;spacing,2;customtimer,false,0,0,landing.view.raretimer.timer,landing.view.raretimer.timer.expired,2014-02-17 19:00;catalogbutton,landing.view.schoolfurni.button,spa_rares
landing.view.sparares.layout=bitmap.uri,${image.library.url}catalogue/val14_wchair.gif;content.x,0;content.y,0;bitmap.x,170;bitmap.y,100;bitmap.width,61;bitmap.height,150;container.height,255
landing.view.sparares.widget=generic
landing.view.sparares2.conf=caption,landing.view.sparares.header;bodytext,landing.view.sparares.body;spacing,2;customtimer,false,0,0,landing.view.raretimer.timer,landing.view.raretimer.timer.expired,2014-02-19 19:00;catalogbutton,landing.view.schoolfurni.button,spa_rares
landing.view.sparares2.layout=bitmap.uri,${image.library.url}catalogue/val14_lamp.png;content.x,0;content.y,0;bitmap.x,180;bitmap.y,70;bitmap.width,61;bitmap.height,150;container.height,300
landing.view.sparares2.widget=generic
landing.view.sparares3.conf=caption,landing.view.sparares.header;bodytext,landing.view.sparares.body;spacing,2;customtimer,false,0,0,landing.view.raretimer.timer,landing.view.raretimer.timer.expired,2014-02-21 19:00;catalogbutton,landing.view.schoolfurni.button,spa_rares
landing.view.sparares3.layout=bitmap.uri,${image.library.url}catalogue/eternity_fountain.gif;content.x,0;content.y,0;bitmap.x,150;bitmap.y,70;bitmap.width,61;bitmap.height,150;container.height,300
landing.view.sparares3.widget=generic
landing.view.sparares4.conf=caption,landing.view.sparares.header;bodytext,landing.view.sparares.body;spacing,2;customtimer,false,0,0,landing.view.raretimer.timer,landing.view.raretimer.timer.expired,2014-02-23 19:00;catalogbutton,landing.view.schoolfurni.button,spa_rares
landing.view.sparares4.layout=bitmap.uri,${image.library.url}catalogue/val14_lovelock3.png;content.x,0;content.y,0;bitmap.x,180;bitmap.y,50;bitmap.width,61;bitmap.height,150;container.height,255
landing.view.sparares4.widget=generic
landing.view.sparares5.conf=caption,landing.view.sparares.header;bodytext,landing.view.sparares.body;spacing,2;customtimer,false,0,0,landing.view.raretimer.timer,landing.view.raretimer.timer.expired,2014-02-28 19:00;catalogbutton,landing.view.schoolfurni.button,ler
landing.view.sparares5.layout=bitmap.uri,${image.library.url}web_promo_small/sage.gif;content.x,0;content.y,0;bitmap.x,180;bitmap.y,50;bitmap.width,61;bitmap.height,150;container.height,255
landing.view.sparares5.widget=generic
landing.view.starteroom.conf=caption,product_starter_roomdeal1_name;bodytext,product_starter_roomdeal1_desc;spacing,2;credithabbletbutton,landing.view.checkitout.button
landing.view.starteroom.layout=bitmap.uri,${image.library.url}catalogue/noob_bundle_furni.gif;content.y,0;container.height,250
landing.view.starteroom.widget=generic
landing.view.sumcat.conf=caption,landing.view.summercat.header;bodytext,landing.view.summercat.body;catalogbutton,landing.view.summercat.button,set_pool
landing.view.sumcat.layout=bitmap.uri,${image.library.url}web_promo_small/spromo_summer.gif;bitmap.x,18;bitmap.y,0;content.x,210;content.y,0;container.height,100
landing.view.sumcat.widget=generic
landing.view.tabletfin.conf=caption,landing.view.tabletfin.header;bodytext,landing.view.tabletfin.body;spacing,2;gotoroombutton,landing.view.tabletfin.button,66736031
landing.view.tabletfin.layout=
landing.view.tabletfin.widget=generic
landing.view.tent.conf=caption,landing.view.tent.header;bodytext,landing.view.tent.body;catalogbutton,landing.view.tent.button,palooza_tents
landing.view.tent.layout=bitmap.uri,${image.library.url}reception/email_image_tents.png;bitmap.x,18;bitmap.y,0;content.x,210;content.y,0;container.height,140
landing.view.tent.widget=generic
landing.view.val14kiss.conf=caption,quests.val14_kiss.name;bodytext,quests.val14_kiss.1392199148238.chaininfo;internallinkbutton,landing.view.val14kiss.button,navigator/goto/home
landing.view.val14kiss.layout=bitmap.uri,${image.library.url}album1584/VSP09.gif;content.x,170;content.y,0;bitmap.x,35;bitmap.y,0;bitmap.width,150;bitmap.height,150;container.height,100;
landing.view.val14kiss.widget=generic
landing.view.val15haiku1.conf=caption,landing.view.val15haiku1.header;bodytext,landing.view.val15haiku1.body;gotoroombutton,landing.view.val15haiku1.button,68987938
landing.view.val15haiku1.layout=bitmap.uri,${image.library.url}web_promo_small/val15_bonus_rare_2_small_promo.png;bitmap.x,0;content.x,200;content.y,0;bitmap.y,0;container.height,250
landing.view.val15haiku1.widget=generic
landing.view.val15haiku10.conf=caption,landing.view.val15haiku10.header;bodytext,landing.view.val15haiku10.body;gotoroombutton,landing.view.val15haiku10.button,68987947
landing.view.val15haiku10.layout=bitmap.uri,${image.library.url}web_promo_small/val15_bonus_rare_2_small_promo.png;bitmap.x,0;content.x,200;content.y,0;bitmap.y,0;container.height,250
landing.view.val15haiku10.widget=generic
landing.view.val15haiku2.conf=caption,landing.view.val15haiku2.header;bodytext,landing.view.val15haiku2.body;gotoroombutton,landing.view.val15haiku2.button,68987939
landing.view.val15haiku2.layout=bitmap.uri,${image.library.url}web_promo_small/val15_bonus_rare_2_small_promo.png;bitmap.x,0;content.x,200;content.y,0;bitmap.y,0;container.height,250
landing.view.val15haiku2.widget=generic
landing.view.val15haiku3.conf=caption,landing.view.val15haiku3.header;bodytext,landing.view.val15haiku3.body;gotoroombutton,landing.view.val15haiku3.button,68987940
landing.view.val15haiku3.layout=bitmap.uri,${image.library.url}web_promo_small/val15_bonus_rare_2_small_promo.png;bitmap.x,0;content.x,200;content.y,0;bitmap.y,0;container.height,250
landing.view.val15haiku3.widget=generic
landing.view.val15haiku4.conf=caption,landing.view.val15haiku4.header;bodytext,landing.view.val15haiku4.body;gotoroombutton,landing.view.val15haiku4.button,68987942
landing.view.val15haiku4.layout=bitmap.uri,${image.library.url}web_promo_small/val15_bonus_rare_2_small_promo.png;bitmap.x,0;content.x,200;content.y,0;bitmap.y,0;container.height,250
landing.view.val15haiku4.widget=generic
landing.view.val15haiku5.conf=caption,landing.view.val15haiku5.header;bodytext,landing.view.val15haiku5.body;gotoroombutton,landing.view.val15haiku5.button,68987941
landing.view.val15haiku5.layout=bitmap.uri,${image.library.url}web_promo_small/val15_bonus_rare_2_small_promo.png;bitmap.x,0;content.x,200;content.y,0;bitmap.y,0;container.height,250
landing.view.val15haiku5.widget=generic
landing.view.val15haiku6.conf=caption,landing.view.val15haiku6.header;bodytext,landing.view.val15haiku6.body;gotoroombutton,landing.view.val15haiku6.button,68987943
landing.view.val15haiku6.layout=bitmap.uri,${image.library.url}web_promo_small/val15_bonus_rare_2_small_promo.png;bitmap.x,0;content.x,200;content.y,0;bitmap.y,0;container.height,250
landing.view.val15haiku6.widget=generic
landing.view.val15haiku7.conf=caption,landing.view.val15haiku7.header;bodytext,landing.view.val15haiku7.body;gotoroombutton,landing.view.val15haiku7.button,68987944
landing.view.val15haiku7.layout=bitmap.uri,${image.library.url}web_promo_small/val15_bonus_rare_2_small_promo.png;bitmap.x,0;content.x,200;content.y,0;bitmap.y,0;container.height,250
landing.view.val15haiku7.widget=generic
landing.view.val15haiku8.conf=caption,landing.view.val15haiku8.header;bodytext,landing.view.val15haiku8.body;gotoroombutton,landing.view.val15haiku8.button,68987945
landing.view.val15haiku8.layout=bitmap.uri,${image.library.url}web_promo_small/val15_bonus_rare_2_small_promo.png;bitmap.x,0;content.x,200;content.y,0;bitmap.y,0;container.height,250
landing.view.val15haiku8.widget=generic
landing.view.val15haiku9.conf=caption,landing.view.val15haiku9.header;bodytext,landing.view.val15haiku9.body;gotoroombutton,landing.view.val15haiku9.button,68987946
landing.view.val15haiku9.layout=bitmap.uri,${image.library.url}web_promo_small/val15_bonus_rare_2_small_promo.png;bitmap.x,0;content.x,200;content.y,0;bitmap.y,0;container.height,250
landing.view.val15haiku9.widget=generic
landing.view.val15ltd.conf=caption,landing.view.japan15ltd.header;bodytext,landing.view.japan15ltd.body;catalogbutton,landing.view.japan15ltd.button,ler
landing.view.val15ltd.layout=
landing.view.val15ltd.widget=generic
landing.view.val15ltdoff.conf=caption,landing.view.japan15ltd.header;bodytext,landing.view.japan15ltd.body;customtimer,false,0,0,landing.view.raretimer.timer,landing.view.raretimer.timer.expired,2015-02-14 15:00
landing.view.val15ltdoff.layout=
landing.view.val15ltdoff.widget=generic
landing.view.venetiaroombundle.conf=caption,landing.view.venetiaroombundle.header;bodytext,landing.view.venetiaroombundle.body;internallinkbutton,landing.view.venetiaroombundle.button,habblet/open/credits
landing.view.venetiaroombundle.layout=bitmap.uri,${image.library.url}web_promo_small/venice_s_promo.gif;bitmap.x,0;bitmap.y,120;container.height,270
landing.view.venetiaroombundle.widget=generic
landing.view.videotvs.conf=caption,landing.view.videotvs.header;bodytext,catalog.page.youtube_tvs.text_0;catalogbutton,landing.view.checkitout.button,youtube_tvs
landing.view.videotvs.layout=bitmap.uri,${image.library.url}catalogue/spromo_tvs.gif;bitmap.x,0;bitmap.y,90;container.height,250
landing.view.videotvs.widget=generic
landing.view.view.army15petdisc.conf=caption,landing.view.view.army15petdisc.header;bodytext,landing.view.view.army15petdisc.body;catalogbutton,landing.view.view.army15petdisc.button,pet_puppy
landing.view.view.army15petdisc.layout=
landing.view.view.army15petdisc.widget=generic
landing.view.vikingclanbundles.conf=caption,landing.view.vikingclanbundles.header;bodytext,landing.view.vikingclanbundles.body;spacing,2;catalogbutton,landing.view.battleshade.button,vikings_battleshade;catalogbutton,landing.view.steelscar.button,vikings_steelscar
landing.view.vikingclanbundles.layout=
landing.view.vikingclanbundles.widget=generic
landing.view.vikingfurni.conf=caption,landing.view.vikingfurni.header;bodytext,landing.view.vikingfurni.body;catalogbutton,landing.boutiquefurni.button,vikings
landing.view.vikingfurni.layout=
landing.view.vikingfurni.widget=generic
landing.view.vikingsCommunityGoal.widget=communitygoalvsmode
landing.view.vikingsltd.conf=caption,landing.view.vikingsltd.header;bodytext,landing.view.vikingsltd.body;spacing,2;customtimer,false,0,0,landing.view.vikingsltd.timer,landing.view.raretimer.timer.expired,2014-05-28 21:00
landing.view.vikingsltd.layout=bitmap.uri,${image.library.url}web_promo_small/vikings_throne.gif;bitmap.x,213;bitmap.y,100;bitmap.height,113
landing.view.vikingsltd.widget=generic
landing.view.vikingsltd1.conf=caption,landing.view.vikingsltd.header;bodytext,landing.view.vikingsltd.body;spacing,2;catalogbutton,landing.view.vikingsltd.button,ler
landing.view.vikingsltd1.layout=bitmap.uri,${image.library.url}web_promo_small/vikings_throne.gif;bitmap.x,213;bitmap.y,100;bitmap.height,113
landing.view.vikingsltd1.widget=generic
landing.view.vipschedule.conf=caption,landing.view.vipvisits.header;bodytext,landing.view.vipvisits.body;link,landing.view.vipvisits.button,http://www.habbopalooza.com
landing.view.vipschedule.layout=
landing.view.vipschedule.widget=generic
landing.view.viruspromo.conf=caption,landing.view.viruspromo.header;bodytext,landing.view.viruspromo.body;link,landing.view.viruspromo.button,http://185.125.169.147/articles
landing.view.viruspromo.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.viruspromo.widget=generic
landing.view.wc14lockerbundle.conf=caption,landing.view.wc14lockerbundle.header;bodytext,landing.view.wc14lockerbundle.body;spacing,2;catalogbutton,landing.view.wc14lockerbundle.button,wc2014_lockerroom
landing.view.wc14lockerbundle.layout=
landing.view.wc14lockerbundle.widget=generic
landing.view.wc14ltd.conf=caption,landing.view.wc14ltd.header;bodytext,landing.view.wc14ltd.body;catalogbutton,landing.view.wc14ltd.button,ler
landing.view.wc14ltd.layout=bitmap.uri,${image.library.url}/web_promo_small/ltd_landing.gif;bitmap.x,160;bitmap.y,140;container.height,255
landing.view.wc14ltd.widget=generic
landing.view.wc14mansionbundle.conf=caption,landing.view.wc14mansionbundle.header;bodytext,landing.view.wc14mansionbundle.body;spacing,2;catalogbutton,landing.view.wc14mansionbundle.button,wc2014_mansionroom
landing.view.wc14mansionbundle.layout=bitmap.uri,${image.library.url}web_promo_small/spromo_mansionRB.png;bitmap.x,0;bitmap.y,0;container.height,250;content.x,170
landing.view.wc14mansionbundle.widget=generic
landing.view.wcrares14.conf=caption,landing.view.wcrares14.header;bodytext,landing.view.wcrares14.body;spacing,2;catalogbutton,landing.view.wcrares14.button,wc2014_rares
landing.view.wcrares14.layout=
landing.view.wcrares14.widget=generic
landing.view.wedding_bundle.conf=caption,landing.view.wedding_bundle.header;bodytext,landing.view.wedding_bundle.body;catalogbutton,landing.view.wedding_bundle.button,wedding_bundle
landing.view.wedding_bundle.layout=bitmap.uri,${image.library.url}web_promo_small/spromo_1506_wed.png;bitmap.x,50;bitmap.y,0;container.height,250
landing.view.wedding_bundle.widget=generic
landing.view.welcomeschool.conf=caption,landing.view.welcomeschool.header;bodytext,landing.view.welcomeschool.body;internallinkbutton,landing.view.welcomeschool.button,habblet/open/news
landing.view.welcomeschool.layout=bitmap.uri,${image.library.url}reception/landing_view_skl_1.gif;content.x,210;content.y,0;bitmap.x,20;bitmap.y,0;bitmap.width,61;bitmap.height,162;container.height,220
landing.view.welcomeschool.widget=generic
landing.view.wildWestLTD.conf=caption,landing.view.wildWestLTD.header;bodytext,landing.view.wildWestLTD.body;spacing,2;customtimer,false,0,0,landing.view.wildWestLTD.timer,landing.view.raretimer.timer.expired,2014-08-23 17:00;catalogbutton,landing.view.wildWestLTD.button,ler
landing.view.wildWestLTD.layout=
landing.view.wildWestLTD.widget=generic
landing.view.wildWestLTDvisible.conf=caption,landing.view.wildWestLTD.header;bodytext,landing.view.wildWestLTD.body;spacing,2;catalogbutton,landing.view.wildWestLTD.button,ler
landing.view.wildWestLTDvisible.layout=bitmap.uri,${image.library.url}web_promo_small/wildwest_ltd_clean_image.png;bitmap.x,190;bitmap.y,130;container.height,200
landing.view.wildWestLTDvisible.widget=generic
landing.view.wildwest14buffalo.conf=caption,landing.view.wildwest14buffalo.header;bodytext,landing.view.wildwest14buffalo.body;spacing,2;catalogbutton,landing.view.wildwest14buffalo.button,wild_rares
landing.view.wildwest14buffalo.layout=bitmap.uri,${image.library.url}web_promo_small/st_wildwest_rarefurni_teaser.png;bitmap.x,0;bitmap.y,0;container.height,250
landing.view.wildwest14buffalo.widget=generic
landing.view.wildwestChallengeCommunityGoal.widget=communitygoal
landing.view.wintergameroom.conf=caption,landing.view.wintergameroom.header;bodytext,landing.view.wintergameroom.body;gotoroombutton,landing.view.wintergameroom.button,65993481
landing.view.wintergameroom.layout=bitmap.uri,${image.library.url}web_promo_small/sp_olybundle.png;content.x,0;content.y,0;bitmap.x,100;bitmap.y,140;bitmap.width,0;bitmap.height,0;container.height,250
landing.view.wintergameroom.widget=generic
landing.view.womansDayCommunityGoal.widget=communitygoal
landing.view.woz.conf=caption,landing.view.woz.header;bodytext,landing.view.woz.body;gamecenterbutton,landing.view.woz.button,101xp_zombie_dev
landing.view.woz.layout=bitmap.uri,${image.library.url}web_promo_small/game_promo_small.png;bitmap.x,70;bitmap.y,75;container.height,200
landing.view.woz.widget=generic
landing.view.wwestfurni.conf=caption,landing.view.wwestfurni.header;bodytext,landing.view.wwestfurni.body;catalogbutton,landing.view.wwestfurni.button,wild_west
landing.view.wwestfurni.layout=bitmap.uri,${image.library.url}web_promo_small/spromo_wildwestfurni.png;bitmap.x,50;bitmap.y,-20;container.height,255
landing.view.wwestfurni.widget=generic
landing.view.wwestfurni2.conf=caption,landing.view.wwestfurni2.header;bodytext,landing.view.wwestfurni2.body;spacing,2;catalogbutton,landing.view.wwestfurni2.button,wild_west
landing.view.wwestfurni2.layout=
landing.view.wwestfurni2.widget=generic
landing.view.wwestrares.conf=caption,landing.view.wwestrares.header;bodytext,landing.view.wwestrares.body;catalogbutton,landing.view.wwestrares.button,wild_rares
landing.view.wwestrares.layout=bitmap.uri,${image.library.url}web_promo_small/WildWestTillGallowsSpromo.png;bitmap.x,0;bitmap.y,120;container.height,270
landing.view.wwestrares.widget=generic
landing.view.wwesttownbund.conf=caption,landing.view.wwesttownbund.header;bodytext,landing.view.wwesttownbund.body;spacing,2;catalogbutton,landing.view.wwesttownbund.button,rattlesnake_bundle
landing.view.wwesttownbund.layout=
landing.view.wwesttownbund.widget=generic
landing.view.wwesttrainbun.conf=caption,landing.view.wwesttrainbun.header;bodytext,landing.view.wwesttrainbun.body;catalogbutton,landing.view.wwesttrainbun.button,frontier_train1
landing.view.wwesttrainbun.layout=bitmap.uri,${image.library.url}catalogue/august14_wagon_internal.gif;bitmap.x,50;bitmap.y,0;container.height,250
landing.view.wwesttrainbun.widget=generic
landing.view.wwestwantedlock.conf=caption,landing.view.wwestwantedlock.header;bodytext,landing.view.wwestwantedlock.body;spacing,2;catalogbutton,landing.view.wwestwantedlock.button,wanter_poster
landing.view.wwestwantedlock.layout=
landing.view.wwestwantedlock.widget=generic
landing.view.xm14furniforbc.conf=caption,landing.view.xm14furniforbc.header;bodytext,landing.view.xm14furniforbc.body;spacing,2;internallinkbutton,landing.view.xm14furniforbc.button,catalog/warehouse/xmas_old_furni
landing.view.xm14furniforbc.layout=
landing.view.xm14furniforbc.widget=generic
landing.view.xmas13oldfurni.conf=caption,landing.view.xmas13oldfurni.header;bodytext,landing.view.xmas13oldfurni.body;spacing,2;catalogbutton,landing.view.xmas13oldfurni.button,xmas_old_furni
landing.view.xmas13oldfurni.layout=
landing.view.xmas13oldfurni.widget=generic
landing.view.xmas13polarbear.conf=caption,landing.view.xmas13polarbear.header;bodytext,landing.view.xmas13polarbear.body;spacing,2;catalogbutton,landing.view.xmas13polarbear.button,polar_bear_promo
landing.view.xmas13polarbear.layout=bitmap.uri,${image.library.url}web_promo_small/promo_small_polar_bear.gif;bitmap.x,50;bitmap.y,100;container.height,250
landing.view.xmas13polarbear.widget=generic
landing.view.xmas13quest.conf=caption,landing.view.xmas13quest.header;bodytext,landing.view.xmas13quest.body;spacing,2;internallinkbutton,landing.view.xmas13quest.button,questengine/calendar
landing.view.xmas13quest.layout=bitmap.uri,${image.library.url}album3820/landing_view_quest_image.gif;bitmap.x,175;bitmap.y,100;container.height,250;
landing.view.xmas13quest.widget=generic
landing.view.xmas13snowflake.conf=caption,landing.view.xmas13snowflake.header;bodytext,landing.view.xmas13snowflake.body;spacing,2;catalogbutton,landing.view.xmas13snowflake.button,snowflakes
landing.view.xmas13snowflake.layout=bitmap.uri,${image.library.url}web_promo_small/xmas13_sf_promo.png;bitmap.x,60;bitmap.y,0;container.height,250;
landing.view.xmas13snowflake.widget=generic
landing.view.xmas15advent.conf=caption,landing.view.xmas15advent.header;bodytext,landing.view.xmas15advent.body;internallinkbutton,landing.view.xmas15advent.button,habboUI/open/xmas15
landing.view.xmas15advent.layout=bitmap.uri,${image.library.url}web_promo_small/spromo_xmas15generic2.png;bitmap.x,0;bitmap.y,0;container.height,250
landing.view.xmas15advent.widget=generic
landing.view.xmas15arctic.conf=caption,landing.view.xmas15arctic.header;bodytext,landing.view.xmas15arctic.body;catalogbutton,landing.view.xmas15arctic.button,xmas14_bundle5
landing.view.xmas15arctic.layout=
landing.view.xmas15arctic.widget=generic
landing.view.xmas15baby.conf=caption,landing.view.xmas15baby.header;bodytext,landing.view.xmas15baby.body;catalogbutton,landing.view.xmas15baby.button,xmas15baby1
landing.view.xmas15baby.layout=bitmap.uri,${image.library.url}web_promo_small/spromo_puppyroom.png;bitmap.x,50;bitmap.y,0;container.height,250
landing.view.xmas15baby.widget=generic
landing.view.xmas15bc.conf=caption,landing.view.xmas15bc.header;bodytext,landing.view.xmas15bc.body;internallinkbutton,landing.view.xmas15bc.button,catalog/warehouse/oldxmas_01_bc
landing.view.xmas15bc.layout=
landing.view.xmas15bc.widget=generic
landing.view.xmas15begin.conf=caption,landing.view.xmas15begin.header;bodytext,landing.view.xmas15begin.body;catalogbutton,landing.view.cc14oldfurni.button,rare
landing.view.xmas15begin.layout=
landing.view.xmas15begin.widget=generic
landing.view.xmas15bigcity.conf=caption,landing.view.xmas15bigcity.header;bodytext,landing.view.xmas15bigcity.body;catalogbutton,landing.view.xmas15bigcity.button,xmas14_bundle4
landing.view.xmas15bigcity.layout=
landing.view.xmas15bigcity.widget=generic
landing.view.xmas15cabin.conf=caption,landing.view.xmas15cabin.header;bodytext,landing.view.xmas15cabin.body;catalogbutton,landing.view.xmas15cabin.button,xmas14_bundle2
landing.view.xmas15cabin.layout=bitmap.uri,${image.library.url}web_promo_small/spromo_xmasbundle1.png;bitmap.x,50;bitmap.y,0;container.height,250
landing.view.xmas15cabin.widget=generic
landing.view.xmas15caribbean.conf=caption,landing.view.xmas15caribbean.header;bodytext,landing.view.xmas15caribbean.body;catalogbutton,landing.view.xmas15caribbean.button,xmas14_bundle3
landing.view.xmas15caribbean.layout=
landing.view.xmas15caribbean.widget=generic
landing.view.xmas15clock.conf=caption,landing.view.xmas15clock.header;bodytext,landing.view.xmas15clock.body;catalogbutton,landing.view.xmas15clock.button,xmas15_rares4
landing.view.xmas15clock.layout=
landing.view.xmas15clock.widget=generic
landing.view.xmas15clothing.conf=caption,landing.view.xmas15clothing.header;bodytext,landing.view.xmas15clothing.body;catalogbutton,landing.view.xmas15clothing.button,xmas15_clothing
landing.view.xmas15clothing.layout=
landing.view.xmas15clothing.widget=generic
landing.view.xmas15frozenoff.conf=caption,landing.view.xmas15frozen.header;bodytext,landing.view.xmas15frozen.body;customtimer,false,0,0,landing.view.xmas15frozen.button,landing.view.raretimer.timer.expired,2015-12-26 16:00
landing.view.xmas15frozenoff.layout=
landing.view.xmas15frozenoff.widget=generic
landing.view.xmas15frozenon.conf=caption,landing.view.xmas15frozen.header;bodytext,landing.view.xmas15frozen.body;catalogbutton,landing.view.cp15stpat.button,ler
landing.view.xmas15frozenon.layout=
landing.view.xmas15frozenon.widget=generic
landing.view.xmas15glowoff.conf=caption,landing.view.xmas15glow.header;bodytext,landing.view.xmas15glow.body;customtimer,false,0,0,landing.view.xmas15glow.button,landing.view.raretimer.timer.expired,2015-12-12 16:00
landing.view.xmas15glowoff.layout=
landing.view.xmas15glowoff.widget=generic
landing.view.xmas15glowon.conf=caption,landing.view.xmas15glow.header;bodytext,landing.view.xmas15glow.body;catalogbutton,landing.view.cp15stpat.button,ler
landing.view.xmas15glowon.layout=
landing.view.xmas15glowon.widget=generic
landing.view.xmas15gnome.conf=caption,landing.view.xmas15gnome.header;bodytext,landing.view.xmas15gnome.body;catalogbutton,landing.view.xmas15gnome.button,xmas14_gnome
landing.view.xmas15gnome.layout=
landing.view.xmas15gnome.widget=generic
landing.view.xmas15mega.conf=caption,landing.view.xmas15mega.header;bodytext,landing.view.xmas15mega.body;internallinkbutton,landing.view.xmas15mega.button,habblet/open/credits
landing.view.xmas15mega.layout=
landing.view.xmas15mega.widget=generic
landing.view.xmas15newbundle.conf=caption,landing.view.xmas15newbundle.header;bodytext,landing.view.xmas15newbundle.body;catalogbutton,landing.view.xmas15newbundle.button,xmas15_bundle
landing.view.xmas15newbundle.layout=
landing.view.xmas15newbundle.widget=generic
landing.view.xmas15nutoff.conf=caption,landing.view.xmas15nut.header;bodytext,landing.view.xmas15nut.body;customtimer,false,0,0,landing.view.xmas15nut.button,landing.view.raretimer.timer.expired,2015-12-05 16:00
landing.view.xmas15nutoff.layout=
landing.view.xmas15nutoff.widget=generic
landing.view.xmas15nuton.conf=caption,landing.view.xmas15nut.header;bodytext,landing.view.xmas15nut.body;catalogbutton,landing.view.cp15stpat.button,ler
landing.view.xmas15nuton.layout=
landing.view.xmas15nuton.widget=generic
landing.view.xmas15photo.conf=caption,landing.view.xmas15photo.header;bodytext,landing.view.xmas15photo.body;catalogbutton,landing.view.xmas15photo.button,xmas15_rares2
landing.view.xmas15photo.layout=
landing.view.xmas15photo.widget=generic
landing.view.xmas15rudolf.conf=caption,landing.view.xmas15rudolf.header;bodytext,landing.view.xmas15rudolf.body;catalogbutton,landing.view.xmas15rudolf.button,xmas15_rares3
landing.view.xmas15rudolf.layout=
landing.view.xmas15rudolf.widget=generic
landing.view.xmas15santa.conf=caption,landing.view.xmas15santa.header;bodytext,landing.view.xmas15santa.body;catalogbutton,landing.view.xmas15clothing.button,xmas15_clothing2
landing.view.xmas15santa.layout=
landing.view.xmas15santa.widget=generic
landing.view.xmas15sleigh.conf=caption,landing.view.xmas15sleigh.header;bodytext,landing.view.xmas15sleigh.body;catalogbutton,landing.view.xmas15sleigh.button,xmas15_rares
landing.view.xmas15sleigh.layout=
landing.view.xmas15sleigh.widget=generic
landing.view.xmas15wishoff.conf=caption,landing.view.xmas15wish.header;bodytext,landing.view.xmas15wish.body;customtimer,false,0,0,landing.view.xmas15wish.button,landing.view.raretimer.timer.expired,2015-12-19 16:00
landing.view.xmas15wishoff.layout=
landing.view.xmas15wishoff.widget=generic
landing.view.xmas15wishon.conf=caption,landing.view.xmas15wish.header;bodytext,landing.view.xmas15wish.body;catalogbutton,landing.view.cp15stpat.button,ler
landing.view.xmas15wishon.layout=
landing.view.xmas15wishon.widget=generic
landing.view.xmas15workshop.conf=caption,landing.view.xmas15workshop.header;bodytext,landing.view.xmas15workshop.body;catalogbutton,landing.view.xmas15workshop.button,xmas14_bundle6
landing.view.xmas15workshop.layout=
landing.view.xmas15workshop.widget=generic
landing.view.xmas2013credrares.conf=caption,landing.view.xmas2013credrares.header;bodytext,landing.view.xmas2013credrares.body;spacing,2;customtimer,false,0,0,landing.view.raretimer.timer,landing.view.raretimer.timer.expired,2013-12-26 18:00;catalogbutton,landing.view.checkitout.button,xmas13_rares
landing.view.xmas2013credrares.layout=Empty value
landing.view.xmas2013credrares.widget=generic
landing.view.xmas2013gnome.conf=caption,landing.view.xmas2013gnome.header;bodytext,landing.view.xmas2013gnome.body;spacing,2;catalogbutton,landing.view.xmas2013gnome.button,pet_gnome
landing.view.xmas2013gnome.layout=bitmap.uri,${image.library.url}web_promo_small/spromo_gnome.gif;bitmap.x,140;bitmap.y,120;container.height,250;
landing.view.xmas2013gnome.widget=generic
landing.view.xmas2013hcfurni.conf=caption,landing.view.xmas2013hcfurni.header;bodytext,landing.view.xmas2013hcfurni.body;spacing,2;catalogbutton,landing.view.xmas2013hcfurni.button,club_gifts
landing.view.xmas2013hcfurni.layout=bitmap.uri,${image.library.url}catalogue/SmallPromo_hc13.png;bitmap.x,110;bitmap.y,100;container.height,250;
landing.view.xmas2013hcfurni.widget=generic
landing.view.xmas2013roombundle.conf=caption,landing.view.xmas2013roombundle.header;bodytext,landing.view.xmas2013roombundle.body;spacing,2;catalogbutton,landing.view.xmas2013roombundle.button,xmas13_roombundle
landing.view.xmas2013roombundle.layout=bitmap.uri,${image.library.url}web_promo_small/promo_small_xmas13bundle.png;bitmap.x,70;bitmap.y,0;container.height,250;
landing.view.xmas2013roombundle.widget=generic
landing.view.xmas2013xmasfurni.conf=caption,landing.view.xmas2013xmasfurni.header;bodytext,landing.view.xmas2013xmasfurni.body;spacing,2;catalogbutton,landing.view.xmas2013xmasfurni.button,xmas_new_furni
landing.view.xmas2013xmasfurni.layout=
landing.view.xmas2013xmasfurni.widget=generic
landing.view.xmas2013xmasrare.conf=caption,landing.view.xmas2013xmasrare.header;bodytext,landing.view.xmas2013xmasrare.body;spacing,2;customtimer,false,0,0,landing.view.raretimer.timer,landing.view.raretimer.timer.expired,2013-12-24 19:00;catalogbutton,landing.view.checkitout.button,xmas13_rares
landing.view.xmas2013xmasrare.layout=
landing.view.xmas2013xmasrare.widget=generic
landing.view.xmas2013xmasrare2.conf=caption,landing.view.xmas2013xmasrare.header;bodytext,landing.view.xmas2013xmasrare.body;spacing,2;customtimer,false,0,0,landing.view.raretimer.timer,landing.view.raretimer.timer.expired,2013-12-25 19:00;catalogbutton,landing.view.checkitout.button,xmas13_rares
landing.view.xmas2013xmasrare2.layout=
landing.view.xmas2013xmasrare2.widget=generic
landing.view.xmas2015CommunityGoal.widget=communitygoalvsmode
landing_view.url=http://help.habbo.com/home
landing_view.use_web=false
landing_view_promo_slots=2,4,5,6,3,1
latencytest.interval=20000
latencytest.report.delta=100
latencytest.report.index=3
link.format.bots.help=http://help.habbo.com/entries/22348793-out-now-the-incredible-bot
link.format.club=${url.prefix}/shop
link.format.collectibles=${url.prefix}/shop
link.format.credits=${url.prefix}/shop
link.format.friendlist.pref=${url.prefix}/profile/friendsmanagement?tab=6
link.format.guild=${url.prefix}/groups/%groupid%/id
link.format.madmoney=${url.prefix}/shop
link.format.mail.compose=${url.prefix}/me#mail/compose/%recipientid%
link.format.mail.inbox=${url.prefix}/me#mail/inbox/%random%/
link.format.pets=${url.prefix}/hotel/pets
link.format.pixels=${url.prefix}/shop
link.format.safetylock_unlock=${url.prefix}/settings/security
link.format.tag.search=${url.prefix}/tag/search?tag=%tag%
link.format.user.search=${url.prefix}/me#habbo-search
link.format.userpage=${url.prefix}/profile/%username%
live.environment.list=br/us/de/es/fi/fr/it/nl/tr
loading_screen.logout_visible_timeout_sec=20
login.show.calendar=false
logout.concurrent.url=${url.prefix}/account/disconnected
logout.disconnect.url=${url.prefix}/account/disconnected?reason=logout
logout.disconnect.url=${url.prefix}/account/disconnected?reason=logout&origin=%origin%
logout.url=${url.prefix}/account/disconnected?reason=%reason%&origin=%origin%
memenu.effects.widget.disabled=true
menu.avatar.enabled=true
menu.bot.enabled=false
menu.own_avatar.enabled=1
messenger.new.skin=true
minimail.landing_view.enabled=false
moderatoractionlog.url=http://theallseeingeye.sulake.com/ase/habbo/us/housekeeping/extra/hobba/moderator_activity.action?searchCriteria.habboName=
monitor.garbage.collection=false
monsterplants.composting.enabled=true
monsterplants.enabled=true
monsterplants.game.enabled=false
mystery_box_toolbar_extension_minimised=false
mysterybox.faq.url=http://help.habbo.com/entries/22500467-mystery-box-and-advent-calendar-2012
mysterybox.number.colors.enabled=8
mysterybox.received.illustration=${image.library.url}xmas2012/box_notification.png
mysterybox.received.linkurl=http://help.habbo.com/entries/22500467-mystery-box-and-advent-calendar-2012
mysterybox.tracker.active=false
navigator.2014.personalized.navigator=true
navigator.colorlimit.orange=80
navigator.colorlimit.red=92
navigator.colorlimit.yellow=50
navigator.default.view=public
navigator.default_tab=official
navigator.settings.show_room_styles=true
navigator.thumbnail.url_base=http://habbo-stories-content.s3.amazonaws.com/navigator-thumbnail/hhus/
nest.breeding.bear.enabled=true
nest.breeding.cat.enabled=true
nest.breeding.dog.enabled=true
nest.breeding.pig.enabled=true
nest.breeding.terrier.enabled=true
new.identity.hide.quests=true
new.identity.hide.ui=true
new.identity.navigator.default_tab=official
new.user.citizenship.popup.enabled=false
new.user.flow.enabled=true
new.user.onboarding.hc.flow.enabled=true
new.user.promo.delay=-1
new.user.promo.room.delay=0
new.user.reception.enabled=false
new.user.wing=
news.auto_popup.enabled=false
news.url=//185.125.169.147/habbo-web-news/%lang%/%environment%/front.json
next.limited.rare.countdown.widget.disabled=false
notification.admin.persistent={"delivery":"PERSISTENT","display":"POP_UP","image":"${image.library.url}album1358/frank_wave_001.gif"}
notification.admin.transient={"display":"POP_UP","image":"${image.library.url}album1358/frank_wave_001.gif"}
notification.builders_club.membership_expired={"display":"POP_UP"}
notification.builders_club.membership_expires={"display":"POP_UP","image":"${image.library.url}notifications/builders_club_room_locked_small.png"}
notification.builders_club.membership_extended={"delivery":"PERSISTENT","display":"POP_UP"}
notification.builders_club.membership_made={"delivery":"PERSISTENT","display":"POP_UP","image":"${image.library.url}notifications/builders_club_membership_extended.png"}
notification.builders_club.membership_renewed={"delivery":"PERSISTENT","display":"POP_UP","image":"${image.library.url}notifications/builders_club_membership_extended.png"}
notification.builders_club.room_locked={"display":"BUBBLE","image":"${image.library.url}notifications/builders_club_room_locked_small.png"}
notification.builders_club.room_unlocked={"display":"BUBBLE"}
notification.builders_club.visit_denied_for_owner={"display":"BUBBLE","image":"${image.library.url}notifications/builders_club_room_locked_small.png"}
notification.builders_club.visit_denied_for_visitor={"display":"POP_UP","image":"${image.library.url}notifications/builders_club_room_locked.png"}
notification.campaign.credit.donation={"display":"BUBBLE"}
notification.campaign.product.donation={"display":"BUBBLE"}
notification.casino.too_many_dice.placement={"display":"POP_UP"}
notification.casino.too_many_dice={"display":"POP_UP"}
notification.feed.enabled=false
notification.floorplan_editor.error={"display":"POP_UP"}
notification.forums.delivered={"delivery":"PERSISTENT","display":"POP_UP"}
notification.forums.forum_settings_updated={"display":"BUBBLE"}
notification.forums.message.hidden={"display":"BUBBLE"}
notification.forums.message.restored={"display":"BUBBLE"}
notification.forums.thread.hidden={"display":"BUBBLE"}
notification.forums.thread.locked={"display":"BUBBLE"}
notification.forums.thread.pinned={"display":"BUBBLE"}
notification.forums.thread.restored={"display":"BUBBLE"}
notification.forums.thread.unlocked={"display":"BUBBLE"}
notification.forums.thread.unpinned={"display":"BUBBLE"}
notification.furni_placement_error={"display":"BUBBLE"}
notification.gifting.valentine={"delivery": "PERSISTENT", "display":"BUBBLE", "image":"${image.library.url}notifications/polaroid_photo.png"}
notification.items.enabled=true
notification.mute.forbidden.time={"display":"BUBBLE"}
notification.npc.gift.received={"display":"BUBBLE","image":"${image.library.url}album1584/NO007.gif"}
notification.nux.popup={"display":"POP_UP"}
notification.purchasing.room={"delivery":"PERSISTENT","display":"POP_UP"}
nux.every.new.user.is.noob=true
nux.lobbies.enabled=true
nux.noob.chat.reminder.delay=240
nux.noob.lobby.popup.delay=90
offers.enabled=true
offers.habboclub.enabled=true
offers.sponsorpay.appid=
offers.supersonic.enabled=true
offers.wait.minutes=0
payment.url=http://help.habbo.com/home
performancetest.distribution.enabled=true
performancetest.interval=2147483647
pet.configuration=dog,cat,croco,terrier,bear,pig,lion,rhino,spider,turtle,chicken,frog,dragon,monster,monkey,horse,monsterplant,bunnyeaster,bunnyevil,bunnydepressed,bunnylove,pigeongood,pigeonevil,demonmonkey,bearbaby,terrierbaby,gnome,gnome,kittenbaby,puppybaby,pigletbaby,haloompa,fools,pterosaur,velociraptor
pet.dynamic.download.name.template=%type%.swf
pet.dynamic.download.url=${flash.client.url}
pet.enhancements.enabled=true
pet.training.enabled=true
petSelect.enabled=true
phone.number.preferred.countries=US,GB,CA,AU,MY,SG
plasto_campaign.enabled=false
pocket.api.no=http://www.habbo.no
poll.word.quiz.answer.bubble.seconds=5
private.image.library.url=http://images.habbogroup.com/c_images/
public.room.dynamic.download.name.template=%typeid%.swf
purchase.rent.duration.in.seconds=604800
purchase.rent.warning_duration_seconds=172800
purse.widget.currency.shells.enabled=0
purse.widget.enabled=1
push_notifications.enabled=true
questing.defaultCampaign=room_builder
questing.showDetailsForNextQuest=false
questing.startQuestDelayInSeconds=10
recycler.number_of_slots=8
relationship.status.enabled=true
rentablespaces.faq.location=
rentablespaces.renting_enabled=true
respect.talent.show.min.audience=6
room.camera.follow_user=true
room.custom.filter.enabled=true
room.dragging.always_center=0
room.enter.effect.delay=5000
room.enter.effect.duration=2000
room.enter.effect.enabled=false
room.enter.info.collapse.delay=5000
room.enter.infostand.fade.start.delay=20000
room.rating.enable=1
room.report.enabled=true
room.settings.trading.visible=false
room_ad.duration.minutes=120
room_ad.maximum_total_time.minutes=10080
room_moderation.mute_all.enabled=true
roomad.limit_total_time=true
roomad.limited_extension=false
roomadmin.url=http://theallseeingeye.sulake.com/ase/habbo/us/housekeeping/extra/hobba/roomadmin_search.action?searchParamType=3&searchParamValue=
roomenterad.habblet.enabled=true
roominfo.widget.enabled=1
safety_quiz.disabled=true
seasonalQuestCalendar.campaignPrefix=xmas2013
seasonalQuestCalendar.currency=101
seasonalQuestCalendar.enabled=false
seasonalQuestCalendar.maximum.entities=24
seasonalcurrencyindicator.currency=101
seasonalcurrencyindicator.enabled=false
seasonalcurrencyindicator.page=seashells
sharedhorseriding.enabled=true
simple.memenu.enabled=1
sms.identity.verification.button.enabled=true
sms.identity.verification.enabled=false
snowstorm.settings.show_user_names=true
snowwar.ghost.enabled=false
snowwar.ghost.immediate.enabled=false
snowwar.ghost.visualization.enabled=false
snowwar.log.enabled=false
stories.admin.tool.base.url=http://theallseeingeye.sulake.com/habbo-stories-admin/#/photos/
stories.image.sharing_url_base=http://habbo-stories-api.herokuapp.com/p/cards/%id%.html
stories.image_url_base=http://habbo-stories-content.s3.amazonaws.com/
stories.report.selfie.enabled=true
subscription.reminder.when.days.left=5
supersaverads.video.promo.development.mode=false
supersaverads.video.promo.enabled=true
tablet.avatareditor.enabled=true
tablet.bc.enabled=true
tablet.bc.upgrades.enabled=true
tablet.trading.enabled=true
talent.progress.emailchange.enabled=true
talent.track.citizenship.enabled=true
talent.track.enabled=true
targeted.offer.override.layout.108=targeted_offer_dialog_variation_xml
targeted.offer.override.layout.109=targeted_offer_dialog_variation_xml
targeted.offer.override.layout.65=targeted_offer_dialog_variation_xml
targeted.offer.override.layout.66=targeted_offer_dialog_variation_xml
targeted.offer.override.layout.67=targeted_offer_dialog_variation_xml
targeted.offer.override.layout.68=targeted_offer_dialog_variation_xml
targeted.offer.override.preview_image.108=targetedoffers/nu_offer_14aug15.png
targeted.offer.override.preview_image.109=targetedoffers/ufo_var_v3.png
targeted.offer.override.preview_image.65=targetedoffers/ufo_var_v1.png
targeted.offer.override.preview_image.66=targetedoffers/ufo_var_v3.png
targeted.offer.override.preview_image.67=targetedoffers/ufo_var_v5.png
targeted.offer.override.preview_image.68=targetedoffers/ufo_var_v7.png
toolbar.extension.video.promo.enabled=false
toolbar.hide.quests=false
toolbar.mode=transparent
toolbar.new_additions.notification.enabled=true
toolbar.stories.enabled=false
toolbar.tracking.enabled=true
tracking.framerate.reportInterval.seconds=2147483647
trading.commiterror.enabled=true
trax.player.sample.memory.purge.enabled=1
try.existing.session=false
unique.limited.items.enabled=true
url.prefix.no=http://www.habbo.no
use.default.localizations=false
use_minimized_own_avatar_menu=true
v3_credit_flow.enabled=true
v3_credit_flow_navigation.enabled=true
v3_credit_flow_navigation=true
valentines.enabled=false
vip.snowstorm.offer.length.days=31
viral.furni.post_type=appRequest
welcome.screen.enabled=0
wired.enabled.air=1
xmas11.campaignPrefix=xmas11
xmas11.enabled=false
xmas2012.calendar.enabled=false
xmas2012.calendar.startdate=2012-12-02 00:00
zendesk.url=http://help.habbo.com/home
zoom.enabled=1


productdata.load.url=http://185.125.169.147/swf/gamedata/productdata/28ca6de1e4f08aa44dc986cc89ac61ab794e48ae
external.texts.txt=http://185.125.169.147/swf/gamedata/external_flash_texts/28ca6de1e4f08aa44dc986cc89ac61ab794e48ae
external.override.variables.txt=http://185.125.169.147/swf/gamedata/override/external_override_variables/28ca6de1e4f08aa44dc986cc89ac61ab794e48ae
flash.client.url=//185.125.169.147/gordon/PRODUCTION-201602082203-712976078/
furnidata.load.url=http://185.125.169.147/swf/gamedata/furnidata_xml/28ca6de1e4f08aa44dc986cc89ac61ab794e48ae
external.variables.txt=http://185.125.169.147/swf/gamedata/external_variables/28ca6de1e4f08aa44dc986cc89ac61ab794e48ae
external.override.texts.txt=http://185.125.169.147/swf/gamedata/override/external_flash_override_texts/28ca6de1e4f08aa44dc986cc89ac61ab794e48ae
external.figurepartlist.txt=http://185.125.169.147/swf/gamedata/figuredata/28ca6de1e4f08aa44dc986cc89ac61ab794e48ae
 
Upvote 0
Initiate Mage
Joined
Jun 28, 2016
Messages
1
Reaction score
0
Re: PlusEMU - Habboon Edit - PRODUCTION-201601012205-226667486

Hello, can somebody help me? Why am I getting this, I did everything correctly?

O0ERrzE - Official PlusEMU - Help Thread - RaGEZONE Forums
 

Attachments

You must be registered for see attachments list
Upvote 0
Initiate Mage
Joined
Aug 23, 2014
Messages
2
Reaction score
0
PlusEMU - Adding furniture

Ok,so I have been expierencing an issue with adding furniture on PlusEMU.


I started by trying to add Habbo Olympics 2016 furniture
  • I added the furnidata
  • Placed the swfs in hof_furni
  • Imported the sql to add the furni to furniture + catalog_items

Used the thread: http://forum.ragezone.com/f353/olympic-furnis-2016-plus-emulator-1107478/

All the ID's match up and everything is correct but all that happens is:
Taiga - Official PlusEMU - Help Thread - RaGEZONE Forums


The same happened when I added the stranded jungle furni
Used the thread: http://forum.ragezone.com/f353/71-furnis-jungle-plus-emulator-1103158/

Taiga - Official PlusEMU - Help Thread - RaGEZONE Forums


What do I do?
Can someone give me some sort of checklist? Am I missing something?
Thanks
 
Upvote 0
Initiate Mage
Joined
Jul 16, 2016
Messages
1
Reaction score
0
Does anyone have the solution of these bugs ?:


-Wired Condition - some not serve
'Sometimes you can not get in, room was bug
-eventalert
:sleep:
 
Upvote 0
Newbie Spellweaver
Joined
Aug 14, 2014
Messages
5
Reaction score
0
Can't create rooms with PlusEmu / PRODUCTION-201602082203-712976078

Any ideas? When I click "Create room" nothing happens.

Issue fixed. Was missing rooms table in database.
 
Last edited:
Upvote 0
Joined
Jan 5, 2013
Messages
2
Reaction score
0
Re: PlusEMU - Adding furniture

Ok,so I have been expierencing an issue with adding furniture on PlusEMU.


I started by trying to add Habbo Olympics 2016 furniture
  • I added the furnidata
  • Placed the swfs in hof_furni
  • Imported the sql to add the furni to furniture + catalog_items

Used the thread: http://forum.ragezone.com/f353/olympic-furnis-2016-plus-emulator-1107478/

All the ID's match up and everything is correct but all that happens is:
Taiga - Official PlusEMU - Help Thread - RaGEZONE Forums


The same happened when I added the stranded jungle furni
Used the thread: http://forum.ragezone.com/f353/71-furnis-jungle-plus-emulator-1103158/

Taiga - Official PlusEMU - Help Thread - RaGEZONE Forums


What do I do?
Can someone give me some sort of checklist? Am I missing something?
Thanks

I still have the same problem.. How to fix that?
 
Upvote 0
Newbie Spellweaver
Joined
Aug 26, 2012
Messages
31
Reaction score
3
Any one knows why when I try to load my catalog its disconnecting me when I'm clicking on a page? Thanks.
 
Upvote 0
Status
Not open for further replies.
Back
Top