[Plugin] Cloud Games

0 favourites
  • 2 posts
From the Asset Store
Basic Plugins for Firebase Authentication, Realtime-Database, Firestore, Cloud Storage
  • Hello, does anyone have this plugin?

    Cloud games people did not send me the plugin, just like using HTML5.

    Game client

    To load the game client, include the following code to the <head> segment of the page:

    <script type="text/javascript" src="//cloudgames.com/js/game.js"></script>
    

    Please note that splash screens are not allowed in the game.

    Configuration of the client

    Each game will have an unique identifier, in this example we will use 99 as the identifier. It’s important to configure the correct identifier, otherwise we won’t be able to measure the generated revenue and impressions. To configure the client, add the following to the <body> segment of the page:

    <script type="text/javascript">
     CloudAPI.init({
     'id': 99,
     'splash': false
     });
    </script>
    

    Displaying advertisements

    By default, we will display the first advertisement on starting the game. We also display advertisements when the player is ‘game over’. The game should call the following function on each ‘game over’:

    CloudAPI.gameOver();
    

    And the following function when the actual game play starts:

    CloudAPI.play();
    

    For some games, you will need to wrap this function inside another function to make it available in the correct scope. You can add this function to the JavaScript block added in the <body> segment.

    function gameOver() {
     CloudAPI.gameOver();
    }
    

    If anyone knows how to use tell me.

  • Try Construct 3

    Develop games in your browser. Powerful, performant & highly capable.

    Try Now Construct 3 users don't see these ads
  • Hi Derikvlog,

    I'm also searching for the same thing. Did you have any luck with it?

Jump to:
Active Users
There are 1 visitors browsing this topic (0 users and 1 guests)