Page 2 of 2

Re: Cannot even get it started. What is happening?

Posted: 03 October 2023, 14:02
by arvindarya
Have done it many times. Once it started then again it stopped. I don't think it is a big issue just something I am not seeing the code is not that much just bare bones.

Re: Cannot even get it started. What is happening?

Posted: 03 October 2023, 14:09
by RicardoRix
Sometimes you have to reload things (certain files) from the game control panel.

The only thing the term 'BGG' comes up, is within the game infos:
https://github.com/elaskavaia/bga-heart ... os.inc.php

why is your gameoptions empty?
https://github.com/elaskavaia/bga-heart ... ns.inc.php

Code: Select all

$game_options = array(

    /* Example of game variant:
    
    
    // note: game variant ID should start at 100 (ie: 100, 101, 102, ...). The maximum is 199.
    100 => array(
                'name' => totranslate('my game option'),    
                'values' => array(

                            // A simple value for this option:
                            1 => array( 'name' => totranslate('option 1') )

                            // A simple value for this option.
                            // If this value is chosen, the value of "tmdisplay" is displayed in the game lobby
                            2 => array( 'name' => totranslate('option 2'), 'tmdisplay' => totranslate('option 2') ),

                            // Another value, with other options:
                            //  beta=true => this option is in beta version right now.
                            //  nobeginner=true  =>  this option is not recommended for beginners
                            3 => array( 'name' => totranslate('option 3'),  'beta' => true, 'nobeginner' => true ),) )
                        )
            )

    */

);

Re: Cannot even get it started. What is happening?

Posted: 03 October 2023, 14:22
by arvindarya
Also I have put empty array there as well doesn't make a difference.