Client Stuck At 76% Arcturus

Status
Not open for further replies.

JaySeanH

New Member
Feb 6, 2017
19
2
I am currently using BrainCMS 1.5.0 and the latest Arcturus release. Everything working fine however when I go to load up the client it gets stucks at 76%. Ive looked through my client.php and my external_variables. If anyone could give advice it would be appreciated.
Client.php-
Code:
var Client = new SWFObject("<?= $hotel['swfFolderSwf'] ?>", "client", "100%", "100%", "10.0.0");
            Client.addVariable("client.allow.cross.domain", "0");
            Client.addVariable("client.notify.cross.domain", "1");
            Client.addVariable("connection.info.host", "<?= $hotel['emuHost'] ?>");
            Client.addVariable("connection.info.port", "<?= $hotel['emuPort'] ?>");
            Client.addVariable("site.url", "<?= $config['hotelUrl'] ?>");
            Client.addVariable("url.prefix", "<?= $config['hotelUrl'] ?>");
            Client.addVariable("client.reload.url", "<?= $config['hotelUrl'] ?>/me");
            Client.addVariable("client.fatal.error.url", "<?= $config['hotelUrl'] ?>/me");
            Client.addVariable("client.connection.failed.url", "<?= $config['hotelUrl'] ?>/me");
            Client.addVariable("external.override.texts.txt", "<?= $hotel['external_Texts_Override'] ?>");
            Client.addVariable("external.override.variables.txt", "<?= $hotel['external_Variables_Override'] ?>");     
            Client.addVariable("external.variables.txt", "<?= $hotel['external_Variables'] ?>");
            Client.addVariable("external.texts.txt", "<?= $hotel['external_Texts'] ?>");
            Client.addVariable("external.figurepartlist.txt", "<?= $hotel['figuredata'] ?>");
            Client.addVariable("flash.dynamic.avatar.download.configuration", "<?= $hotel['figuremap'] ?>");
            Client.addVariable("productdata.load.url", "<?= $hotel['productdata'] ?>");
            Client.addVariable("furnidata.load.url", "<?= $hotel['furnidata'] ?>");
            Client.addVariable("use.sso.ticket", "1");
            Client.addVariable("sso.ticket", "<?= User::userData('auth_ticket') ?>");
            Client.addVariable("processlog.enabled", "0");
            Client.addVariable("client.starting", "<?= $config['hotelName'] ?> is loading...");
            Client.addVariable("flash.client.url", "<?= $hotel['swfFolder'] ?>/");
            Client.addVariable("flash.client.origin", "popup");
            Client.addVariable("nux.lobbies.enabled", "true");
            Client.addVariable("country_code", "NL");
            Client.addParam('base', '<?= $hotel['swfFolder'] ?>/');
            Client.addParam('allowScriptAccess', 'always');
            Client.addParam('menu', false);
            Client.addParam('wmode', "opaque");
            Client.write('client');
            
            FlashExternalInterface.signoutUrl = "<?= $config['hotelUrl'] ?>/logout";
External_override_variables-
Code:
flash.client.url=http://localhost/gordon/PRODUCTION-201512170847-152005991/
external.texts.txt=http://localhost/gamedata/external_flash_texts/b7eb1d2844054a29476048a94e72a842be2d7822
external.override.texts.txt=http://localhost/gamedata/override/external_flash_override_texts/ccc12168e0117bbe34725223b194b0258beb10b2
external.override.variables.txt=http://localhost/gamedata/override/external_override_variables/da39a3ee5e6b4b0d3255bfef95601890afd80709
productdata.load.url=http://localhost/gamedata/productdata/29b96ba4eb25409c91c0ab725608a1add02e27fd
furnidata.load.url=http://localhost/gamedata/furnidata_xml/1af7ee31d9bfd314459f765ed457d7150e9724d1
Config.ini-
Code:
username=Jay   
password=Jh04942183seanh

#Database Configuration.
db.hostname=localhost
db.port=3306
db.database=***** (here on purpose)
db.username=root
db.password=****** (here on purpose)

#Game Configuration.
game.host=localhost
game.port=3000

#RCON Configuration.
rcon.host=localhost
rcon.port=3001
rcon.allowed=localhost;localhost1
 

LeZack

Don
Jul 22, 2015
64
16
Have you changed in the config / client u using Arcturus emulator as brain has two options. PlusEMU or Arcturus. If that doesnt help please check the version u using. In case it doesnt work please add me on skype justzmh.
 

JaySeanH

New Member
Feb 6, 2017
19
2
Have you changed in the config / client u using Arcturus emulator as brain has two options. PlusEMU or Arcturus. If that doesnt help please check the version u using. In case it doesnt work please add me on skype justzmh.
Code:
    /* Emu Settings */
    $config['hotelEmu'] = 'arcturus'; // plusemu // arcturus
Yes if this is what you are referring to. And I do you happen to use teamviewer? If not will download skype again. Thanks
 

JaySeanH

New Member
Feb 6, 2017
19
2
How did you fixed this? I have the exact same problem
The way it got fixed was we changed the emulator to plus instead of arcturus, make sure your config.ini and client are configured correctly.
Make sure that in your config.php
Code:
$hotel['external_Variables'] = "http://*******/swf/gamedata/external_variables.txt";
    $hotel['external_Variables_Override'] = "http://********/swf/gamedata/override/external_override_variables.txt";
    $hotel['external_Texts'] = "http://*******/swf/gamedata/external_flash_texts.txt";
    $hotel['external_Texts_Override'] = "http://******/swf/gamedata/override/external_flash_override_texts.txt";
    $hotel['productdata'] = "http://******/swf/gamedata/productdata.txt";
    $hotel['furnidata'] = "http://********/swf/gamedata/furnidata.xml";
    $hotel['figuremap'] = "http://******/swf/gamedata/figuremap.xml";
    $hotel['figuredata'] = "http://*******/swf/gamedata/figuredata.xml";
is the exact same as your variables and your override variables. Scroll to the bottom of you 'external variables' and make sure that they are configured the exact same as the config.php and do the same with the override variables. make sure that whatever your folders are named is how they are named in the cms and swf also. (This fixed my furni also as that was not loading)
 
Status
Not open for further replies.

Users who are viewing this thread

Top