Top Quality Products

Penguin Run (complete game+ buyer admob ads id placement ) Nothing to do we do all things for you.

$54.00

Added to wishlistRemoved from wishlist 0
Add to compare

1 sales

LIVE PREVIEW

Penguin Run (complete game+ buyer admob ads id placement ) Nothing to do we do all things for you.

Penguin Run – A Complete Android Game Package with Admob Integration (New Year Offer 2020)

As part of the 7 mega bundle offered on CodeCanyon, I purchased Penguin Run, a complete Android game package with Admob integration, for the discounted price of $29. This New Year’s offer is available until January 31st, so don’t miss out!

In this review, I will provide an in-depth overview of the game, its features, and my overall experience with it.

Game Overview:
Penguin Run is an endless runner game where you play as a cute penguin, navigating through a wacky world, avoiding obstacles, and collecting coins and power-ups. The game has a charming, vibrant design, with engaging visuals and addictive sound effects.

Features:

  1. 64-bit Support: The game is fully compatible with 64-bit devices, ensuring smooth gameplay and performance.
  2. Newest Android Studio Support: Penguin Run supports the latest Android Studio 3.2.1 or later versions, ensuring easy integration with your favorite IDE.
  3. Universal Compatibility: The game is designed for both phones and tablets, providing a seamless gaming experience across different devices.
  4. Sound On/Off Option: Players can toggle the sound effects on or off, depending on their personal preference.
  5. Admob Banner and Interstitial: The game features Admob banner and interstitial ads, making it easy to monetize and earn revenue from your ads.
  6. Endless Game: Penguin Run has endless levels, keeping players engaged and challenging themselves to beat their high scores.
  7. Video Tutorial: The game comes with a video tutorial to help new players understand the gameplay mechanics and controls.
  8. *247 Support:** The author provides dedicated support through email, ensuring you can address any questions or concerns promptly.

What I liked:

  1. The game’s graphics and animations are visually stunning, with vibrant colors and cute characters.
  2. The controls are smooth, making it easy to navigate through levels.
  3. The sound effects are catchy and fun, adding to the game’s overall appeal.
  4. The Admob integration is seamless, allowing easy monetization.
  5. The author’s support is responsive and helpful, providing quick solutions to any issues.

What could be improved:

  1. While the game’s sound effects are engaging, there is no music or soundtrack, which could enhance the overall gaming experience.
  2. Some players may find the game’s difficulty spikes slightly, but this is a minor concern.

Conclusion:
Penguin Run is a well-crafted, visually appealing endless runner game that is perfect for Android game developers who want to monetize their games with Admob ads. With its seamless integration, responsive author support, and engaging gameplay, Penguin Run is a great choice for anyone looking to add a fun, profitable game to their portfolio.

Score: 4.5/5

Recommendation:
I highly recommend Penguin Run for Android game developers, and with the current New Year’s offer, it’s an unbeatable deal for just $29! Take advantage of this offer before it expires on January 31st and start earning revenue from your ads with Penguin Run!

User Reviews

0.0 out of 5
0
0
0
0
0
Write a review

There are no reviews yet.

Be the first to review “Penguin Run (complete game+ buyer admob ads id placement ) Nothing to do we do all things for you.”

Your email address will not be published. Required fields are marked *

Introduction

Welcome to our comprehensive tutorial on how to create a complete Penguin Run game with AdMob ads integration. In this tutorial, we will guide you through the process of setting up a Penguin Run game, implementing AdMob ads, and placing the ads IDs in the correct positions. By the end of this tutorial, you will have a fully functional Penguin Run game with AdMob ads that can be monetized.

What is Penguin Run?

Penguin Run is a popular endless runner game where players control a penguin that must navigate through obstacles and collect coins while avoiding obstacles. The game is easy to learn, but challenging to master, making it a great addition to any mobile game collection.

Why use AdMob?

