Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 12 Next capture
2021 2022 2023
1 capture
12 Jun 22 - 12 Jun 22
sparklines
Close Help
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
  • Asset Store
  • Get Unity

UNITY ACCOUNT

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account
  • Blog
  • Forums
  • Answers
  • Evangelists
  • User Groups
  • Beta Program
  • Advisory Panel

Navigation

  • Home
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
    • Blog
    • Forums
    • Answers
    • Evangelists
    • User Groups
    • Beta Program
    • Advisory Panel

Unity account

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account

Language

  • Chinese
  • Spanish
  • Japanese
  • Korean
  • Portuguese
  • Ask a question
  • Spaces
    • Default
    • Help Room
    • META
    • Moderators
    • Topics
    • Questions
    • Users
    • Badges
  • Home /
  • Help Room /
avatar image
0
Question by lpcar04 · Mar 17, 2016 at 02:08 AM · c#erroradsdelay

Show ad after certain line of code is called 5 times

Hello I have set up my game to show a unity ad in C# after this line of code is called " if ((StartPage.start != 0) && !PlaneMovement.running) " and I a wondering how to make that happen every 5th time the code is called (aka every time the endGame screen comes up. Note endGame is not a new scene).\ I am VERY new to C# so very detailed instructions are good. Thanks!

 using UnityEngine;
 using System.Collections;
 using UnityEngine.Advertisements;
 
 //GameOver page when the plane is destroyed
 public class GameOverPage : MonoBehaviour {
 
     public GUISkin skin; //skin for button styles
     public static int start; //static integer indicates to show or hide
     bool showAd = true; //Will show ad the first time
     public static bool running; //static variable indicates if the plane is destroyed or not
 
 
     void OnGUI(){
         GUI.skin = skin;
 
         //if start is not equal to 0 and running is false then show GameOver page buttons
         if ((StartPage.start != 0) && !PlaneMovement.running) {
             if(showAd){ //Check if we should show add           
                 if (Advertisement.IsReady ()) {
                     Advertisement.Show ();
                     showAd = false; //Set to false So that we dont show ad again
                 }
             }
 
 
             if (GUI.Button (new Rect (Screen.width / 2.378f, Screen.height / 1.34f, Screen.width / 6f, Screen.height / 10.10f), "", skin.GetStyle ("Restart"))) {  
                 Application.LoadLevel (1);  
                 PlaneMovement.running = true;
             }
             if (GUI.Button (new Rect (Screen.width / 1.50f, Screen.height / 1.34f, Screen.width / 6.0f, Screen.height / 10.1f), "", skin.GetStyle ("Home"))) {
                 Application.LoadLevel (0);  
                 PlaneMovement.running = false;
                 StartPage.start = 0;
             }
             if (GUI.Button (new Rect (Screen.width / 5.7f, Screen.height / 1.34f, Screen.width / 6f, Screen.height / 10.10f), "", skin.GetStyle ("Website"))) {
                 Application.OpenURL ("http://www.skyboxertech.weebly.com");
             }
 
 
         }
     }
 }
Comment
Add comment
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

1 Reply

· Add your reply
  • Sort: 
avatar image
1
Best Answer

Answer by matmel · Mar 19, 2016 at 09:12 PM

Hello! If you want to show an ad every 5th time the endgame screen comes up i would have used PlayerPrefs to count how many times you have died. The PlayerPrefs data will be saved even if you relaunch the game, and can in that way be used as a some sort of save file. I would have done something like this:

     void Example()
     {
         if (PlayerPrefs.HasKey("AdDeathCount"))
         {
             int count = PlayerPrefs.GetInt("AdDeathCount");
             count += 1;
             if (count == 5)
             {
                 PlayerPrefs.SetInt("AdDeathCount", 0);
                 //Display the ad here...
             }
         }
         else
         {
             PlayerPrefs.SetInt("AdDeathCount", 1);
         }
 
     }



Call the example method where you want to call your ads.

Comment
Add comment · Share
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

Your answer

Hint: You can notify a user about this post by typing @username

Up to 2 attachments (including images) can be used with a maximum of 524.3 kB each and 1.0 MB total.

Follow this Question

Answers Answers and Comments

125 People are following this question.

avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image

Related Questions

problems with mopub 0 Answers

Setting EventTrigger in Unity with JavaScript 0 Answers

GameObject has undefined tag! 0 Answers

I get three errors, no idea why.. 1 Answer

Error CS1519 help 1 Answer


Enterprise
Social Q&A

Social
Subscribe on YouTube social-youtube Follow on LinkedIn social-linkedin Follow on Twitter social-twitter Follow on Facebook social-facebook Follow on Instagram social-instagram

Footer

  • Purchase
    • Products
    • Subscription
    • Asset Store
    • Unity Gear
    • Resellers
  • Education
    • Students
    • Educators
    • Certification
    • Learn
    • Center of Excellence
  • Download
    • Unity
    • Beta Program
  • Unity Labs
    • Labs
    • Publications
  • Resources
    • Learn platform
    • Community
    • Documentation
    • Unity QA
    • FAQ
    • Services Status
    • Connect
  • About Unity
    • About Us
    • Blog
    • Events
    • Careers
    • Contact
    • Press
    • Partners
    • Affiliates
    • Security
Copyright © 2020 Unity Technologies
  • Legal
  • Privacy Policy
  • Cookies
  • Do Not Sell My Personal Information
  • Cookies Settings
"Unity", Unity logos, and other Unity trademarks are trademarks or registered trademarks of Unity Technologies or its affiliates in the U.S. and elsewhere (more info here). Other names or brands are trademarks of their respective owners.
  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges