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!

How to setup your R63: SWFS

Status
Not open for further replies.
Experienced Elementalist
Joined
Oct 2, 2011
Messages
202
Reaction score
46
As I know a lot of people are getting trouble getting their SWF's up and working. I made a quick tutorial.

The file they'll be in in this tutorial is either:
C:\xampp\htdocs\r63
C:\inetub\wwwroot\r63

Firstly, visit this thread and download the SWF pack:
http://forum.ragezone.com/f353/updated-r63-complete-swf-pack-833117/]
Once you've downloaded the SWF pack, you'll see something like this if you have winrar:

XZuZI - How to setup your R63: SWFS - RaGEZONE Forums


Right click r63 and click Extract to specified folder and find the folder where you want it extracted. You can put them in the C:\inetub\wwwroot if you're using IIS or C:\xampp\htdocs if you're using XAMPP.


Once you've extracted them, you can go to your hotel basic settings in housekeeping and set them to the link to your variables, your SWF, and your texts. Or you can do it in database in the table cms_settings

Once you've done that, let's edit your variables:

31X3C - How to setup your R63: SWFS - RaGEZONE Forums


Notice I've put YOURHOTELIP where your IP should go. You could use CTRL + H (Replace) and replace YOURHOTELIP with your hotel IP to make it easier.
Only do this if you've put them in an r63 folder.

You're about done at this point.

I used r63, but if you did something like this:
C:\inetub\wwwroot\swf
C:\XAMPP\htdocs\swf
Then you will need to change all the variable links.

If you cannot load your hotel, that means something is wrong. Use Firebug and load up the hotel.

SWFS DONT WORK?

PHP:
Might be worth pointing out you spelt 'producdata' wrong in the gamedata folder.

Going with the external variables you provided this wont work unless you rename the producdata folder too productdata.

Credits to: newb for ponting that out ;3

FAQ:
Q. I get a white page in the client, what do I do?!
A. Update your web build.

Q. I can't see furniture, help?!
A. Check your external_variables for the hof_furni and c_images link

Q. I can't connect to my hotel?!
A. Check all your links, IP's, ports.

Q. I checked all the ports, IP's, and links, but I still can't connect?
A. Make an inbound rule for your emulator ports.
 

Attachments

You must be registered for see attachments list
Last edited:
Preparing
Member
Joined
Sep 18, 2011
Messages
1,104
Reaction score
257
Good guide for newbs. Also they don't know what web-build is so link a tut :wink:
 
Ball like Wall
Joined
Aug 12, 2009
Messages
301
Reaction score
56
Actually I got a new loader, but now I'm getting this:

Notice: A session had already been started - ignoring session_start() in C:\xampp\htdocs\global.php on line 11

Any suggestions?
 
Experienced Elementalist
Joined
Oct 2, 2011
Messages
202
Reaction score
46
Actually I got a new loader, but now I'm getting this:

Notice: A session had already been started - ignoring session_start() in C:\xampp\htdocs\global.php on line 11

Any suggestions?

post your global.php here :)
 
Ball like Wall
Joined
Aug 12, 2009
Messages
301
Reaction score
56
Code:
<?php
define('SEP', DIRECTORY_SEPARATOR);
$dir = str_replace('register'.SEP, '', dirname(__FILE__).SEP);
$dir = str_replace('functions'.SEP, '', $dir);
$dir = str_replace('housekeeping'.SEP, '', $dir);
define('DIR', $dir);
define('DOCUMENT_ROOT', DIR.SEP);
define('INCLUDES', DIR.'inc'.SEP);
define('WWW', 'http://'.$_SERVER['SERVER_NAME']);


session_start();

require_once DOCUMENT_ROOT.'config.php';

$connect = mysql_connect($host, $username, $password) or die("Could not connect to server, error: ".mysql_error());
mysql_select_db($dbname, $connect) or die("Could not connect to database, error: ".mysql_error());

require_once INCLUDES."class.core.php";
require_once INCLUDES."class.users.php";
require_once INCLUDES."class.browser.php";

$core = new Core();
$users = new Users();
$browser = new Browser();

require_once DOCUMENT_ROOT.'language/class.lang.php';

define('MAINTENANCE', $core->Maintenance());

if(USERNAME_REQUIRED == TRUE && !isset($_SESSION["username"]))
header("Location: ".WWW."/me");
if(ACCOUNT_REQUIRED == TRUE && !isset($_SESSION["account"]))
header("Location: ".WWW."/characters");

#$sitename = $core->CmsSetting('cms_name');
$currentstyle = "mabbo";
$sitemail = 'hablow@mail.com';

if(isset($_SESSION["username"]))
{
$username = $core->EscapeString($_SESSION['username']);
if($users->CheckBan($username))
header($users->BanInfo($username));
}

