FrostBiteRetros
Member
- Mar 20, 2014
- 166
- 10
Okay.
So I was helping someone the other day, and I actually fixed their black client. so Im going to get it out there, on how to fix it.
Solution #1
Ad-Blocker
If you have an ad-blocker on, please turn it off, as the hotel will not work if this is on! Ad-block is the most used extension on chrome as it blocks ads!
Solution #2
Fix your links!
Many people forget to do this, or they are not told this.
You have to go in client.php
All the external var links and everything in there, are usually not set for you.
You need to change
to
manually.
same with the :
and the product data, the same
the furnidata link would have to be
Okay, so your ad-blocker is disabled and your links are fixed in your client.php
test your client, it should work! and make sure you have your emu turned on!
The second last solution is
Check your external variables
go to htdocs/game/external_variables
open it up
Many people forget to do this.
if there are links that arent your URL, highlight the url , do ctrl+H
replace with your url
everything should now be
and if there are any links that are just like this at the start //localhost
make it http://
The very last solution is
Your forgetting a line!
Many people dont do this.
go to app/tpl/skins/YOURSKIN/client.php
open it up..
find
somewhere in the upper middle section
if there is no
line there, lets fix it!
make
you need that banner line in there.
Now your client is fixed!
if your having any moretrouble, add my skype dj.karnio !
Happy owning a hoteling!
So I was helping someone the other day, and I actually fixed their black client. so Im going to get it out there, on how to fix it.
Solution #1
Ad-Blocker
If you have an ad-blocker on, please turn it off, as the hotel will not work if this is on! Ad-block is the most used extension on chrome as it blocks ads!
Solution #2
Fix your links!
Many people forget to do this, or they are not told this.
You have to go in client.php
All the external var links and everything in there, are usually not set for you.
You need to change
Code:
{external_vars}
Code:
http://localhost/game/external_variables.txt
same with the :
Code:
{external_texts} (needs to be http://localhost/game/external_flash_texts.txt
the furnidata link would have to be
Code:
http://localhost/game/furnidata_xml.xml
Okay, so your ad-blocker is disabled and your links are fixed in your client.php
test your client, it should work! and make sure you have your emu turned on!
The second last solution is
Check your external variables
go to htdocs/game/external_variables
open it up
Many people forget to do this.
if there are links that arent your URL, highlight the url , do ctrl+H
replace with your url
everything should now be
You must be registered for see links
or
You must be registered for see links
and if there are any links that are just like this at the start //localhost
make it http://
The very last solution is
Your forgetting a line!
Many people dont do this.
go to app/tpl/skins/YOURSKIN/client.php
open it up..
find
Code:
"client.starting" : "Please wait, {hotelname} loading",
"client.allow.cross.domain" : "1",
"client.notify.cross.domain" : "0",
if there is no
Code:
"hotelview.banner.url" : "{url}/game/rs4.php",
make
Code:
"client.starting" : "Please wait, {hotelname} loading",
"client.allow.cross.domain" : "1",
"client.notify.cross.domain" : "0",
Code:
"client.starting" : "Please wait, {hotelname} loading",
"hotelview.banner.url" : "{url}/game/rs4.php",
"client.allow.cross.domain" : "1",
"client.notify.cross.domain" : "0",
you need that banner line in there.
Now your client is fixed!
if your having any moretrouble, add my skype dj.karnio !
Happy owning a hoteling!