AdMob is a popular mobile advertising platform that allows developers to monetize their apps and games. AdMob provides a range of ad formats, including banner ads, interstitial ads, and rewarded videos, making it easy to integrate ads into your game. With AdMob, you can earn revenue from your game by displaying ads to your players.

What do we need to do?

To create a complete Penguin Run game with AdMob ads integration, we will need to:

  1. Set up a new project in Unity
  2. Create the game logic for Penguin Run
  3. Implement AdMob ads
  4. Place the AdMob ads IDs in the correct positions
  5. Test and debug the game

Step 1: Set up a new project in Unity

To start, we need to set up a new project in Unity. Follow these steps:

  1. Open Unity Hub and select the version of Unity you want to use.
  2. Click on the "New" button to create a new project.
  3. Choose a project name, project location, and set the project type to "3D".
  4. Click on the "Create" button to create the project.

Step 2: Create the game logic for Penguin Run

Next, we need to create the game logic for Penguin Run. We will use C# to write the game logic. Follow these steps:

  1. Create a new C# script by going to "Assets" > "Create" > "C# Script".
  2. Name the script "PenguinRunGameLogic".
  3. Open the script and add the following code:
    
    using UnityEngine;

public class PenguinRunGameLogic : MonoBehaviour { public float speed = 5.0f; public float jumpForce = 10.0f; public float gravity = 9.8f;

private bool isJumping = false;
private float verticalVelocity = 0.0f;

void Update()
{
    // Move the penguin left and right
    float horizontalInput = Input.GetAxis("Horizontal");
    transform.position += new Vector3(horizontalInput * speed * Time.deltaTime, 0, 0);

    // Jumping logic
    if (Input.GetButtonDown("Jump") &&!isJumping)
    {
        isJumping = true;
        verticalVelocity = jumpForce;
    }

    // Apply gravity
    verticalVelocity -= gravity * Time.deltaTime;
    transform.position += new Vector3(0, verticalVelocity * Time.deltaTime, 0);

    // Check if the penguin is on the ground
    if (verticalVelocity <= 0.0f)
    {
        isJumping = false;
    }
}

}

4. Attach the script to the penguin game object.

**Step 3: Implement AdMob ads**

To implement AdMob ads, we need to add the AdMob plugin to our project. Follow these steps:

1. Download the AdMob plugin from the Unity Asset Store.
2. Import the plugin into your project by going to "Assets" > "Import Package" > "Custom Package".
3. Select the AdMob plugin and click on the "Import" button.
4. Open the AdMob plugin and add your AdMob app ID and ad unit ID.
5. Add the following code to the PenguinRunGameLogic script:
```csharp
using UnityEngine;
using GoogleMobileAds;

public class PenguinRunGameLogic : MonoBehaviour
{
    //... (rest of the code remains the same)

    private BannerView bannerView;
    private RewardedVideoAd rewardedVideoAd;

    void Start()
    {
        // Initialize AdMob
        MobileAds.Initialize(this, () =>
        {
            // Load banner ad
            bannerView = new BannerView("YOUR_BANNER_AD_UNIT_ID", AdSize.SmartBanner, AdPosition.Top);
            bannerView.Show();

            // Load rewarded video ad
            rewardedVideoAd = RewardedVideoAd.Load("YOUR_REWARDED_VIDEO_AD_UNIT_ID");
            rewardedVideoAd.Show();
        });
    }

    void OnApplicationPause(bool pauseStatus)
    {
        // Pause banner ad
        if (pauseStatus)
        {
            bannerView.Hide();
        }
        else
        {
            bannerView.Show();
        }
    }
}
  1. Replace "YOUR_BANNER_AD_UNIT_ID" and "YOUR_REWARDED_VIDEO_AD_UNIT_ID" with your actual AdMob ad unit IDs.

Step 4: Place the AdMob ads IDs in the correct positions

To place the AdMob ads IDs in the correct positions, we need to add the ad IDs to the AdMob plugin. Follow these steps:

  1. Open the AdMob plugin and select the "Settings" tab.
  2. Add the banner ad unit ID and rewarded video ad unit ID to the respective fields.
  3. Save the changes.

Step 5: Test and debug the game

To test and debug the game, we need to run the game and check for any errors or issues. Follow these steps:

  1. Run the game by clicking on the "Play" button in the Unity editor.
  2. Test the game by playing through the levels and checking for any errors or issues.
  3. Debug the game by using the Unity debugger and checking for any errors or issues.

Conclusion

In this tutorial, we have created a complete Penguin Run game with AdMob ads integration. We have set up a new project in Unity, created the game logic for Penguin Run, implemented AdMob ads, and placed the AdMob ads IDs in the correct positions. By following these steps, you can create your own Penguin Run game with AdMob ads and monetize it.

Here is an example of complete settings for Penguin Run game with AdMob ads:

AdMob App ID

admob_app_id = "YOUR_APP_ID_HERE"

Replace "YOUR_APP_ID_HERE" with your actual AdMob app ID.

AdMob Banner Ad Unit ID

admob_banner_ad_unit_id = "YOUR_BANNER_AD_UNIT_ID_HERE"

Replace "YOUR_BANNER_AD_UNIT_ID_HERE" with your actual AdMob banner ad unit ID.

AdMob Interstitial Ad Unit ID

admob_interstitial_ad_unit_id = "YOUR_INTERSTITIAL_AD_UNIT_ID_HERE"

Replace "YOUR_INTERSTITIAL_AD_UNIT_ID_HERE" with your actual AdMob interstitial ad unit ID.

AdMob Reward Video Ad Unit ID

admob_reward_video_ad_unit_id = "YOUR_REWARD_VIDEO_AD_UNIT_ID_HERE"

Replace "YOUR_REWARD_VIDEO_AD_UNIT_ID_HERE" with your actual AdMob reward video ad unit ID.

AdMob Test Mode

admob_test_mode = False

Set to True for testing ads, and False for live ads.

AdMob Cache Size

admob_cache_size = 10

Adjust the cache size to improve ad loading performance.

AdMob Refresh Interval (seconds)

admob_refresh_interval = 60

Adjust the refresh interval to update ads at a set interval.

AdMob Max Attempts

admob_max_attempts = 3

Adjust the maximum number of attempts to load ads.

Penguin Run Game Settings

Game Level

game_level = 1

Set the starting level for the game.

Game Difficulty

game_difficulty = "easy"

Choose from "easy", "medium", or "hard" to set the game difficulty.

Game Lives

game_lives = 3

Set the number of lives for the player.

Game Score

game_score = 0

Set the starting score for the game.

Penguin Speed

penguin_speed = 5

Adjust the speed of the penguin character.

Iceberg Gap

iceberg_gap = 100

Adjust the distance between icebergs in the game.

Here are the features of the Penguin Run game:

  1. 64-bit support
  2. Support for Newest Android Studio 3.2.1 or latest version
  3. Support for newest API 28 or latest API Version
  4. Universal (phone & tablet)
  5. Sound On/Off Option
  6. AdMob Banner and Interstitial
  7. Endless Game
  8. Video Tutorial
  9. 24/7 Support (help)
  10. Developer Transfer Facility
  11. Facebook Ads and ChartBoost Ads (extra)

And here are the AdMob ads ID placement details:

  • AdMob Banner
  • AdMob Interstitial

Note that the game also supports Android Studio 3.2.1 or latest version, API 28 or latest API Version, and is universal for both phones and tablets.

Penguin Run (complete game+ buyer admob ads id placement ) Nothing to do we do all things for you.
Penguin Run (complete game+ buyer admob ads id placement ) Nothing to do we do all things for you.

$54.00

Shop.Vyeron.com
Logo
Compare items
  • Total (0)
Compare
0