if(MAINTENANCE && !$users->UserPermission('hk_login', $username) && !defined('MAINTENANCE_PAGE'))
header("Location: ".WWW."/maintenance");

$WebBuild=$core->WebBuild();
error_reporting(0);
$ip = $_SERVER['SERVER_ADDR'];

if($browser->getBrowser() == Browser::BROWSER_FIREFOX){
$mybrowser = "firefox"; 
} else if($browser->getBrowser() == Browser::BROWSER_CHROME){
$mybrowser = "chrome";
} else {
$mybrowser = "unknown";
$IE = "yes";
}
$site = 'http://'.$_SERVER['SERVER_NAME'];
?>

Help me :"(
 
Experienced Elementalist
Joined
Oct 2, 2011
Messages
202
Reaction score
46
I have added a fix to the first part of the thread if the swfs don't work :)
 
Initiate Mage
Joined
Jan 14, 2012
Messages
10
Reaction score
0
Hello DoctorCooper :)
This is my first post BTW Sir :)
And I have this noob question for ya - or to any Habbo experts here who might want to share ..

Thanks alot for sharing the tut BTW
but I may have missed some procedures which you may have not mentioned on your tut (Or im just too nooby to understand)

SCENARIO:
Habbo Hotel is
(hosted as LOCALHOST)
on my C:\xammp\htdocs

My CMS is working fine using RevCMS
and Phoenix Emu 3.7 Cracked Version
--> SQL Database doing good - I can navigate and Register to the website
--> EMU is cracked and running /
The tricky part for me is how setup the external links -- So I put the links such as this
My External Variables : C:\xampp\htdocs\r63\gamedata\external_variables\1.txt
My External Flash Texts : C:\xampp\htdocs\r63\gamedata\external_variables\1.txt
Product Data Texts : C:\xampp\htdocs\r63\gamedata\producdata\1.txt
Furni Data Text : C:\xampp\htdocs\r63\gamedata\furnidata\1.txt
SWF Folder : C:\xampp\htdocs\r63\gordon
-->


So I went to my localhost/client --> (In an attempt to play the game)
(nothing LOADS except - that I need to install a FLASH PLAYER or somethin)
GET ADOBE FLASH PLAYER (I already have an ADOBE FLASH)
so I uninstalled the Flash Player and re-installed it again ..
BUT still in keeps asking for the FLASH PLAYER ! Even If I do have it.

I tried going to IE - but still it cant LOAD
and it asks for an ADOBE FLASH PLAYER installed
Webpage error details

User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; InfoPath.2; .NET4.0C; .NET4.0E)
Timestamp: Wed, 13 Jan 2010 08:58:12 UTC


Message: Expected hexadecimal digit
Line: 48
Char: 46
Code: 0
URI:


--> What did I missed?
Please do help me Sirs --
 
Last edited:
Experienced Elementalist
Joined
Oct 2, 2011
Messages
202
Reaction score
46
Hello DoctorCooper :)
This is my first post BTW Sir :)
And I have this noob question for ya - or to any Habbo experts here who might want to share ..

Thanks alot for sharing the tut BTW
but I may have missed some procedures which you may have not mentioned on your tut (Or im just too nooby to understand)

SCENARIO:
Habbo Hotel is
(hosted as LOCALHOST)
on my C:\xammp\htdocs

My CMS is working fine using RevCMS
and Phoenix Emu 3.7 Cracked Version
--> SQL Database doing good - I can navigate and Register to the website
--> EMU is cracked and running /
The tricky part for me is how setup the external links -- So I put the links such as this

-->


So I went to my localhost/client --> (In an attempt to play the game)
(nothing LOADS except - that I need to install a FLASH PLAYER or somethin)
GET ADOBE FLASH PLAYER (I already have an ADOBE FLASH)
so I uninstalled the Flash Player and re-installed it again ..
BUT still in keeps asking for the FLASH PLAYER ! Even If I do have it.

I tried going to IE - but still it cant LOAD
and it asks for an ADOBE FLASH PLAYER installed
Webpage error details

User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; InfoPath.2; .NET4.0C; .NET4.0E)
Timestamp: Wed, 13 Jan 2010 08:58:12 UTC





--> What did I missed?
Please do help me Sirs --


Try using these as your links

My External Variables :

My External Flash Texts :

Product Data Texts :

Furni Data Text :

SWF Folder :

If that doesn't work re-post with your 'new' issue :D
 
