fStormEMU error

Page 1 of 2 12 LastLast
Results 1 to 15 of 27
  1. #1
    Habbo Section Kudzo is offline
    MemberRank
    Sep 2012 Join Date
    127.0.0.1Location
    358Posts

    fStormEMU error

    I'm trying SwiftEMU, because Phoenix and I don't get along. So I've used Speheral's swf setup and now when I start my emulator I get an error.

    Error : Screenshot by Lightshot

    Does anyone know what's the problem? Would be nice to know.

    Also, I didn't edit this in my global.php :

    Code:
    $tpl->SetParam('connection_info_host', $client['connection_info_host']);
    $tpl->SetParam('connection_info_port', $client['connection_info_port']);
    $tpl->SetParam('site_url', WWW);
    $tpl->SetParam('client_reload_url', WWW);
    $tpl->SetParam('client_fatal_error_url', WWW . "/flash_client_error");
    $tpl->SetParam('external_variables_txt', $client['external_variables_txt']);
    $tpl->SetParam('external_texts_txt', $client['external_texts_txt']);
    $tpl->SetParam('furnidata_load_url', $client['furnidata_load_url']);
    $tpl->SetParam('productdata_load_url', $client['productdata_load_url']);
    $tpl->SetParam('client_starting', $client['client_starting']);
    $tpl->SetParam('habbo_swf', $client['habbo_swf']);
    $tpl->SetParam('swf_base_dir', $client['swf_base_dir']);
    Should I?

    A post guiding/helping me would be nice!

    Will give a +1 for whoever helps me!


  2. #2
    Gaby is offline
    MemberRank
    Apr 2013 Join Date
    Viva HollandiaLocation
    1,607Posts

    Re: fStormEMU error

    It doesn't recognize your database config. You have to take a look at that. (:

  3. #3
    Lurking around Clawed is offline
    MemberRank
    Jun 2012 Join Date
    RaGEZONELocation
    785Posts

    Re: fStormEMU error

    Unknown database 'hr63b'

  4. #4
    Habbo Section Kudzo is offline
    MemberRank
    Sep 2012 Join Date
    127.0.0.1Location
    358Posts

    Re: fStormEMU error

    Thanks guys, one more question how do I fix this :

    Code:
    Notice: Undefined index: client_starting in C:\xampp\htdocs\global.php on line 113 
    
    


    Also, there is no furni in my catalogue, such as furni, VIP how do I get it? I didn't see that in Speheral's thread.

  5. #5
    Gaby is offline
    MemberRank
    Apr 2013 Join Date
    Viva HollandiaLocation
    1,607Posts

    Re: fStormEMU error

    Quote Originally Posted by Kudzo View Post
    Thanks guys, one more question how do I fix this :

    Code:
    Notice: Undefined index: client_starting in C:\xampp\htdocs\global.php on line 113 
    
    
    Also, there is no furni in my catalogue, such as furni, VIP how do I get it? I didn't see that in Speheral's thread.
    Can you post your global.php and tell us what's on line 113? And you'll have to edit your catalog through the database. You can take items_base and catalog_items_copy from a bcstorm sql as well as a swiftemu sql, it should have most of the furni in it.

  6. #6
    Lurking around Clawed is offline
    MemberRank
    Jun 2012 Join Date
    RaGEZONELocation
    785Posts

    Re: fStormEMU error

    This is missing from $client array();
    PHP Code:
    $client['client_starting'

  7. #7
    Habbo Section Kudzo is offline
    MemberRank
    Sep 2012 Join Date
    127.0.0.1Location
    358Posts

    Re: fStormEMU error

    Quote Originally Posted by BaasHotel View Post
    Can you post your global.php and tell us what's on line 113? And you'll have to edit your catalog through the database. You can take items_base and catalog_items_copy from a bcstorm sql as well as a swiftemu sql, it should have most of the furni in it.
    Code:
    // ****** Set Params for Client use
    $tpl->SetParam('connection_info_host', $client['connection_info_host']);
    $tpl->SetParam('connection_info_port', $client['connection_info_port']);
    $tpl->SetParam('site_url', WWW);
    $tpl->SetParam('client_reload_url', WWW);
    $tpl->SetParam('client_fatal_error_url', WWW . "/flash_client_error");
    $tpl->SetParam('external_variables_txt', $client['external_variables_txt']);
    $tpl->SetParam('external_texts_txt', $client['external_texts_txt']);
    $tpl->SetParam('furnidata_load_url', $client['furnidata_load_url']);
    $tpl->SetParam('productdata_load_url', $client['productdata_load_url']);
    $tpl->SetParam('client_starting', $client['client_starting'] );
    $tpl->SetParam('habbo_swf', $client['habbo_swf']);
    $tpl->SetParam('swf_base_dir', $client['swf_base_dir']);
    
    
    -Line 113 - $tpl->SetParam('client_starting', $client['client_starting'] );
    And ok, I don't know how to do that, but I'll open the file up in an notepad++ and look for that.

    Quote Originally Posted by Clawed View Post
    This is missing from $client array();
    PHP Code:
    $client['client_starting'
    I don't think so...

  8. #8
    Lurking around Clawed is offline
    MemberRank
    Jun 2012 Join Date
    RaGEZONELocation
    785Posts

    Re: fStormEMU error

    Quote Originally Posted by Kudzo View Post
    Code:
    // ****** Set Params for Client use
    $tpl->SetParam('connection_info_host', $client['connection_info_host']);
    $tpl->SetParam('connection_info_port', $client['connection_info_port']);
    $tpl->SetParam('site_url', WWW);
    $tpl->SetParam('client_reload_url', WWW);
    $tpl->SetParam('client_fatal_error_url', WWW . "/flash_client_error");
    $tpl->SetParam('external_variables_txt', $client['external_variables_txt']);
    $tpl->SetParam('external_texts_txt', $client['external_texts_txt']);
    $tpl->SetParam('furnidata_load_url', $client['furnidata_load_url']);
    $tpl->SetParam('productdata_load_url', $client['productdata_load_url']);
    $tpl->SetParam('client_starting', $client['client_starting']);
    $tpl->SetParam('habbo_swf', $client['habbo_swf']);
    $tpl->SetParam('swf_base_dir', $client['swf_base_dir']);
    
    
    -Line 113 - $tpl->SetParam('client_starting', $client['client_starting'] );
    The bold, is array from $client variable, it's missing the ['client_starting'].
    Check your client config settings, where you'll find connection_info_host, connection_info_port, etc, etc.

    Trust me it's PHP easy language.

    Edit;

    Example:
    PHP Code:
    <?

        $client 
    = array();
        
        
    $client['connection_info_host'] = "127.0.0.1";
        
    $client['connection_info_port'] = "30001";
        
    $client['external_variables_txt'] = "etc";
        
    $client['etx'] = "etc";
        
    $client['etx'] = "etc";
        
    $client['etx'] = "etc";
        
    $client['etx'] = "etc";
    ?>
    This is what is missing:
    PHP Code:
    <?
        $client
    ['client_starting'] = "";

    ?>

  9. #9
    Habbo Section Kudzo is offline
    MemberRank
    Sep 2012 Join Date
    127.0.0.1Location
    358Posts

    Re: fStormEMU error

    Quote Originally Posted by Clawed View Post
    The bold, is array from $client variable, it's missing the ['client_starting'].
    Check your client config settings, where you'll find connection_info_host, connection_info_port, etc, etc.

    Trust me it's PHP easy language.

    Edit;

    Example:
    PHP Code:
    <?

        $client 
    = array();
        
        
    $client['connection_info_host'] = "127.0.0.1";
        
    $client['connection_info_port'] = "30001";
        
    $client['external_variables_txt'] = "etc";
        
    $client['etx'] = "etc";
        
    $client['etx'] = "etc";
        
    $client['etx'] = "etc";
        
    $client['etx'] = "etc";
    ?>
    This is what is missing:
    PHP Code:
    <?
        $client
    ['client_starting'] = "";

    ?>
    Tried it, it turned my /me page white.

  10. #10
    Lurking around Clawed is offline
    MemberRank
    Jun 2012 Join Date
    RaGEZONELocation
    785Posts

    Re: fStormEMU error

    Quote Originally Posted by Kudzo View Post
    Tried it, it turned my /me page white.
    Your obv not doing it correct, link me to CMS thread.

  11. #11
    Habbo Section Kudzo is offline
    MemberRank
    Sep 2012 Join Date
    127.0.0.1Location
    358Posts

    Re: fStormEMU error


  12. #12
    Lurking around Clawed is offline
    MemberRank
    Jun 2012 Join Date
    RaGEZONELocation
    785Posts

    Re: fStormEMU error

    ubercms_config.php:
    PHP Code:
    // Client settings
        //        - Server IP (The ip your emulator is listening on)
        //        - Server Port (The port your emulator is listening on)
        //        - Productdata (Where your productdata is located)
        //        - Furnidata (Where your furnidata is located)
        //        - External Texts (Where your external texts are located)
        //        - External Variables (Where your external variables are located)
        //        - SWF Base Directory (The directory your Habbo.swf is in)
        //        - Habbo.swf (The location of Habbo.swf)
        //        - Client Starting (The text you want to display when the client loads.)
        
    $client['connection_info_host'] = "127.0.0.1";
        
    $client['connection_info_port'] = "30000";
        
    $client['productdata_load_url'] = "http://mydomain.com/gamedata/productdata.txt";
        
    $client['furnidata_load_url'] = "http://mydomain.com/gamedata/furnidata.txt";
        
    $client['external_texts_txt'] = "http://mydomain.com/gamedata/external_texts.txt";
        
    $client['external_variables_txt'] = "http://mydomain.com/gamedata/external_variables.txt";
        
    $client['swf_base_dir'] = "http://mydomain.com/gordon/";
        
    $client['habbo_swf'] = "http://mydomain.com/gordon/Habbo.swf";
        
    $client['client_starting'] = "Please wait. Uber is starting."
    Your missing this:
    PHP Code:
    $client['client_starting'] = "Please wait. Uber is starting."

  13. #13
    Habbo Section Kudzo is offline
    MemberRank
    Sep 2012 Join Date
    127.0.0.1Location
    358Posts

    Re: fStormEMU error

    Quote Originally Posted by Clawed View Post
    ubercms_config.php:
    PHP Code:
    // Client settings
        //        - Server IP (The ip your emulator is listening on)
        //        - Server Port (The port your emulator is listening on)
        //        - Productdata (Where your productdata is located)
        //        - Furnidata (Where your furnidata is located)
        //        - External Texts (Where your external texts are located)
        //        - External Variables (Where your external variables are located)
        //        - SWF Base Directory (The directory your Habbo.swf is in)
        //        - Habbo.swf (The location of Habbo.swf)
        //        - Client Starting (The text you want to display when the client loads.)
        
    $client['connection_info_host'] = "127.0.0.1";
        
    $client['connection_info_port'] = "30000";
        
    $client['productdata_load_url'] = "http://mydomain.com/gamedata/productdata.txt";
        
    $client['furnidata_load_url'] = "http://mydomain.com/gamedata/furnidata.txt";
        
    $client['external_texts_txt'] = "http://mydomain.com/gamedata/external_texts.txt";
        
    $client['external_variables_txt'] = "http://mydomain.com/gamedata/external_variables.txt";
        
    $client['swf_base_dir'] = "http://mydomain.com/gordon/";
        
    $client['habbo_swf'] = "http://mydomain.com/gordon/Habbo.swf";
        
    $client['client_starting'] = "Please wait. Uber is starting."
    Your missing this:
    PHP Code:
    $client['client_starting'] = "Please wait. Uber is starting."

    Thanks, you're a great helper! +1

  14. #14
    Lurking around Clawed is offline
    MemberRank
    Jun 2012 Join Date
    RaGEZONELocation
    785Posts

    Re: fStormEMU error

    Quote Originally Posted by Kudzo View Post
    Thanks, you're a great helper! +1
    Your hard bloody work haha, anyway your welcome :)

  15. #15
    Habbo Section Kudzo is offline
    MemberRank
    Sep 2012 Join Date
    127.0.0.1Location
    358Posts

    Re: fStormEMU error

    Quote Originally Posted by Clawed View Post
    Your hard bloody work haha, anyway your welcome :)
    1 more question rofl, you wouldn't know how to get the furni working in the catalog for an fStorm emulator? I tried getting other c_images and hof_furni from other swfs but it's not working.



Page 1 of 2 12 LastLast

Advertisement