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 /
avatar image
0
Question by Vanguardxe · May 23, 2019 at 08:42 AM · optimizationmobile devicesscore system

How to continue scoring after game/app has been closed,Making score count after app is closed

So, I've been trying to make an idle game for mobile, and currently I'm faced with the probably simple problem of calculating your score after the game's been closed. Now, I'm not very competent with code, I'm using c#. All the code I have written is either very simple or taken off of threads and other stuff I've seen online. So far, I have this. I know it's wrong but so far it's what I've got

 using System.Collections;
 using System.Collections.Generic;
 using UnityEngine;
 using UnityEngine.UI;
 using System;
 
 public class GaneManager : MonoBehaviour
 {
     public Text scoreText;
     DateTime currentDate;
     DateTime oldDate;
     private const string money = "Money";
     public int Money
     {
         get { return PlayerPrefs.GetInt(money); }
         set { PlayerPrefs.SetInt(money, value); }
     }
 
 
 
     public float scoreTime;
     public float scoreTimeInit = 5.0f;
     // Start is called before the first frame update
     void Start()
     {    
         currentDate = System.DateTime.Now;
         long temp = Convert.ToInt64(PlayerPrefs.GetString("sysString"));
         DateTime oldDate = DateTime.FromBinary(temp);
         print("oldDate:" + oldDate);
         TimeSpan difference = currentDate.Subtract(oldDate);
         print("difference:" + difference);
         Mathf.RoundToInt(difference);
         Money = Money += difference.TotalSeconds;
     }
 
     // Update is called once per frame
     void Update()
     {
         scoreText.text = "Score: " + Money;
         if (scoreTime <= 5)
         {
             scoreTime -= Time.deltaTime;
         }
 
         if (scoreTime < 0)
         {
             scoreTime = scoreTimeInit;
             Money += 1;
         }
    
     }
 
     private void OnApplicationQuit()
     {
         PlayerPrefs.SetString("sysString", System.DateTime.Now.ToBinary().ToString());
         print("Saving this date to prefs:" + System.DateTime.Now);
 
     }
 
 }
 

I'm open to suggestions on how to make things better and more efficient since I am a complete newbie when it comes to coding. Currently I'm trying to find out how to convert a TimeSpan Value into an int so I can at least try to add the diference to the score, but that's probably not very smart either. I don't even know if my loop for scoring is even the one I should be using for a game like this.

Thanks in advance for any and all help anyone can provide Papa bless ,

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

0 Replies

· Add your reply
  • Sort: 

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

115 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

Related Questions

Mobile development - the resolution of textures and size of scenes 0 Answers

Load resources on demand vs load at application launch 0 Answers

Runs smooth in lower device but runs slow on newer device 0 Answers

Mobile Game AI Optimization Question 1 Answer

Change input values based on Time 0 Answers


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