Joined
Dec 16, 2011
Messages
1,993
Reaction score
631
Is it possible to change the external_variables.txt into a external_variables ".php", because if so, it would make editing the variables easy, e.g:
PHP:
<?php
include("swfconfig.php");
?>
widget.avatar.decorate=Decorate Room
widget.avatar.stop_decorating=Stop Decorating
friendbar.stream.enabled=true
friendbar.notifications.enabled=true
friendbar.requests.enabled=true
friends.stream=enabled
friendbar.notifications.enabled=true
client.hotel_view.show_on_startup=1
menu.own_avatar.enabled=1
menu.avatar.enabled=true
purse.widget.currency.shells.enabled=1
catalog.drag_and_drop=true
questing.enabled=true
catalog.furniture.animation=true
char.conversion.mac=[128:219,130:226,131:196,132:227,133:201,134:160,135:224,136:246,137:228,139:220,140:206,145:212,146:213,147:210,148:211,149:165,150:208,151:209,152:247,153:170,155:221,156:207,159:217,161:193,165:180,167:164,168:172,170:187,171:199,172:194,173:208,174:168,176:161,180:171,182:166,183:225,184:252,186:188,187:200,191:192,192:203,193:231,194:229,195:204,196:128,197:129,198:174,199:130,200:233,201:131,202:230,203:232,204:237,205:234,206:235,207:236,209:132,210:241,211:238,212:239,213:205,214:133,216:175,217:244,218:242,219:243,220:134,223:167,224:136,225:135,226:137,227:139,228:138,229:140,230:190,231:141,232:143,233:142,234:144,235:145,236:147,237:146,238:148,239:149,241:150,242:152,243:151,244:153,246:154,247:214,248:191,249:157,250:156,251:158,252:159,255:216]
stats.tracking.javascript=google
productdata.load.url=http://%predefined%/r63/productdata
image.library.questing.url=http://<?php echo $IP; ?>/r63/c_images/Quests/
figure.partsets.xml=http://<?php echo $IP; ?>/r63/figurepartconfig/partsets
struct.font.grey=[#font:"v", #fontSize:9,#lineHeight:10,#color:rgb("#666666"),#ilk:#struct,#fontStyle:[#italic]]
viral.furni.post_type=appRequest
billboard.adwarning.left.url=AdWarningsUK/ad_warning_L.png
security.cast.load.url=http://<?php echo $IP; ?>/r63/sec.cct?t=%token%
navigator.default.view=public
latencytest.interval=20000
external.figurepartlist.txt=http://<?php echo $IP; ?>/r63/figuredata
image.library.url=http://<?php echo $IP; ?>/r63/c_images/
navigator.visible.public.root=3
permitted.name.chars=1234567890qwertyuiopasdfghjklzxcvbnm-=?!@:.,
external.texts.txt=http://%predefined%/r63/external_flash_texts
latencytest.report.delta=100
struct.font.bold=[#font:"vb",#fontSize:9,#lineHeight:10,#color:rgb("#000000"),#ilk:#struct,#fontStyle:[#plain]]
figure.draworder.xml=http://<?php echo $IP; ?>/r63/figurepartconfig/draworder
client.hotel_view.image=hotel_view_images_hq/hotelview_dec09.png
billboard.adwarning.right.url=AdWarningsUK/ad_warning_R.png
image.library.catalogue.url=http://<?php echo $IP; ?>/r63/c_images/catalogue/
flash.dynamic.download.url=http://<?php echo $IP; ?>/r63/hof_furni/
room.default.wall=201
feed.badge_decorations.decoration_id=001
purse.transactions.active=1
client.use.invites=1
struct.font.plain=[#font:"v", #fontSize:9,#lineHeight:10,#color:rgb("#000000"),#ilk:#struct,#fontStyle:[#plain]]
hotelview.banner.url=http://<?php echo $IP; ?>/r63/banner
client.textdata.utf8=1
logout.concurrent.url=http://%predefined%/account/disconnected?reason=concurrentlogin&origin=%origin%
figure.animation.xml=http://<?php echo $IP; ?>/r63/figurepartconfig/animation
dynamic.download.url=http://<?php echo $IP; ?>/r63/hof_furni/
language=de
client.allow.facebook.like=1
struct.font.italic=[#font:"v", #fontSize:9,#lineHeight:10,#color:rgb("#000000"),#ilk:#struct,#fontStyle:[#italic]]
feed.badge_decorations.album=Feed_Badges
external.figurepartlist.txt.secure=https://<?php echo $IP; ?>/r63/figuredata
logout.url=http://%predefined%/account/disconnected?reason=%reason%&origin=%origin%
room.default.floor=111
navigator.public.default=3
tutorial.name.new_user_flow=NUF_mini
furnidata.load.url=http://%predefined%/r63/furnidata
flash.dynamic.download.name.template=%typeid%.swf
struct.font.tooltip=[#font:"v", #fontSize:9,#lineHeight:10,#color:rgb("#000000"),#ilk:#struct,#fontStyle:[#plain]]
struct.font.link=[#font:"v", #fontSize:9,#lineHeight:10,#color:rgb("#000000"),#ilk:#struct,#fontStyle:[#underline]]
figure.draworder.xml.secure=https://<?php echo $IP; ?>/r63/figurepartconfig/draworder
fuse.project.id=habbo_de
flash.dynamic.download.samples.template=mp3/sound_machine_sample_%typeid%.mp3
navigator.private.default=4
client.window.title=Habbo Hotel
dynamic.download.name.template=hh_furni_xx_%typeid%.cct
avatareditor.allowclubtryout=1
private.image.library.url=http://<?php echo $IP; ?>/r63/c_images/
logout.disconnect.url=http://%predefined%/account/disconnected?reason=logout&origin=%origin%
latencytest.report.index=3
dynamic.download.samples.template=%typeid%.cct
navigator.visible.private.root=4
stats.tracking.javascript.template=\TCODE
link.format.friendlist.pref=http://%predefined%/profile/friendsmanagement?tab=6
cast.entry.10=hh_human_hats
cast.entry.11=hh_human_hair
group.badge.url=http://%predefined%/habbo-imaging/badge/%imagerdata%.gif
cast.entry.12=hh_human_shirt
interface.cmds.user.friend=["friend","trade","ignore","unignore","userpage"]
cast.entry.13=hh_human_leg
cast.entry.14=hh_human_shoe
cast.entry.15=hh_kiosk_room
cast.entry.17=hh_room_utils
cast.entry.16=hh_pets_common
cast.entry.19=hh_furni_classes
cast.entry.18=hh_room_ui
link.format.credits=http://%predefined%/credits
cfh.usercategories.withnoharasser=101,102,103,104,105,106
room.cast.12=hh_human_50_fx
interface.cmds.active.ctrl=["move","rotate"]
room.cast.11=hh_human_fx
avatar.editor.url=http://%predefined%/profile
room.cast.10=hh_roomdimmer
client.minimail.embed.enabled=true
link.format.pets=http://%predefined%/hotel/pets
room.cast.1=hh_soundmachine
room.cast.2=hh_human_acc_chest
room.cast.3=hh_human_acc_waist
link.format.club=http://%predefined%/credits/habboclub
club.subscription.disabled=1
cfh.usercategories.withharasser=101,102,103,104,105,106
room.cast.8=hh_human_50_acc_chest
link.format.user.search=http://%predefined%/me#habbo-search
room.cast.9=hh_human_50_acc_waist
moderatoractionlog.url=https://theallseeingeye.sulake.com/ase/habbo/de/housekeeping/extra/hobba/moderator_activity.action?searchCriteria.habboName=
link.format.habboclub=http://%predefined%/credits/habboclub
room.cast.4=hh_human_50_shirt
interstitial.interval=120000
room.cast.5=hh_human_50_leg
avatar.editor.character.update.url=http://%predefined%/profile/characterupdate
room.cast.6=hh_human_50_shoe
room.cast.7=hh_human_50_item
navigator.tagcolorlimit.yellow=500
interstitial.show.time=5000
roomadmin.url=https://theallseeingeye.sulake.com/ase/habbo/de/housekeeping/extra/hobba/roomadmin_search.action?searchParamType=3&searchParamValue=
avatar.editor.club.promo.image=http://images.habbohotel.com/c_images/catalogue/club_promo_uk.gif
link.format.mail.compose=http://%predefined%/me#mail/compose/%recipientid%/%random%/
room.rating.enable=1
standaloneAchievementList.enabled=false

interface.cmds.user.personal=["badge","dance","wave","hcdance","userpage"]
paalu.key.list=[#bal1:"Q", #bal2:"E", #push1:"A", #push2:"D", #move1:"N", #move2:"M", #stabilise:"SPACE"]
navigator.cache.duration=30
navigator.colorlimit.orange=80
room.cast.private=["hh_room_private", "hh_room_landscapes"]
link.format.userpage=http://%predefined%//rd/%ID%
displayer.tag.expiration.time=600000
navigator.default_tab=Me
client.news.embed.enabled=true
client.logout.enabled=true
avatar.widget.enabled=1
new.chat.widget.enabled=1
navigator.tagcolorlimit.orange=1000
client.full.refresh.period=5000
interface.cmds.user.owner=["take_rights","give_rights","kick","friend","trade","ignore","unignore","userpage"]
wordfilter.url=https://theallseeingeye.sulake.com/ase/habbo/de/housekeeping/extra/localization/wordfilter_select.action
text.crap.fixing=1
castload.retry.delay=20000
roomenterad.habblet.enabled=false
habboinfotool.url=https://theallseeingeye.sulake.com/ase/habbo/de/housekeeping/extra/hobba/scam_userinfo_new.action?searchParamName=username&database=Stats&searchParamValue=
rosetta.warning.page.url=http://%predefined%/client_popup/rosetta_info
link.format.tag.search=http://%predefined%//tag/search?tag=%tag%
navigator.always_open_after_login=0
interstitial.enabled=true
pixels.enabled=true
interface.cmds.item.owner=["pick"]
cast.entry.42=hh_friend_list
interface.cmds.photo.owner=["pick","delete"]
cast.entry.41=hh_human_50_body
room.cast.small.1=hh_pets_50
cast.entry.44=hh_pets
interface.cmds.active.owner=["move","rotate","pick"]
cast.entry.43=hh_instant_messenger
cast.entry.45=hh_guide
embed.showInRoomInfo=true
client.fatal.error.url=http://%predefined%/client_error
cast.entry.40=hh_human_50_acc_head
swimjump.key.list=[#run1:"A", #run2:"D", #dive1:"W", #dive2:"E", #dive3:"A", #dive4:"S", #dive5:"D", #dive6:"Y", #dive7:"X", #jump:"SPACE"]
cast.entry.9=hh_human_item
cast.entry.8=hh_human_face
cast.entry.7=hh_human_body
cast.entry.6=hh_human
cast.entry.5=hh_patch_de
cast.entry.4=hh_interface
cast.entry.3=hh_shared
cast.entry.2=hh_entry_base
cast.entry.1=hh_entry_de
client.credits.embed.enabled=true
avatar.editor.trial.promo=0
text.render.compatibility.mode=2
moderator.cmds=[":alert x",":ban x",":kick x",":superban x",":shutup x",":unmute x",":transfer x",":softkick x"]
cast.entry.38=hh_human_50_acc_eye
cast.entry.39=hh_human_50_acc_face
cast.entry.37=hh_human_50_hair
cast.entry.36=hh_human_50_hats
cast.entry.35=hh_human_50_face
avatar.editor.club.promo=0
cast.entry.34=hh_human_acc_head
cast.entry.33=hh_human_acc_face
cast.entry.32=hh_human_acc_eye
cast.entry.31=hh_entry_init
cast.entry.30=hh_badges
navigator.colorlimit.yellow=50
interstitial.max.displays=5
client.flood.timeout=100000
client.version.id=401
navigator.tagcolorlimit.red=2000
link.format.collectibles=http://%predefined%/credits/collectibles
cast.entry.27=hh_dynamic_downloader
cast.entry.28=hh_recycler
cast.entry.29=hh_poll
cast.entry.24=hh_cat_new
cast.entry.23=hh_navigator
cast.entry.26=hh_buffer
cast.entry.25=hh_cat_gfx_all
cast.entry.20=hh_room
cast.entry.22=hh_photo
infostand.report.show=1
cast.entry.21=hh_club
subscription.reminder.when.days.left=5
navigator.colorlimit.red=92
interface.cmds.user.ctrl=["kick","friend","trade","ignore","unignore","userpage"]
interface.cmds.photo.ctrl=[]
link.format.mail.inbox=http://%predefined%/me#mail
interface.cmds.item.ctrl=[]
purse.widget.enabled=1

And the config would be:
PHP:
<?php
$ip = "127.0.0.1"; // Your IP here.
?>

If it's possible, could someone get back to me :thumbup1: If it's not, then that sux, haha.
 
Experienced Elementalist
Joined
Oct 2, 2011
Messages
202
Reaction score
46
Is it possible to change the external_variables.txt into a external_variables ".php", because if so, it would make editing the variables easy, e.g:
PHP:
<?php
include("swfconfig.php");
?>
widget.avatar.decorate=Decorate Room
widget.avatar.stop_decorating=Stop Decorating
friendbar.stream.enabled=true
friendbar.notifications.enabled=true
friendbar.requests.enabled=true
friends.stream=enabled
friendbar.notifications.enabled=true
client.hotel_view.show_on_startup=1
menu.own_avatar.enabled=1
menu.avatar.enabled=true
purse.widget.currency.shells.enabled=1
catalog.drag_and_drop=true
questing.enabled=true
catalog.furniture.animation=true
char.conversion.mac=[128:219,130:226,131:196,132:227,133:201,134:160,135:224,136:246,137:228,139:220,140:206,145:212,146:213,147:210,148:211,149:165,150:208,151:209,152:247,153:170,155:221,156:207,159:217,161:193,165:180,167:164,168:172,170:187,171:199,172:194,173:208,174:168,176:161,180:171,182:166,183:225,184:252,186:188,187:200,191:192,192:203,193:231,194:229,195:204,196:128,197:129,198:174,199:130,200:233,201:131,202:230,203:232,204:237,205:234,206:235,207:236,209:132,210:241,211:238,212:239,213:205,214:133,216:175,217:244,218:242,219:243,220:134,223:167,224:136,225:135,226:137,227:139,228:138,229:140,230:190,231:141,232:143,233:142,234:144,235:145,236:147,237:146,238:148,239:149,241:150,242:152,243:151,244:153,246:154,247:214,248:191,249:157,250:156,251:158,252:159,255:216]
stats.tracking.javascript=google
productdata.load.url=http://%predefined%/r63/productdata
image.library.questing.url=http://<?php echo $IP; ?>/r63/c_images/Quests/
figure.partsets.xml=http://<?php echo $IP; ?>/r63/figurepartconfig/partsets
struct.font.grey=[#font:"v", #fontSize:9,#lineHeight:10,#color:rgb("#666666"),#ilk:#struct,#fontStyle:[#italic]]
viral.furni.post_type=appRequest
billboard.adwarning.left.url=AdWarningsUK/ad_warning_L.png
security.cast.load.url=http://<?php echo $IP; ?>/r63/sec.cct?t=%token%
navigator.default.view=public
latencytest.interval=20000
external.figurepartlist.txt=http://<?php echo $IP; ?>/r63/figuredata
image.library.url=http://<?php echo $IP; ?>/r63/c_images/
navigator.visible.public.root=3
permitted.name.chars=1234567890qwertyuiopasdfghjklzxcvbnm-=?!@:.,
external.texts.txt=http://%predefined%/r63/external_flash_texts
latencytest.report.delta=100
struct.font.bold=[#font:"vb",#fontSize:9,#lineHeight:10,#color:rgb("#000000"),#ilk:#struct,#fontStyle:[#plain]]
figure.draworder.xml=http://<?php echo $IP; ?>/r63/figurepartconfig/draworder
client.hotel_view.image=hotel_view_images_hq/hotelview_dec09.png
billboard.adwarning.right.url=AdWarningsUK/ad_warning_R.png
image.library.catalogue.url=http://<?php echo $IP; ?>/r63/c_images/catalogue/
flash.dynamic.download.url=http://<?php echo $IP; ?>/r63/hof_furni/
room.default.wall=201
feed.badge_decorations.decoration_id=001
purse.transactions.active=1
client.use.invites=1
struct.font.plain=[#font:"v", #fontSize:9,#lineHeight:10,#color:rgb("#000000"),#ilk:#struct,#fontStyle:[#plain]]
hotelview.banner.url=http://<?php echo $IP; ?>/r63/banner
client.textdata.utf8=1
logout.concurrent.url=http://%predefined%/account/disconnected?reason=concurrentlogin&origin=%origin%
figure.animation.xml=http://<?php echo $IP; ?>/r63/figurepartconfig/animation
dynamic.download.url=http://<?php echo $IP; ?>/r63/hof_furni/
language=de
client.allow.facebook.like=1
struct.font.italic=[#font:"v", #fontSize:9,#lineHeight:10,#color:rgb("#000000"),#ilk:#struct,#fontStyle:[#italic]]
feed.badge_decorations.album=Feed_Badges
external.figurepartlist.txt.secure=https://<?php echo $IP; ?>/r63/figuredata
logout.url=http://%predefined%/account/disconnected?reason=%reason%&origin=%origin%
room.default.floor=111
navigator.public.default=3
tutorial.name.new_user_flow=NUF_mini
furnidata.load.url=http://%predefined%/r63/furnidata
flash.dynamic.download.name.template=%typeid%.swf
struct.font.tooltip=[#font:"v", #fontSize:9,#lineHeight:10,#color:rgb("#000000"),#ilk:#struct,#fontStyle:[#plain]]
struct.font.link=[#font:"v", #fontSize:9,#lineHeight:10,#color:rgb("#000000"),#ilk:#struct,#fontStyle:[#underline]]
figure.draworder.xml.secure=https://<?php echo $IP; ?>/r63/figurepartconfig/draworder
fuse.project.id=habbo_de
flash.dynamic.download.samples.template=mp3/sound_machine_sample_%typeid%.mp3
navigator.private.default=4
client.window.title=Habbo Hotel
dynamic.download.name.template=hh_furni_xx_%typeid%.cct
avatareditor.allowclubtryout=1
private.image.library.url=http://<?php echo $IP; ?>/r63/c_images/
logout.disconnect.url=http://%predefined%/account/disconnected?reason=logout&origin=%origin%
latencytest.report.index=3
dynamic.download.samples.template=%typeid%.cct
navigator.visible.private.root=4
stats.tracking.javascript.template=\TCODE
link.format.friendlist.pref=http://%predefined%/profile/friendsmanagement?tab=6
cast.entry.10=hh_human_hats
cast.entry.11=hh_human_hair
group.badge.url=http://%predefined%/habbo-imaging/badge/%imagerdata%.gif
cast.entry.12=hh_human_shirt
interface.cmds.user.friend=["friend","trade","ignore","unignore","userpage"]
cast.entry.13=hh_human_leg
cast.entry.14=hh_human_shoe
cast.entry.15=hh_kiosk_room
cast.entry.17=hh_room_utils
cast.entry.16=hh_pets_common
cast.entry.19=hh_furni_classes
cast.entry.18=hh_room_ui
link.format.credits=http://%predefined%/credits
cfh.usercategories.withnoharasser=101,102,103,104,105,106
room.cast.12=hh_human_50_fx
interface.cmds.active.ctrl=["move","rotate"]
room.cast.11=hh_human_fx
avatar.editor.url=http://%predefined%/profile
room.cast.10=hh_roomdimmer
client.minimail.embed.enabled=true
link.format.pets=http://%predefined%/hotel/pets
room.cast.1=hh_soundmachine
room.cast.2=hh_human_acc_chest
room.cast.3=hh_human_acc_waist
link.format.club=http://%predefined%/credits/habboclub
club.subscription.disabled=1
cfh.usercategories.withharasser=101,102,103,104,105,106
room.cast.8=hh_human_50_acc_chest
link.format.user.search=http://%predefined%/me#habbo-search
room.cast.9=hh_human_50_acc_waist
moderatoractionlog.url=https://theallseeingeye.sulake.com/ase/habbo/de/housekeeping/extra/hobba/moderator_activity.action?searchCriteria.habboName=
link.format.habboclub=http://%predefined%/credits/habboclub
room.cast.4=hh_human_50_shirt
interstitial.interval=120000
room.cast.5=hh_human_50_leg
avatar.editor.character.update.url=http://%predefined%/profile/characterupdate
room.cast.6=hh_human_50_shoe
room.cast.7=hh_human_50_item
navigator.tagcolorlimit.yellow=500
interstitial.show.time=5000
roomadmin.url=https://theallseeingeye.sulake.com/ase/habbo/de/housekeeping/extra/hobba/roomadmin_search.action?searchParamType=3&searchParamValue=
avatar.editor.club.promo.image=http://images.habbohotel.com/c_images/catalogue/club_promo_uk.gif
link.format.mail.compose=http://%predefined%/me#mail/compose/%recipientid%/%random%/
room.rating.enable=1
standaloneAchievementList.enabled=false

interface.cmds.user.personal=["badge","dance","wave","hcdance","userpage"]
paalu.key.list=[#bal1:"Q", #bal2:"E", #push1:"A", #push2:"D", #move1:"N", #move2:"M", #stabilise:"SPACE"]
navigator.cache.duration=30
navigator.colorlimit.orange=80
room.cast.private=["hh_room_private", "hh_room_landscapes"]
link.format.userpage=http://%predefined%//rd/%ID%
displayer.tag.expiration.time=600000
navigator.default_tab=Me
client.news.embed.enabled=true
client.logout.enabled=true
avatar.widget.enabled=1
new.chat.widget.enabled=1
navigator.tagcolorlimit.orange=1000
client.full.refresh.period=5000
interface.cmds.user.owner=["take_rights","give_rights","kick","friend","trade","ignore","unignore","userpage"]
wordfilter.url=https://theallseeingeye.sulake.com/ase/habbo/de/housekeeping/extra/localization/wordfilter_select.action
text.crap.fixing=1
castload.retry.delay=20000
roomenterad.habblet.enabled=false
habboinfotool.url=https://theallseeingeye.sulake.com/ase/habbo/de/housekeeping/extra/hobba/scam_userinfo_new.action?searchParamName=username&database=Stats&searchParamValue=
rosetta.warning.page.url=http://%predefined%/client_popup/rosetta_info
link.format.tag.search=http://%predefined%//tag/search?tag=%tag%
navigator.always_open_after_login=0
interstitial.enabled=true
pixels.enabled=true
interface.cmds.item.owner=["pick"]
cast.entry.42=hh_friend_list
interface.cmds.photo.owner=["pick","delete"]
cast.entry.41=hh_human_50_body
room.cast.small.1=hh_pets_50
cast.entry.44=hh_pets
interface.cmds.active.owner=["move","rotate","pick"]
cast.entry.43=hh_instant_messenger
cast.entry.45=hh_guide
embed.showInRoomInfo=true
client.fatal.error.url=http://%predefined%/client_error
cast.entry.40=hh_human_50_acc_head
swimjump.key.list=[#run1:"A", #run2:"D", #dive1:"W", #dive2:"E", #dive3:"A", #dive4:"S", #dive5:"D", #dive6:"Y", #dive7:"X", #jump:"SPACE"]
cast.entry.9=hh_human_item
cast.entry.8=hh_human_face
cast.entry.7=hh_human_body
cast.entry.6=hh_human
cast.entry.5=hh_patch_de
cast.entry.4=hh_interface
cast.entry.3=hh_shared
cast.entry.2=hh_entry_base
cast.entry.1=hh_entry_de
client.credits.embed.enabled=true
avatar.editor.trial.promo=0
text.render.compatibility.mode=2
moderator.cmds=[":alert x",":ban x",":kick x",":superban x",":shutup x",":unmute x",":transfer x",":softkick x"]
cast.entry.38=hh_human_50_acc_eye
cast.entry.39=hh_human_50_acc_face
cast.entry.37=hh_human_50_hair
cast.entry.36=hh_human_50_hats
cast.entry.35=hh_human_50_face
avatar.editor.club.promo=0
cast.entry.34=hh_human_acc_head
cast.entry.33=hh_human_acc_face
cast.entry.32=hh_human_acc_eye
cast.entry.31=hh_entry_init
cast.entry.30=hh_badges
navigator.colorlimit.yellow=50
interstitial.max.displays=5
client.flood.timeout=100000
client.version.id=401
navigator.tagcolorlimit.red=2000
link.format.collectibles=http://%predefined%/credits/collectibles
cast.entry.27=hh_dynamic_downloader
cast.entry.28=hh_recycler
cast.entry.29=hh_poll
cast.entry.24=hh_cat_new
cast.entry.23=hh_navigator
cast.entry.26=hh_buffer
cast.entry.25=hh_cat_gfx_all
cast.entry.20=hh_room
cast.entry.22=hh_photo
infostand.report.show=1
cast.entry.21=hh_club
subscription.reminder.when.days.left=5
navigator.colorlimit.red=92
interface.cmds.user.ctrl=["kick","friend","trade","ignore","unignore","userpage"]
interface.cmds.photo.ctrl=[]
link.format.mail.inbox=http://%predefined%/me#mail
interface.cmds.item.ctrl=[]
purse.widget.enabled=1

And the config would be:
PHP:
<?php
$ip = "127.0.0.1"; // Your IP here.
?>

If it's possible, could someone get back to me :thumbup1: If it's not, then that sux, haha.

Thats an fantastic idea / suggestion. LOL But I am unsure if this would work... Test it out and then come back with the results :D
 
Initiate Mage
Joined
Jan 14, 2012
Messages
10
Reaction score
0
Yo! Doctor Cooper

Yey! Thanks Doc! that was effin awesome!!
Now I can log on the Client using the Phoenix Emu 3.6

SCENARIO
Now I am able to log to my habbo and play :)
But my problem after a few minutes the connection just DROPPED
and when I try to re-log on the Client
It LOADS then opens up the Hotel View
and STOPS! and LOADS again --> HOTEL VIEW // like forever!
The EMU registers a Connection Drop on 127.0.0.1
and it creates error dump or somethin like an error log.
---> So Id have to shut the XAMPP (Apache/MySQL) down *get fixed sometimes

and to no avail
DELETE my DATABASE and IMPORT it again ..
and RE-PASTE/RE-CONFIG the CMS


--> It would get fixed for awhile - and back to scenario! :(

Any Ideas Doc?

Thanks for the solution and for helping me out on this!
More Power to you Doc!
 
Experienced Elementalist
Joined
Oct 2, 2011
Messages
202
Reaction score
46
Yo! Doctor Cooper

Yey! Thanks Doc! that was effin awesome!!
Now I can log on the Client using the Phoenix Emu 3.6

SCENARIO



and to no avail
DELETE my DATABASE and IMPORT it again ..
and RE-PASTE/RE-CONFIG the CMS


--> It would get fixed for awhile - and back to scenario! :(

Any Ideas Doc?

Thanks for the solution and for helping me out on this!
More Power to you Doc!

I have sent you a PM. With my MSN / Skype, so you can contact me further with more information with this issue you have.
 
Initiate Mage
Joined
Jan 17, 2012
Messages
10
Reaction score
0
help. i have configured everything its ok. but when it finishes loading. It doesn't enter the hotel. I use phoenix 3.6.7
 
Experienced Elementalist
Joined
Oct 2, 2011
Messages
202
Reaction score
46
help. i have configured everything its ok. but when it finishes loading. It doesn't enter the hotel. I use phoenix 3.6.7

Have you renamed the folder "producdata" to "productdata" as that was an issue I did when I made the pack.
 
Initiate Mage
Joined
Jan 17, 2012
Messages
10
Reaction score
0
yes, i've made it all. And config the variables etc.
When the bar loads competly it just stays black and doesn't enters the hotel.
Is it the emulator? (I use phoenix 3.6.4)
 
Status
Not open for further replies.
Back
Top